Date: Mon, 30 Mar 2020 09:04:54 -0700
Subject: [PATCH 003/604] DDB Enhanced adding ChainConverterProvider
---
.../dynamodb/AttributeConverterProvider.java | 4 +-
.../DefaultAttributeConverterProvider.java | 37 +++--
.../converter/ChainConverterProvider.java | 70 +++++++++
.../converter/ConverterProviderResolver.java | 63 ++++++++
.../dynamodb/mapper/BeanTableSchema.java | 39 ++---
.../dynamodb/mapper/StaticTableSchema.java | 62 ++++++--
.../mapper/annotations/DynamoDbBean.java | 26 +++-
.../converter/ChainConverterProviderTest.java | 75 ++++++++++
.../ConverterProviderResolverTest.java | 55 +++++++
.../dynamodb/mapper/BeanTableSchemaTest.java | 99 +++++++++----
.../mapper/StaticTableSchemaTest.java | 84 +++++++++--
.../testbeans/AttributeConverterBean.java | 31 +++-
.../EmptyConverterProvidersInvalidBean.java | 90 ++++++++++++
.../EmptyConverterProvidersValidBean.java | 119 +++++++++++++++
.../MultipleConverterProvidersBean.java | 139 ++++++++++++++++++
... NoConstructorConverterProvidersBean.java} | 4 +-
...java => SingleConverterProvidersBean.java} | 6 +-
17 files changed, 908 insertions(+), 95 deletions(-)
rename services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/{internal => }/DefaultAttributeConverterProvider.java (92%)
create mode 100644 services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/ChainConverterProvider.java
create mode 100644 services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/ConverterProviderResolver.java
create mode 100644 services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/ChainConverterProviderTest.java
create mode 100644 services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/ConverterProviderResolverTest.java
create mode 100644 services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/EmptyConverterProvidersInvalidBean.java
create mode 100644 services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/EmptyConverterProvidersValidBean.java
create mode 100644 services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/MultipleConverterProvidersBean.java
rename services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/{ConverterNoConstructorBean.java => NoConstructorConverterProvidersBean.java} (87%)
rename services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/{ConverterBean.java => SingleConverterProvidersBean.java} (95%)
diff --git a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/AttributeConverterProvider.java b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/AttributeConverterProvider.java
index 813ebf1a54ea..a20608535895 100644
--- a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/AttributeConverterProvider.java
+++ b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/AttributeConverterProvider.java
@@ -16,7 +16,7 @@
package software.amazon.awssdk.enhanced.dynamodb;
import software.amazon.awssdk.annotations.SdkPublicApi;
-import software.amazon.awssdk.enhanced.dynamodb.internal.DefaultAttributeConverterProvider;
+import software.amazon.awssdk.enhanced.dynamodb.internal.converter.ConverterProviderResolver;
import software.amazon.awssdk.services.dynamodb.model.AttributeValue;
/**
@@ -40,6 +40,6 @@ public interface AttributeConverterProvider {
* standard Java type converters included.
*/
static AttributeConverterProvider defaultProvider() {
- return DefaultAttributeConverterProvider.create();
+ return ConverterProviderResolver.defaultConverterProvider();
}
}
diff --git a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/DefaultAttributeConverterProvider.java b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/DefaultAttributeConverterProvider.java
similarity index 92%
rename from services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/DefaultAttributeConverterProvider.java
rename to services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/DefaultAttributeConverterProvider.java
index 7b358b1e4143..1935d159cde9 100644
--- a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/DefaultAttributeConverterProvider.java
+++ b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/DefaultAttributeConverterProvider.java
@@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/
-package software.amazon.awssdk.enhanced.dynamodb.internal;
+package software.amazon.awssdk.enhanced.dynamodb;
import java.util.ArrayList;
import java.util.List;
@@ -22,11 +22,8 @@
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import software.amazon.awssdk.annotations.Immutable;
-import software.amazon.awssdk.annotations.SdkInternalApi;
+import software.amazon.awssdk.annotations.SdkPublicApi;
import software.amazon.awssdk.annotations.ThreadSafe;
-import software.amazon.awssdk.enhanced.dynamodb.AttributeConverter;
-import software.amazon.awssdk.enhanced.dynamodb.AttributeConverterProvider;
-import software.amazon.awssdk.enhanced.dynamodb.EnhancedType;
import software.amazon.awssdk.enhanced.dynamodb.internal.converter.PrimitiveConverter;
import software.amazon.awssdk.enhanced.dynamodb.internal.converter.StringConverter;
import software.amazon.awssdk.enhanced.dynamodb.internal.converter.StringConverterProvider;
@@ -76,11 +73,15 @@
import software.amazon.awssdk.utils.Validate;
/**
+ * This class is the default attribute converter provider in the DDB Enhanced library. When instantiated
+ * using the constructor {@link #DefaultAttributeConverterProvider()} or the {@link #create()} method, it's loaded
+ * with the currently supported attribute converters in the library.
*
- * Given an input, this will identify a converter that can convert the specific Java type and invoke it. If a converter cannot
- * be found, it will invoke a "parent" converter, which would be expected to be able to convert the value (or throw an exception).
+ * Given an input, the method {@link #converterFor(EnhancedType)} will identify a converter that can convert the
+ * specific Java type and invoke it. If a converter cannot be found, it will invoke a "parent" converter,
+ * which would be expected to be able to convert the value (or throw an exception).
*/
-@SdkInternalApi
+@SdkPublicApi
@ThreadSafe
@Immutable
public final class DefaultAttributeConverterProvider implements AttributeConverterProvider {
@@ -102,6 +103,21 @@ private DefaultAttributeConverterProvider(Builder builder) {
}
}
+ /**
+ * Returns an attribute converter provider with all default converters set.
+ */
+ public DefaultAttributeConverterProvider() {
+ this(getDefaultBuilder());
+ }
+
+ /**
+ * Returns an attribute converter provider with all default converters set.
+ */
+ public static DefaultAttributeConverterProvider create() {
+ return getDefaultBuilder().build();
+ }
+
+
/**
* Equivalent to {@code builder(EnhancedType.of(Object.class))}.
*/
@@ -179,7 +195,7 @@ private AttributeConverter createSetConverter(EnhancedType type) {
return (AttributeConverter) SetAttributeConverter.setConverter(innerConverter);
}
- public static DefaultAttributeConverterProvider create() {
+ private static Builder getDefaultBuilder() {
return DefaultAttributeConverterProvider.builder()
.addConverter(AtomicBooleanAttributeConverter.create())
.addConverter(AtomicIntegerAttributeConverter.create())
@@ -217,8 +233,7 @@ public static DefaultAttributeConverterProvider create() {
.addConverter(UuidAttributeConverter.create())
.addConverter(ZonedDateTimeAsStringAttributeConverter.create())
.addConverter(ZoneIdAttributeConverter.create())
- .addConverter(ZoneOffsetAttributeConverter.create())
- .build();
+ .addConverter(ZoneOffsetAttributeConverter.create());
}
/**
diff --git a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/ChainConverterProvider.java b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/ChainConverterProvider.java
new file mode 100644
index 000000000000..a455051adb5f
--- /dev/null
+++ b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/ChainConverterProvider.java
@@ -0,0 +1,70 @@
+/*
+ * 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.internal.converter;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Collections;
+import java.util.List;
+import software.amazon.awssdk.annotations.SdkInternalApi;
+import software.amazon.awssdk.enhanced.dynamodb.AttributeConverter;
+import software.amazon.awssdk.enhanced.dynamodb.AttributeConverterProvider;
+import software.amazon.awssdk.enhanced.dynamodb.EnhancedType;
+
+/**
+ * A {@link AttributeConverterProvider} that allows multiple providers to be chained in a specified order
+ * to act as a single composite provider. When searching for an attribute converter for a type,
+ * the providers will be called in forward/ascending order, attempting to find a converter from the
+ * first provider, then the second, and so on, until a match is found or the operation fails.
+ */
+@SdkInternalApi
+public final class ChainConverterProvider implements AttributeConverterProvider {
+ private final List providerChain;
+
+ private ChainConverterProvider(List providers) {
+ this.providerChain = new ArrayList<>(providers);
+ }
+
+ /**
+ * Construct a new instance of {@link ChainConverterProvider}.
+ * @param providers A list of {@link AttributeConverterProvider} to chain together.
+ * @return A constructed {@link ChainConverterProvider} object.
+ */
+ public static ChainConverterProvider create(AttributeConverterProvider... providers) {
+ return new ChainConverterProvider(Arrays.asList(providers));
+ }
+
+ /**
+ * Construct a new instance of {@link ChainConverterProvider}.
+ * @param providers A list of {@link AttributeConverterProvider} to chain together.
+ * @return A constructed {@link ChainConverterProvider} object.
+ */
+ public static ChainConverterProvider create(List providers) {
+ return new ChainConverterProvider(providers);
+ }
+
+ public List chainedProviders() {
+ return Collections.unmodifiableList(this.providerChain);
+ }
+
+ @Override
+ public AttributeConverter converterFor(EnhancedType enhancedType) {
+ return this.providerChain.stream()
+ .filter(provider -> provider.converterFor(enhancedType) != null)
+ .map(p -> p.converterFor(enhancedType))
+ .findFirst().orElse(null);
+ }
+}
diff --git a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/ConverterProviderResolver.java b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/ConverterProviderResolver.java
new file mode 100644
index 000000000000..7f3cdf99ffe5
--- /dev/null
+++ b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/ConverterProviderResolver.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.enhanced.dynamodb.internal.converter;
+
+import java.util.List;
+import software.amazon.awssdk.annotations.SdkInternalApi;
+import software.amazon.awssdk.enhanced.dynamodb.AttributeConverterProvider;
+import software.amazon.awssdk.enhanced.dynamodb.DefaultAttributeConverterProvider;
+
+/**
+ * Static module to assist with the initialization of attribute converter providers for a StaticTableSchema.
+ */
+@SdkInternalApi
+public final class ConverterProviderResolver {
+
+ private static final AttributeConverterProvider DEFAULT_ATTRIBUTE_CONVERTER =
+ DefaultAttributeConverterProvider.create();
+
+ private ConverterProviderResolver() {
+ }
+
+ /**
+ * Static provider for the default attribute converters that are bundled with the DynamoDB Enhanced Client.
+ * This provider will be used by default unless overridden in the static table schema builder or using bean
+ * annotations.
+ */
+ public static AttributeConverterProvider defaultConverterProvider() {
+ return DEFAULT_ATTRIBUTE_CONVERTER;
+ }
+
+ /**
+ * Resolves a list of attribute converter providers into a single provider. If the list is a singleton,
+ * it will just return that provider, otherwise it will combine them into a
+ * {@link ChainConverterProvider} using the order provided in the list.
+ *
+ * @param providers A list of providers to be combined in strict order
+ * @return A single provider that combines all the supplied providers or null if no providers were supplied
+ */
+ public static AttributeConverterProvider resolveProviders(List providers) {
+ if (providers == null || providers.isEmpty()) {
+ return null;
+ }
+
+ if (providers.size() == 1) {
+ return providers.get(0);
+ }
+
+ return ChainConverterProvider.create(providers);
+ }
+}
diff --git a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/mapper/BeanTableSchema.java b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/mapper/BeanTableSchema.java
index 02f1ac85237e..4e1ca9c7d10e 100644
--- a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/mapper/BeanTableSchema.java
+++ b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/mapper/BeanTableSchema.java
@@ -192,15 +192,14 @@ private static StaticTableSchema createStaticTableSchema(Class beanCla
StaticTableSchema.Builder builder = StaticTableSchema.builder(beanClass)
.newItemSupplier(newObjectSupplier);
- Optional attributeConverterProvider = converterProviderAnnotation(dynamoDbBean);
- attributeConverterProvider.ifPresent(builder::attributeConverterProvider);
+ builder.attributeConverterProviders(createConverterProvidersFromAnnotation(dynamoDbBean));
List> attributes = new ArrayList<>();
Arrays.stream(beanInfo.getPropertyDescriptors())
.filter(BeanTableSchema::isMappableProperty)
.forEach(propertyDescriptor -> {
- DynamoDbFlatten dynamoDbFlatten = propertyAnnotation(propertyDescriptor, DynamoDbFlatten.class);
+ DynamoDbFlatten dynamoDbFlatten = getPropertyAnnotation(propertyDescriptor, DynamoDbFlatten.class);
if (dynamoDbFlatten != null) {
builder.flatten(createStaticTableSchema(dynamoDbFlatten.dynamoDbBeanClass()),
@@ -210,7 +209,8 @@ private static StaticTableSchema createStaticTableSchema(Class beanCla
StaticAttribute.Builder attributeBuilder =
staticAttributeBuilder(propertyDescriptor, beanClass);
- Optional attributeConverter = attributeConverterAnnotation(propertyDescriptor);
+ Optional attributeConverter =
+ createAttributeConverterFromAnnotation(propertyDescriptor);
attributeConverter.ifPresent(attributeBuilder::attributeConverter);
addTagsToAttribute(attributeBuilder, propertyDescriptor);
@@ -223,12 +223,12 @@ private static StaticTableSchema createStaticTableSchema(Class beanCla
return builder.build();
}
- private static Optional converterProviderAnnotation(DynamoDbBean dynamoDbBean) {
- Class>[] converterClasses = dynamoDbBean.converterProviders();
- //TODO: temporary solution to pick one AttributeConverterProvider.
- return converterClasses.length > 0 ?
- Optional.of((AttributeConverterProvider) newObjectSupplierForClass(converterClasses[0]).get()) :
- Optional.empty();
+ private static List createConverterProvidersFromAnnotation(DynamoDbBean dynamoDbBean) {
+ Class extends AttributeConverterProvider>[] providerClasses = dynamoDbBean.converterProviders();
+
+ return Arrays.stream(providerClasses)
+ .map(c -> (AttributeConverterProvider) newObjectSupplierForClass(c).get())
+ .collect(Collectors.toList());
}
private static StaticAttribute.Builder staticAttributeBuilder(PropertyDescriptor propertyDescriptor,
@@ -283,16 +283,19 @@ private static EnhancedType> convertTypeToEnhancedType(Type type) {
return EnhancedType.of(type);
}
- private static Optional attributeConverterAnnotation(PropertyDescriptor propertyDescriptor) {
- DynamoDbConvertedBy attributeConverterBean = propertyAnnotation(propertyDescriptor, DynamoDbConvertedBy.class);
+ private static Optional createAttributeConverterFromAnnotation(
+ PropertyDescriptor propertyDescriptor) {
+ DynamoDbConvertedBy attributeConverterBean =
+ getPropertyAnnotation(propertyDescriptor, DynamoDbConvertedBy.class);
Optional> optionalClass = Optional.ofNullable(attributeConverterBean)
.map(DynamoDbConvertedBy::value);
return optionalClass.map(clazz -> (AttributeConverter) newObjectSupplierForClass(clazz).get());
}
/**
- * This method scans all the annotations on a property and looks for a meta-annotation of {@link BeanTableSchemaAttributeTag}.
- * If the meta-annotation is found, it attempts to create an annotation tag based on a standard named static method
+ * This method scans all the annotations on a property and looks for a meta-annotation of
+ * {@link BeanTableSchemaAttributeTag}. If the meta-annotation is found, it attempts to create
+ * an annotation tag based on a standard named static method
* of the class that tag has been annotated with passing in the original property annotation as an argument.
*/
private static void addTagsToAttribute(StaticAttribute.Builder, ?> attributeBuilder,
@@ -359,7 +362,7 @@ private static BiConsumer setterForProperty(PropertyDescriptor prop
}
private static String attributeNameForProperty(PropertyDescriptor propertyDescriptor) {
- DynamoDbAttribute dynamoDbAttribute = propertyAnnotation(propertyDescriptor, DynamoDbAttribute.class);
+ DynamoDbAttribute dynamoDbAttribute = getPropertyAnnotation(propertyDescriptor, DynamoDbAttribute.class);
if (dynamoDbAttribute != null) {
return dynamoDbAttribute.value();
}
@@ -370,11 +373,11 @@ private static String attributeNameForProperty(PropertyDescriptor propertyDescri
private static boolean isMappableProperty(PropertyDescriptor propertyDescriptor) {
return propertyDescriptor.getReadMethod() != null
&& propertyDescriptor.getWriteMethod() != null
- && propertyAnnotation(propertyDescriptor, DynamoDbIgnore.class) == null;
+ && getPropertyAnnotation(propertyDescriptor, DynamoDbIgnore.class) == null;
}
- private static R propertyAnnotation(PropertyDescriptor propertyDescriptor,
- Class annotationType) {
+ private static R getPropertyAnnotation(PropertyDescriptor propertyDescriptor,
+ Class annotationType) {
R getterAnnotation = propertyDescriptor.getReadMethod().getAnnotation(annotationType);
R setterAnnotation = propertyDescriptor.getWriteMethod().getAnnotation(annotationType);
diff --git a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/mapper/StaticTableSchema.java b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/mapper/StaticTableSchema.java
index 6a916ebbdcd7..497fa6441108 100644
--- a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/mapper/StaticTableSchema.java
+++ b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/mapper/StaticTableSchema.java
@@ -33,8 +33,10 @@
import software.amazon.awssdk.annotations.SdkPublicApi;
import software.amazon.awssdk.enhanced.dynamodb.AttributeConverter;
import software.amazon.awssdk.enhanced.dynamodb.AttributeConverterProvider;
+import software.amazon.awssdk.enhanced.dynamodb.DefaultAttributeConverterProvider;
import software.amazon.awssdk.enhanced.dynamodb.EnhancedType;
import software.amazon.awssdk.enhanced.dynamodb.TableSchema;
+import software.amazon.awssdk.enhanced.dynamodb.internal.converter.ConverterProviderResolver;
import software.amazon.awssdk.enhanced.dynamodb.internal.mapper.ResolvedStaticAttribute;
import software.amazon.awssdk.services.dynamodb.model.AttributeValue;
@@ -69,9 +71,6 @@
*/
@SdkPublicApi
public final class StaticTableSchema implements TableSchema {
- private static final AttributeConverterProvider DEFAULT_ATTRIBUTE_CONVERTER =
- AttributeConverterProvider.defaultProvider();
-
private final List> attributeMappers;
private final Supplier newItemSupplier;
private final Map> indexedMappers;
@@ -82,9 +81,8 @@ public final class StaticTableSchema implements TableSchema {
private StaticTableSchema(Builder builder) {
StaticTableMetadata.Builder tableMetadataBuilder = StaticTableMetadata.builder();
- this.attributeConverterProvider = builder.attributeConverterProvider != null ?
- builder.attributeConverterProvider :
- DEFAULT_ATTRIBUTE_CONVERTER;
+ this.attributeConverterProvider =
+ ConverterProviderResolver.resolveProviders(builder.attributeConverterProviders);
// Resolve declared attributes and find converters for them
Stream> attributesStream = builder.attributes == null ?
@@ -143,7 +141,8 @@ public static final class Builder {
private List> attributes;
private Supplier newItemSupplier;
private List tags;
- private AttributeConverterProvider attributeConverterProvider;
+ private List attributeConverterProviders =
+ Collections.singletonList(ConverterProviderResolver.defaultConverterProvider());
private Builder(Class itemClass) {
this.itemClass = itemClass;
@@ -282,18 +281,53 @@ public Builder addTag(StaticTableTag staticTableTag) {
}
/**
- * A higher-precedence {@link AttributeConverterProvider} than the default one provided by the table schema.
- * The {@link AttributeConverterProvider} must provide {@link AttributeConverter}s for all types used in the schema.
+ * Specifies the {@link AttributeConverterProvider}s to use with the table schema.
+ * The list of attribute converter providers must provide {@link AttributeConverter}s for all types used
+ * in the schema. The attribute converter providers will be loaded in the strict order they are supplied here.
+ *
+ * Calling this method will override the default attribute converter provider
+ * {@link DefaultAttributeConverterProvider}, which provides standard converters for most primitive
+ * and common Java types, so that provider must included in the supplied list if it is to be
+ * used. Providing an empty list here will cause no providers to get loaded.
+ *
+ * Adding one custom attribute converter provider and using the default as fallback:
+ * {@code
+ * builder.attributeConverterProviders(customAttributeConverter, AttributeConverterProvider.defaultProvider())
+ * }
+ *
+ * @param attributeConverterProviders a list of attribute converter providers to use with the table schema
+ */
+ public Builder attributeConverterProviders(AttributeConverterProvider... attributeConverterProviders) {
+ this.attributeConverterProviders = Arrays.asList(attributeConverterProviders);
+ return this;
+ }
+
+ /**
+ * Specifies the {@link AttributeConverterProvider}s to use with the table schema.
+ * The list of attribute converter providers must provide {@link AttributeConverter}s for all types used
+ * in the schema. The attribute converter providers will be loaded in the strict order they are supplied here.
*
- * The table schema has a default, internal, AttributeConverterProvider which provides standard converters
- * for most primitive and common Java types. Use custom AttributeConverterProvider when you have specific
- * needs for type conversion that the defaults do not cover.
+ * Calling this method will override the default attribute converter provider
+ * {@link DefaultAttributeConverterProvider}, which provides standard converters
+ * for most primitive and common Java types, so that provider must included in the supplied list if it is to be
+ * used. Providing an empty list here will cause no providers to get loaded.
+ *
+ * Adding one custom attribute converter provider and using the default as fallback:
+ * {@code
+ * List providers = new ArrayList<>(
+ * customAttributeConverter,
+ * AttributeConverterProvider.defaultProvider());
+ * builder.attributeConverterProviders(providers);
+ * }
+ *
+ * @param attributeConverterProviders a list of attribute converter providers to use with the table schema
*/
- public Builder attributeConverterProvider(AttributeConverterProvider attributeConverterProvider) {
- this.attributeConverterProvider = attributeConverterProvider;
+ public Builder attributeConverterProviders(List attributeConverterProviders) {
+ this.attributeConverterProviders = new ArrayList<>(attributeConverterProviders);
return this;
}
+
/**
* Builds a {@link StaticTableSchema} based on the values this builder has been configured with
*/
diff --git a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/mapper/annotations/DynamoDbBean.java b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/mapper/annotations/DynamoDbBean.java
index a122c095795b..5a5a28294938 100644
--- a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/mapper/annotations/DynamoDbBean.java
+++ b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/mapper/annotations/DynamoDbBean.java
@@ -22,6 +22,7 @@
import software.amazon.awssdk.annotations.SdkPublicApi;
import software.amazon.awssdk.enhanced.dynamodb.AttributeConverter;
import software.amazon.awssdk.enhanced.dynamodb.AttributeConverterProvider;
+import software.amazon.awssdk.enhanced.dynamodb.DefaultAttributeConverterProvider;
import software.amazon.awssdk.enhanced.dynamodb.mapper.BeanTableSchema;
/**
@@ -29,15 +30,30 @@
* a {@link BeanTableSchema} must have this annotation. If a class is used as a document within another DynamoDbBean,
* it will also require this annotation.
*
+ * Attribute Converter Providers
* Using {@link AttributeConverterProvider}s is optional and, if used, the supplied provider supersedes the default
- * converter provided by the table schema. The converter must provide {@link AttributeConverter}s for all types used
- * in the schema. The table schema default AttributeConverterProvider provides standard converters for most primitive
- * and common Java types. Use custom AttributeConverterProviders when you have specific needs for type conversion
- * that the defaults do not cover.
+ * converter provided by the table schema.
+ *
+ * Note:
+ *
+ * - The converter(s) must provide {@link AttributeConverter}s for all types used in the schema.
+ * - The table schema DefaultAttributeConverterProvider provides standard converters for most primitive
+ * and common Java types. Use custom AttributeConverterProviders when you have specific needs for type conversion
+ * that the defaults do not cover.
+ * - If you provide a list of attribute converter providers, you can add DefaultAttributeConverterProvider
+ * to the end of the list to fall back on the defaults.
+ * - Providing an empty list {} will cause no providers to get loaded.
+ *
+ *
+ * Example using attribute converter providers with one custom provider and the default provider:
+ * {@code
+ * (converterProviders = {CustomAttributeConverter.class, DefaultAttributeConverterProvider.class});
+ * }
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@SdkPublicApi
public @interface DynamoDbBean {
- Class extends AttributeConverterProvider>[] converterProviders() default {};
+ Class extends AttributeConverterProvider>[] converterProviders()
+ default { DefaultAttributeConverterProvider.class };
}
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/ChainConverterProviderTest.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/ChainConverterProviderTest.java
new file mode 100644
index 000000000000..069ae50a2d4b
--- /dev/null
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/ChainConverterProviderTest.java
@@ -0,0 +1,75 @@
+package software.amazon.awssdk.enhanced.dynamodb.internal.converter;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.mockito.ArgumentMatchers.any;
+import static org.mockito.Mockito.when;
+
+import java.util.List;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.Mock;
+import org.mockito.junit.MockitoJUnitRunner;
+import software.amazon.awssdk.enhanced.dynamodb.AttributeConverter;
+import software.amazon.awssdk.enhanced.dynamodb.AttributeConverterProvider;
+import software.amazon.awssdk.enhanced.dynamodb.EnhancedType;
+
+@RunWith(MockitoJUnitRunner.class)
+public class ChainConverterProviderTest {
+
+ @Mock
+ private AttributeConverterProvider mockConverterProvider1;
+
+ @Mock
+ private AttributeConverterProvider mockConverterProvider2;
+
+ @Mock
+ private AttributeConverter mockAttributeConverter1;
+
+ @Mock
+ private AttributeConverter mockAttributeConverter2;
+
+ @Test
+ public void checkSingleProviderChain() {
+ ChainConverterProvider chain = ChainConverterProvider.create(mockConverterProvider1);
+ List providerQueue = chain.chainedProviders();
+ assertThat(providerQueue.size()).isEqualTo(1);
+ assertThat(providerQueue.get(0)).isEqualTo(mockConverterProvider1);
+ }
+
+ @Test
+ public void checkMultipleProviderChain() {
+ ChainConverterProvider chain = ChainConverterProvider.create(mockConverterProvider1, mockConverterProvider2);
+ List providerQueue = chain.chainedProviders();
+ assertThat(providerQueue.size()).isEqualTo(2);
+ assertThat(providerQueue.get(0)).isEqualTo(mockConverterProvider1);
+ assertThat(providerQueue.get(1)).isEqualTo(mockConverterProvider2);
+ }
+
+ @Test
+ public void resolveSingleProviderChain() {
+ when(mockConverterProvider1.converterFor(any())).thenReturn(mockAttributeConverter1);
+ ChainConverterProvider chain = ChainConverterProvider.create(mockConverterProvider1);
+ assertThat(chain.converterFor(EnhancedType.of(String.class))).isSameAs(mockAttributeConverter1);
+ }
+
+ @Test
+ public void resolveMultipleProviderChain_noMatch() {
+ ChainConverterProvider chain = ChainConverterProvider.create(mockConverterProvider1, mockConverterProvider2);
+ assertThat(chain.converterFor(EnhancedType.of(String.class))).isNull();
+ }
+
+ @Test
+ public void resolveMultipleProviderChain_matchSecond() {
+ when(mockConverterProvider2.converterFor(any())).thenReturn(mockAttributeConverter2);
+ ChainConverterProvider chain = ChainConverterProvider.create(mockConverterProvider1, mockConverterProvider2);
+ assertThat(chain.converterFor(EnhancedType.of(String.class))).isSameAs(mockAttributeConverter2);
+ }
+
+ @Test
+ public void resolveMultipleProviderChain_matchFirst() {
+ when(mockConverterProvider1.converterFor(any())).thenReturn(mockAttributeConverter1);
+ ChainConverterProvider chain = ChainConverterProvider.create(mockConverterProvider1, mockConverterProvider2);
+ assertThat(chain.converterFor(EnhancedType.of(String.class))).isSameAs(mockAttributeConverter1);
+ }
+
+}
\ No newline at end of file
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/ConverterProviderResolverTest.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/ConverterProviderResolverTest.java
new file mode 100644
index 000000000000..0cd3294c085a
--- /dev/null
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/ConverterProviderResolverTest.java
@@ -0,0 +1,55 @@
+package software.amazon.awssdk.enhanced.dynamodb.internal.converter;
+
+import static java.util.Collections.emptyList;
+import static java.util.Collections.singletonList;
+import static org.assertj.core.api.Assertions.assertThat;
+
+import java.util.Arrays;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.Mock;
+import org.mockito.junit.MockitoJUnitRunner;
+import software.amazon.awssdk.enhanced.dynamodb.AttributeConverterProvider;
+import software.amazon.awssdk.enhanced.dynamodb.DefaultAttributeConverterProvider;
+
+@RunWith(MockitoJUnitRunner.class)
+public class ConverterProviderResolverTest {
+
+ @Mock
+ private AttributeConverterProvider mockConverterProvider1;
+
+ @Mock
+ private AttributeConverterProvider mockConverterProvider2;
+
+ @Test
+ public void resolveProviders_null() {
+ assertThat(ConverterProviderResolver.resolveProviders(null)).isNull();
+ }
+
+ @Test
+ public void resolveProviders_empty() {
+ assertThat(ConverterProviderResolver.resolveProviders(emptyList())).isNull();
+ }
+
+ @Test
+ public void resolveProviders_singleton() {
+ assertThat(ConverterProviderResolver.resolveProviders(singletonList(mockConverterProvider1)))
+ .isSameAs(mockConverterProvider1);
+ }
+
+ @Test
+ public void resolveProviders_multiple() {
+ AttributeConverterProvider result = ConverterProviderResolver.resolveProviders(
+ Arrays.asList(mockConverterProvider1, mockConverterProvider2));
+ assertThat(result).isNotNull();
+ assertThat(result).isInstanceOf(ChainConverterProvider.class);
+ }
+
+ @Test
+ public void defaultProvider_returnsInstance() {
+ AttributeConverterProvider defaultProvider = ConverterProviderResolver.defaultConverterProvider();
+ assertThat(defaultProvider).isNotNull();
+ assertThat(defaultProvider).isInstanceOf(DefaultAttributeConverterProvider.class);
+ }
+
+}
\ No newline at end of file
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/BeanTableSchemaTest.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/BeanTableSchemaTest.java
index 6d361f72e4ba..0dd88c8eabea 100644
--- a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/BeanTableSchemaTest.java
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/BeanTableSchemaTest.java
@@ -44,9 +44,9 @@
import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.AttributeConverterBean;
import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.AttributeConverterNoConstructorBean;
import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.CommonTypesBean;
-import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.ConverterBean;
-import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.ConverterNoConstructorBean;
import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.DocumentBean;
+import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.EmptyConverterProvidersInvalidBean;
+import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.EmptyConverterProvidersValidBean;
import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.EnumBean;
import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.ExtendedBean;
import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.FlattenedBean;
@@ -54,6 +54,8 @@
import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.InvalidBean;
import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.ListBean;
import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.MapBean;
+import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.MultipleConverterProvidersBean;
+import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.NoConstructorConverterProvidersBean;
import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.ParameterizedAbstractBean;
import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.ParameterizedDocumentBean;
import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.PrimitiveTypesBean;
@@ -62,6 +64,7 @@
import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.SetBean;
import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.SetterAnnotatedBean;
import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.SimpleBean;
+import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.SingleConverterProvidersBean;
import software.amazon.awssdk.enhanced.dynamodb.mapper.testbeans.SortKeyBean;
import software.amazon.awssdk.services.dynamodb.model.AttributeValue;
@@ -866,29 +869,10 @@ public void itemType_returnsCorrectClass() {
}
@Test
- public void usesCustomAttributeConverterProvider() {
- BeanTableSchema beanTableSchema = BeanTableSchema.create(ConverterBean.class);
-
- ConverterBean converterBean = new ConverterBean();
- converterBean.setId("id-value");
- converterBean.setIntegerAttribute(123);
-
- Map itemMap = beanTableSchema.itemToMap(converterBean, false);
-
- assertThat(itemMap.size(), is(2));
- assertThat(itemMap, hasEntry("id", stringValue("id-value-custom")));
- assertThat(itemMap, hasEntry("integerAttribute", numberValue(133)));
-
- ConverterBean reverse = beanTableSchema.mapToItem(itemMap);
- assertThat(reverse.getId(), is(equalTo("id-value-custom")));
- assertThat(reverse.getIntegerAttribute(), is(equalTo(133)));
- }
-
- @Test
- public void converterProviderWithoutConstructor_throwsIllegalArgumentException() {
+ public void attributeConverterWithoutConstructor_throwsIllegalArgumentException() {
exception.expect(IllegalArgumentException.class);
exception.expectMessage("default constructor");
- BeanTableSchema.create(ConverterNoConstructorBean.class);
+ BeanTableSchema.create(AttributeConverterNoConstructorBean.class);
}
@Test
@@ -915,9 +899,74 @@ public void usesCustomAttributeConverter() {
}
@Test
- public void attributeConverterWithoutConstructor_throwsIllegalArgumentException() {
+ public void converterProviderWithoutConstructor_throwsIllegalArgumentException() {
exception.expect(IllegalArgumentException.class);
exception.expectMessage("default constructor");
- BeanTableSchema.create(AttributeConverterNoConstructorBean.class);
+ BeanTableSchema.create(NoConstructorConverterProvidersBean.class);
+ }
+
+ @Test
+ public void usesCustomAttributeConverterProvider() {
+ BeanTableSchema beanTableSchema = BeanTableSchema.create(SingleConverterProvidersBean.class);
+
+ SingleConverterProvidersBean converterBean = new SingleConverterProvidersBean();
+ converterBean.setId("id-value");
+ converterBean.setIntegerAttribute(123);
+
+ Map itemMap = beanTableSchema.itemToMap(converterBean, false);
+
+ assertThat(itemMap.size(), is(2));
+ assertThat(itemMap, hasEntry("id", stringValue("id-value-custom")));
+ assertThat(itemMap, hasEntry("integerAttribute", numberValue(133)));
+
+ SingleConverterProvidersBean reverse = beanTableSchema.mapToItem(itemMap);
+ assertThat(reverse.getId(), is(equalTo("id-value-custom")));
+ assertThat(reverse.getIntegerAttribute(), is(equalTo(133)));
+ }
+
+ @Test
+ public void usesCustomAttributeConverterProviders() {
+ BeanTableSchema beanTableSchema =
+ BeanTableSchema.create(MultipleConverterProvidersBean.class);
+
+ MultipleConverterProvidersBean converterBean = new MultipleConverterProvidersBean();
+ converterBean.setId("id-value");
+ converterBean.setIntegerAttribute(123);
+
+ Map itemMap = beanTableSchema.itemToMap(converterBean, false);
+
+ assertThat(itemMap.size(), is(2));
+ assertThat(itemMap, hasEntry("id", stringValue("id-value-custom")));
+ assertThat(itemMap, hasEntry("integerAttribute", numberValue(133)));
+
+ MultipleConverterProvidersBean reverse = beanTableSchema.mapToItem(itemMap);
+ assertThat(reverse.getId(), is(equalTo("id-value-custom")));
+ assertThat(reverse.getIntegerAttribute(), is(equalTo(133)));
+ }
+
+ @Test
+ public void emptyConverterProviderList_fails_whenAttributeConvertersAreMissing() {
+ exception.expect(NullPointerException.class);
+ BeanTableSchema.create(EmptyConverterProvidersInvalidBean.class);
+ }
+
+ @Test
+ public void emptyConverterProviderList_correct_whenAttributeConvertersAreSupplied() {
+ BeanTableSchema beanTableSchema =
+ BeanTableSchema.create(EmptyConverterProvidersValidBean.class);
+
+ EmptyConverterProvidersValidBean converterBean = new EmptyConverterProvidersValidBean();
+ converterBean.setId("id-value");
+ converterBean.setIntegerAttribute(123);
+
+ Map itemMap = beanTableSchema.itemToMap(converterBean, false);
+
+ assertThat(itemMap.size(), is(2));
+ assertThat(itemMap, hasEntry("id", stringValue("id-value-custom")));
+ assertThat(itemMap, hasEntry("integerAttribute", numberValue(133)));
+
+ EmptyConverterProvidersValidBean reverse = beanTableSchema.mapToItem(itemMap);
+ assertThat(reverse.getId(), is(equalTo("id-value-custom")));
+ assertThat(reverse.getIntegerAttribute(), is(equalTo(133)));
}
}
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/StaticTableSchemaTest.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/StaticTableSchemaTest.java
index c5789aad3029..7ef020a15d52 100644
--- a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/StaticTableSchemaTest.java
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/StaticTableSchemaTest.java
@@ -780,10 +780,16 @@ public Consumer modifyMetadata() {
}
@Mock
- private AttributeConverterProvider provider;
+ private AttributeConverterProvider provider1;
@Mock
- private AttributeConverter attributeConverter;
+ private AttributeConverterProvider provider2;
+
+ @Mock
+ private AttributeConverter attributeConverter1;
+
+ @Mock
+ private AttributeConverter attributeConverter2;
@Rule
public ExpectedException exception = ExpectedException.none();
@@ -1366,8 +1372,8 @@ public void instantiateFlattenedAbstractClassShouldThrowException() {
}
@Test
- public void addAttributeConverterProvider() {
- when(provider.converterFor(EnhancedType.of(String.class))).thenReturn(attributeConverter);
+ public void addSingleAttributeConverterProvider() {
+ when(provider1.converterFor(EnhancedType.of(String.class))).thenReturn(attributeConverter1);
StaticTableSchema tableSchema =
StaticTableSchema.builder(FakeMappedItem.class)
@@ -1375,10 +1381,10 @@ public void addAttributeConverterProvider() {
.addAttribute(String.class, a -> a.name("aString")
.getter(FakeMappedItem::getAString)
.setter(FakeMappedItem::setAString))
- .attributeConverterProvider(provider)
+ .attributeConverterProviders(provider1)
.build();
- assertThat(tableSchema.attributeConverterProvider(), is(provider));
+ assertThat(tableSchema.attributeConverterProvider(), is(provider1));
}
@Test
@@ -1386,8 +1392,8 @@ public void usesCustomAttributeConverterProvider() {
String originalString = "test-string";
String expectedString = "test-string-custom";
- when(provider.converterFor(EnhancedType.of(String.class))).thenReturn(attributeConverter);
- when(attributeConverter.transformFrom(any())).thenReturn(AttributeValue.builder().s(expectedString).build());
+ when(provider1.converterFor(EnhancedType.of(String.class))).thenReturn(attributeConverter1);
+ when(attributeConverter1.transformFrom(any())).thenReturn(AttributeValue.builder().s(expectedString).build());
StaticTableSchema tableSchema =
StaticTableSchema.builder(FakeMappedItem.class)
@@ -1395,11 +1401,69 @@ public void usesCustomAttributeConverterProvider() {
.addAttribute(String.class, a -> a.name("aString")
.getter(FakeMappedItem::getAString)
.setter(FakeMappedItem::setAString))
- .attributeConverterProvider(provider)
+ .attributeConverterProviders(provider1)
.build();
+ Map resultMap =
+ tableSchema.itemToMap(FakeMappedItem.builder().aString(originalString).build(), false);
+ assertThat(resultMap.get("aString").s(), is(expectedString));
+ }
+
+ @Test
+ public void usesCustomAttributeConverterProviders() {
+ String originalString = "test-string";
+ String expectedString = "test-string-custom";
+
+ when(provider2.converterFor(EnhancedType.of(String.class))).thenReturn(attributeConverter2);
+ when(attributeConverter2.transformFrom(any())).thenReturn(AttributeValue.builder().s(expectedString).build());
+
+ StaticTableSchema tableSchema =
+ StaticTableSchema.builder(FakeMappedItem.class)
+ .newItemSupplier(FakeMappedItem::new)
+ .addAttribute(String.class, a -> a.name("aString")
+ .getter(FakeMappedItem::getAString)
+ .setter(FakeMappedItem::setAString))
+ .attributeConverterProviders(provider1, provider2)
+ .build();
+
+ Map resultMap =
+ tableSchema.itemToMap(FakeMappedItem.builder().aString(originalString).build(), false);
+ assertThat(resultMap.get("aString").s(), is(expectedString));
+ }
+
+ @Test
+ public void noConverterProvider_throwsException_whenMissingAttributeConverters() {
+ exception.expect(NullPointerException.class);
+
+ StaticTableSchema tableSchema =
+ StaticTableSchema.builder(FakeMappedItem.class)
+ .newItemSupplier(FakeMappedItem::new)
+ .addAttribute(String.class, a -> a.name("aString")
+ .getter(FakeMappedItem::getAString)
+ .setter(FakeMappedItem::setAString))
+ .attributeConverterProviders(Collections.emptyList())
+ .build();
+ }
+
+ @Test
+ public void noConverterProvider_handlesCorrectly_whenAttributeConvertersAreSupplied() {
+ String originalString = "test-string";
+ String expectedString = "test-string-custom";
+
+ when(attributeConverter1.transformFrom(any())).thenReturn(AttributeValue.builder().s(expectedString).build());
+
+ StaticTableSchema tableSchema =
+ StaticTableSchema.builder(FakeMappedItem.class)
+ .newItemSupplier(FakeMappedItem::new)
+ .addAttribute(String.class, a -> a.name("aString")
+ .getter(FakeMappedItem::getAString)
+ .setter(FakeMappedItem::setAString)
+ .attributeConverter(attributeConverter1))
+ .attributeConverterProviders(Collections.emptyList())
+ .build();
+
Map resultMap = tableSchema.itemToMap(FakeMappedItem.builder().aString(originalString).build(),
- false);
+ false);
assertThat(resultMap.get("aString").s(), is(expectedString));
}
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/AttributeConverterBean.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/AttributeConverterBean.java
index 62e29b3c7616..3f27afd6173f 100644
--- a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/AttributeConverterBean.java
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/AttributeConverterBean.java
@@ -61,12 +61,13 @@ public boolean equals(Object o) {
if (o == null || getClass() != o.getClass()) return false;
AttributeConverterBean that = (AttributeConverterBean) o;
return Objects.equals(id, that.id) &&
- Objects.equals(integerAttribute, that.integerAttribute);
+ Objects.equals(integerAttribute, that.integerAttribute) &&
+ Objects.equals(attributeItem, that.attributeItem);
}
@Override
public int hashCode() {
- return Objects.hash(id, integerAttribute);
+ return Objects.hash(id, integerAttribute, attributeItem);
}
public static class CustomAttributeConverter implements AttributeConverter {
@@ -76,12 +77,12 @@ public CustomAttributeConverter() {
@Override
public AttributeValue transformFrom(AttributeItem input) {
- return EnhancedAttributeValue.fromString(input.innerValue).toAttributeValue();
+ return EnhancedAttributeValue.fromString(input.getInnerValue()).toAttributeValue();
}
@Override
public AttributeItem transformTo(AttributeValue input) {
- return null;
+ return new AttributeItem(input.s());
}
@Override
@@ -96,7 +97,14 @@ public AttributeValueType attributeValueType() {
}
public static class AttributeItem {
- String innerValue;
+ private String innerValue;
+
+ public AttributeItem() {
+ }
+
+ AttributeItem(String value) {
+ innerValue = value;
+ }
public String getInnerValue() {
return innerValue;
@@ -105,5 +113,18 @@ public String getInnerValue() {
public void setInnerValue(String innerValue) {
this.innerValue = innerValue;
}
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) return true;
+ if (o == null || getClass() != o.getClass()) return false;
+ AttributeItem that = (AttributeItem) o;
+ return Objects.equals(innerValue, that.innerValue);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(innerValue);
+ }
}
}
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/EmptyConverterProvidersInvalidBean.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/EmptyConverterProvidersInvalidBean.java
new file mode 100644
index 000000000000..60c2d2d9fc9c
--- /dev/null
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/EmptyConverterProvidersInvalidBean.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.enhanced.dynamodb.mapper.testbeans;
+
+import java.util.Objects;
+import software.amazon.awssdk.enhanced.dynamodb.AttributeConverter;
+import software.amazon.awssdk.enhanced.dynamodb.AttributeValueType;
+import software.amazon.awssdk.enhanced.dynamodb.EnhancedType;
+import software.amazon.awssdk.enhanced.dynamodb.internal.converter.attribute.EnhancedAttributeValue;
+import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbBean;
+import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbConvertedBy;
+import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbPartitionKey;
+import software.amazon.awssdk.services.dynamodb.model.AttributeValue;
+
+@DynamoDbBean(converterProviders = {})
+public class EmptyConverterProvidersInvalidBean {
+ private String id;
+ private Integer integerAttribute;
+
+ @DynamoDbPartitionKey
+ @DynamoDbConvertedBy(CustomStringAttributeConverter.class)
+ public String getId() {
+ return this.id;
+ }
+ public void setId(String id) {
+ this.id = id;
+ }
+
+ public Integer getIntegerAttribute() {
+ return integerAttribute;
+ }
+ public void setIntegerAttribute(Integer integerAttribute) {
+ this.integerAttribute = integerAttribute;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) return true;
+ if (o == null || getClass() != o.getClass()) return false;
+ EmptyConverterProvidersInvalidBean that = (EmptyConverterProvidersInvalidBean) o;
+ return Objects.equals(id, that.id) &&
+ Objects.equals(integerAttribute, that.integerAttribute);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(id, integerAttribute);
+ }
+
+ public static class CustomStringAttributeConverter implements AttributeConverter {
+ final static String DEFAULT_SUFFIX = "-custom";
+
+ public CustomStringAttributeConverter() {
+ }
+
+ @Override
+ public AttributeValue transformFrom(String input) {
+ return EnhancedAttributeValue.fromString(input + DEFAULT_SUFFIX).toAttributeValue();
+ }
+
+ @Override
+ public String transformTo(AttributeValue input) {
+ return input.s();
+ }
+
+ @Override
+ public EnhancedType type() {
+ return EnhancedType.of(String.class);
+ }
+
+ @Override
+ public AttributeValueType attributeValueType() {
+ return AttributeValueType.S;
+ }
+ }
+
+}
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/EmptyConverterProvidersValidBean.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/EmptyConverterProvidersValidBean.java
new file mode 100644
index 000000000000..ceee30289a91
--- /dev/null
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/EmptyConverterProvidersValidBean.java
@@ -0,0 +1,119 @@
+/*
+ * 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.mapper.testbeans;
+
+import java.util.Objects;
+import software.amazon.awssdk.enhanced.dynamodb.AttributeConverter;
+import software.amazon.awssdk.enhanced.dynamodb.AttributeValueType;
+import software.amazon.awssdk.enhanced.dynamodb.EnhancedType;
+import software.amazon.awssdk.enhanced.dynamodb.internal.converter.attribute.EnhancedAttributeValue;
+import software.amazon.awssdk.enhanced.dynamodb.internal.converter.string.IntegerStringConverter;
+import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbBean;
+import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbConvertedBy;
+import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbPartitionKey;
+import software.amazon.awssdk.services.dynamodb.model.AttributeValue;
+
+@DynamoDbBean(converterProviders = {})
+public class EmptyConverterProvidersValidBean {
+ private String id;
+ private Integer integerAttribute;
+
+ @DynamoDbPartitionKey
+ @DynamoDbConvertedBy(CustomStringAttributeConverter.class)
+ public String getId() {
+ return this.id;
+ }
+ public void setId(String id) {
+ this.id = id;
+ }
+
+ @DynamoDbConvertedBy(CustomIntegerAttributeConverter.class)
+ public Integer getIntegerAttribute() {
+ return integerAttribute;
+ }
+ public void setIntegerAttribute(Integer integerAttribute) {
+ this.integerAttribute = integerAttribute;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) return true;
+ if (o == null || getClass() != o.getClass()) return false;
+ EmptyConverterProvidersValidBean that = (EmptyConverterProvidersValidBean) o;
+ return Objects.equals(id, that.id) &&
+ Objects.equals(integerAttribute, that.integerAttribute);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(id, integerAttribute);
+ }
+
+ public static class CustomStringAttributeConverter implements AttributeConverter {
+ final static String DEFAULT_SUFFIX = "-custom";
+
+ public CustomStringAttributeConverter() {
+ }
+
+ @Override
+ public AttributeValue transformFrom(String input) {
+ return EnhancedAttributeValue.fromString(input + DEFAULT_SUFFIX).toAttributeValue();
+ }
+
+ @Override
+ public String transformTo(AttributeValue input) {
+ return input.s();
+ }
+
+ @Override
+ public EnhancedType type() {
+ return EnhancedType.of(String.class);
+ }
+
+ @Override
+ public AttributeValueType attributeValueType() {
+ return AttributeValueType.S;
+ }
+ }
+
+ public static class CustomIntegerAttributeConverter implements AttributeConverter {
+ final static Integer DEFAULT_INCREMENT = 10;
+
+ public CustomIntegerAttributeConverter() {
+ }
+
+ @Override
+ public AttributeValue transformFrom(Integer input) {
+ return EnhancedAttributeValue.fromNumber(IntegerStringConverter.create().toString(input + DEFAULT_INCREMENT))
+ .toAttributeValue();
+ }
+
+ @Override
+ public Integer transformTo(AttributeValue input) {
+ return Integer.valueOf(input.n());
+ }
+
+ @Override
+ public EnhancedType type() {
+ return EnhancedType.of(Integer.class);
+ }
+
+ @Override
+ public AttributeValueType attributeValueType() {
+ return AttributeValueType.N;
+ }
+ }
+}
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/MultipleConverterProvidersBean.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/MultipleConverterProvidersBean.java
new file mode 100644
index 000000000000..b3a3578c299f
--- /dev/null
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/MultipleConverterProvidersBean.java
@@ -0,0 +1,139 @@
+/*
+ * 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.mapper.testbeans;
+
+import java.util.Map;
+import java.util.Objects;
+import software.amazon.awssdk.enhanced.dynamodb.AttributeConverter;
+import software.amazon.awssdk.enhanced.dynamodb.AttributeConverterProvider;
+import software.amazon.awssdk.enhanced.dynamodb.AttributeValueType;
+import software.amazon.awssdk.enhanced.dynamodb.EnhancedType;
+import software.amazon.awssdk.enhanced.dynamodb.internal.converter.attribute.EnhancedAttributeValue;
+import software.amazon.awssdk.enhanced.dynamodb.internal.converter.string.IntegerStringConverter;
+import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbBean;
+import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbPartitionKey;
+import software.amazon.awssdk.services.dynamodb.model.AttributeValue;
+import software.amazon.awssdk.utils.ImmutableMap;
+
+@DynamoDbBean(converterProviders = {
+ MultipleConverterProvidersBean.FirstAttributeConverterProvider.class,
+ MultipleConverterProvidersBean.SecondAttributeConverterProvider.class})
+public class MultipleConverterProvidersBean {
+ private String id;
+ private Integer integerAttribute;
+
+ @DynamoDbPartitionKey
+ public String getId() {
+ return this.id;
+ }
+ public void setId(String id) {
+ this.id = id;
+ }
+
+ public Integer getIntegerAttribute() {
+ return integerAttribute;
+ }
+ public void setIntegerAttribute(Integer integerAttribute) {
+ this.integerAttribute = integerAttribute;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) return true;
+ if (o == null || getClass() != o.getClass()) return false;
+ MultipleConverterProvidersBean that = (MultipleConverterProvidersBean) o;
+ return Objects.equals(id, that.id) &&
+ Objects.equals(integerAttribute, that.integerAttribute);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(id, integerAttribute);
+ }
+
+ public static class FirstAttributeConverterProvider implements AttributeConverterProvider {
+ @SuppressWarnings("unchecked")
+ @Override
+ public AttributeConverter converterFor(EnhancedType enhancedType) {
+ return null;
+ }
+ }
+
+ public static class SecondAttributeConverterProvider implements AttributeConverterProvider {
+
+ private final Map, AttributeConverter>> converterCache = ImmutableMap.of(
+ EnhancedType.of(String.class), new CustomStringAttributeConverter(),
+ EnhancedType.of(Integer.class), new CustomIntegerAttributeConverter()
+ );
+
+ @SuppressWarnings("unchecked")
+ @Override
+ public AttributeConverter converterFor(EnhancedType enhancedType) {
+ return (AttributeConverter) converterCache.get(enhancedType);
+ }
+ }
+
+ private static class CustomStringAttributeConverter implements AttributeConverter {
+
+ final static String DEFAULT_SUFFIX = "-custom";
+
+ @Override
+ public AttributeValue transformFrom(String input) {
+ return EnhancedAttributeValue.fromString(input + DEFAULT_SUFFIX).toAttributeValue();
+ }
+
+ @Override
+ public String transformTo(AttributeValue input) {
+ return input.s();
+ }
+
+ @Override
+ public EnhancedType type() {
+ return EnhancedType.of(String.class);
+ }
+
+ @Override
+ public AttributeValueType attributeValueType() {
+ return AttributeValueType.S;
+ }
+ }
+
+ private static class CustomIntegerAttributeConverter implements AttributeConverter {
+
+ final static Integer DEFAULT_INCREMENT = 10;
+
+ @Override
+ public AttributeValue transformFrom(Integer input) {
+ return EnhancedAttributeValue.fromNumber(IntegerStringConverter.create().toString(input + DEFAULT_INCREMENT))
+ .toAttributeValue();
+ }
+
+ @Override
+ public Integer transformTo(AttributeValue input) {
+ return Integer.valueOf(input.n());
+ }
+
+ @Override
+ public EnhancedType type() {
+ return EnhancedType.of(Integer.class);
+ }
+
+ @Override
+ public AttributeValueType attributeValueType() {
+ return AttributeValueType.N;
+ }
+ }
+}
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/ConverterNoConstructorBean.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/NoConstructorConverterProvidersBean.java
similarity index 87%
rename from services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/ConverterNoConstructorBean.java
rename to services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/NoConstructorConverterProvidersBean.java
index 3d849d9400b0..72212fe4a2d5 100644
--- a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/ConverterNoConstructorBean.java
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/NoConstructorConverterProvidersBean.java
@@ -20,8 +20,8 @@
import software.amazon.awssdk.enhanced.dynamodb.EnhancedType;
import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbBean;
-@DynamoDbBean(converterProviders = ConverterNoConstructorBean.CustomAttributeConverterProvider.class)
-public class ConverterNoConstructorBean extends AbstractBean {
+@DynamoDbBean(converterProviders = NoConstructorConverterProvidersBean.CustomAttributeConverterProvider.class)
+public class NoConstructorConverterProvidersBean extends AbstractBean {
public static class CustomAttributeConverterProvider implements AttributeConverterProvider {
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/ConverterBean.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/SingleConverterProvidersBean.java
similarity index 95%
rename from services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/ConverterBean.java
rename to services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/SingleConverterProvidersBean.java
index 6500ad16d2f4..5e715b297e63 100644
--- a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/ConverterBean.java
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/mapper/testbeans/SingleConverterProvidersBean.java
@@ -28,8 +28,8 @@
import software.amazon.awssdk.services.dynamodb.model.AttributeValue;
import software.amazon.awssdk.utils.ImmutableMap;
-@DynamoDbBean(converterProviders = ConverterBean.CustomAttributeConverterProvider.class)
-public class ConverterBean {
+@DynamoDbBean(converterProviders = SingleConverterProvidersBean.CustomAttributeConverterProvider.class)
+public class SingleConverterProvidersBean {
private String id;
private Integer integerAttribute;
@@ -52,7 +52,7 @@ public void setIntegerAttribute(Integer integerAttribute) {
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
- ConverterBean that = (ConverterBean) o;
+ SingleConverterProvidersBean that = (SingleConverterProvidersBean) o;
return Objects.equals(id, that.id) &&
Objects.equals(integerAttribute, that.integerAttribute);
}
From d5ae43ad5a5737961fbf77beb203b66a3bf9cda2 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 2 Apr 2020 18:05:47 +0000
Subject: [PATCH 004/604] Amazon Relational Database Service Update:
Documentation updates for RDS: creating read replicas is now supported for
SQL Server DB instances
---
...azonRelationalDatabaseService-7fef438.json | 5 +
.../codegen-resources/service-2.json | 120 +++++++++---------
2 files changed, 65 insertions(+), 60 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonRelationalDatabaseService-7fef438.json
diff --git a/.changes/next-release/feature-AmazonRelationalDatabaseService-7fef438.json b/.changes/next-release/feature-AmazonRelationalDatabaseService-7fef438.json
new file mode 100644
index 000000000000..54ada6f44734
--- /dev/null
+++ b/.changes/next-release/feature-AmazonRelationalDatabaseService-7fef438.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon Relational Database Service",
+ "description": "Documentation updates for RDS: creating read replicas is now supported for SQL Server DB instances"
+}
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 076c6c692184..4954cca52e3e 100755
--- a/services/rds/src/main/resources/codegen-resources/service-2.json
+++ b/services/rds/src/main/resources/codegen-resources/service-2.json
@@ -288,7 +288,7 @@
{"shape":"InvalidGlobalClusterStateFault"},
{"shape":"DomainNotFoundFault"}
],
- "documentation":"Creates a new Amazon Aurora DB cluster.
You can use the ReplicationSourceIdentifier
parameter to create the DB cluster as a Read Replica of another DB cluster or Amazon RDS MySQL DB instance. For cross-region replication where the DB cluster identified by ReplicationSourceIdentifier
is encrypted, you must also specify the PreSignedUrl
parameter.
For more information on Amazon Aurora, see What Is Amazon Aurora? in the Amazon Aurora User Guide.
This action only applies to Aurora DB clusters.
"
+ "documentation":"Creates a new Amazon Aurora DB cluster.
You can use the ReplicationSourceIdentifier
parameter to create the DB cluster as a read replica of another DB cluster or Amazon RDS MySQL DB instance. For cross-region replication where the DB cluster identified by ReplicationSourceIdentifier
is encrypted, you must also specify the PreSignedUrl
parameter.
For more information on Amazon Aurora, see What Is Amazon Aurora? in the Amazon Aurora User Guide.
This action only applies to Aurora DB clusters.
"
},
"CreateDBClusterEndpoint":{
"name":"CreateDBClusterEndpoint",
@@ -414,7 +414,7 @@
{"shape":"KMSKeyNotAccessibleFault"},
{"shape":"DomainNotFoundFault"}
],
- "documentation":"Creates a new DB instance that acts as a Read Replica for an existing source DB instance. You can create a Read Replica for a DB instance running MySQL, MariaDB, Oracle, or PostgreSQL. For more information, see Working with Read Replicas in the Amazon RDS User Guide.
Amazon Aurora doesn't support this action. You must call the CreateDBInstance
action to create a DB instance for an Aurora DB cluster.
All Read Replica DB instances are created with backups disabled. All other DB instance attributes (including DB security groups and DB parameter groups) are inherited from the source DB instance, except as specified following.
Your source DB instance must have backup retention enabled.
"
+ "documentation":"Creates a new DB instance that acts as a read replica for an existing source DB instance. You can create a read replica for a DB instance running MySQL, MariaDB, Oracle, PostgreSQL, or SQL Server. For more information, see Working with Read Replicas in the Amazon RDS User Guide.
Amazon Aurora doesn't support this action. Call the CreateDBInstance
action to create a DB instance for an Aurora DB cluster.
All read replica DB instances are created with backups disabled. All other DB instance attributes (including DB security groups and DB parameter groups) are inherited from the source DB instance, except as specified.
Your source DB instance must have backup retention enabled.
"
},
"CreateDBParameterGroup":{
"name":"CreateDBParameterGroup",
@@ -670,7 +670,7 @@
{"shape":"InvalidDBClusterStateFault"},
{"shape":"DBInstanceAutomatedBackupQuotaExceededFault"}
],
- "documentation":"The DeleteDBInstance action deletes a previously provisioned DB instance. When you delete a DB instance, all automated backups for that instance are deleted and can't be recovered. Manual DB snapshots of the DB instance to be deleted by DeleteDBInstance
are not deleted.
If you request a final DB snapshot the status of the Amazon RDS DB instance is deleting
until the DB snapshot is created. The API action DescribeDBInstance
is used to monitor the status of this operation. The action can't be canceled or reverted once submitted.
When a DB instance is in a failure state and has a status of failed
, incompatible-restore
, or incompatible-network
, you can only delete it when you skip creation of the final snapshot with the SkipFinalSnapshot
parameter.
If the specified DB instance is part of an Amazon Aurora DB cluster, you can't delete the DB instance if both of the following conditions are true:
To delete a DB instance in this case, first call the PromoteReadReplicaDBCluster
API action to promote the DB cluster so it's no longer a Read Replica. After the promotion completes, then call the DeleteDBInstance
API action to delete the final instance in the DB cluster.
"
+ "documentation":"The DeleteDBInstance action deletes a previously provisioned DB instance. When you delete a DB instance, all automated backups for that instance are deleted and can't be recovered. Manual DB snapshots of the DB instance to be deleted by DeleteDBInstance
are not deleted.
If you request a final DB snapshot the status of the Amazon RDS DB instance is deleting
until the DB snapshot is created. The API action DescribeDBInstance
is used to monitor the status of this operation. The action can't be canceled or reverted once submitted.
When a DB instance is in a failure state and has a status of failed
, incompatible-restore
, or incompatible-network
, you can only delete it when you skip creation of the final snapshot with the SkipFinalSnapshot
parameter.
If the specified DB instance is part of an Amazon Aurora DB cluster, you can't delete the DB instance if both of the following conditions are true:
To delete a DB instance in this case, first call the PromoteReadReplicaDBCluster
API action to promote the DB cluster so it's no longer a read replica. After the promotion completes, then call the DeleteDBInstance
API action to delete the final instance in the DB cluster.
"
},
"DeleteDBInstanceAutomatedBackup":{
"name":"DeleteDBInstanceAutomatedBackup",
@@ -1430,7 +1430,7 @@
"shape":"SourceRegionMessage",
"resultWrapper":"DescribeSourceRegionsResult"
},
- "documentation":"Returns a list of the source AWS Regions where the current AWS Region can create a Read Replica or copy a DB snapshot from. This API action supports pagination.
"
+ "documentation":"Returns a list of the source AWS Regions where the current AWS Region can create a read replica or copy a DB snapshot from. This API action supports pagination.
"
},
"DescribeValidDBInstanceModifications":{
"name":"DescribeValidDBInstanceModifications",
@@ -1734,7 +1734,7 @@
"errors":[
{"shape":"DBSnapshotNotFoundFault"}
],
- "documentation":"Updates a manual DB snapshot, which can be encrypted or not encrypted, with a new engine version.
Amazon RDS supports upgrading DB snapshots for MySQL, Oracle, and PostgreSQL.
"
+ "documentation":"Updates a manual DB snapshot with a new engine version. The snapshot can be encrypted or unencrypted, but not shared or public.
Amazon RDS supports upgrading DB snapshots for MySQL, Oracle, and PostgreSQL.
"
},
"ModifyDBSnapshotAttribute":{
"name":"ModifyDBSnapshotAttribute",
@@ -1844,7 +1844,7 @@
{"shape":"InvalidDBInstanceStateFault"},
{"shape":"DBInstanceNotFoundFault"}
],
- "documentation":"Promotes a Read Replica DB instance to a standalone DB instance.
-
Backup duration is a function of the amount of changes to the database since the previous backup. If you plan to promote a Read Replica to a standalone instance, we recommend that you enable backups and complete at least one backup prior to promotion. In addition, a Read Replica cannot be promoted to a standalone instance when it is in the backing-up
status. If you have enabled backups on your Read Replica, configure the automated backup window so that daily backups do not interfere with Read Replica promotion.
-
This command doesn't apply to Aurora MySQL and Aurora PostgreSQL.
"
+ "documentation":"Promotes a read replica DB instance to a standalone DB instance.
-
Backup duration is a function of the amount of changes to the database since the previous backup. If you plan to promote a read replica to a standalone instance, we recommend that you enable backups and complete at least one backup prior to promotion. In addition, a read replica cannot be promoted to a standalone instance when it is in the backing-up
status. If you have enabled backups on your read replica, configure the automated backup window so that daily backups do not interfere with read replica promotion.
-
This command doesn't apply to Aurora MySQL and Aurora PostgreSQL.
"
},
"PromoteReadReplicaDBCluster":{
"name":"PromoteReadReplicaDBCluster",
@@ -1861,7 +1861,7 @@
{"shape":"DBClusterNotFoundFault"},
{"shape":"InvalidDBClusterStateFault"}
],
- "documentation":"Promotes a Read Replica DB cluster to a standalone DB cluster.
This action only applies to Aurora DB clusters.
"
+ "documentation":"Promotes a read replica DB cluster to a standalone DB cluster.
This action only applies to Aurora DB clusters.
"
},
"PurchaseReservedDBInstancesOffering":{
"name":"PurchaseReservedDBInstancesOffering",
@@ -2093,7 +2093,7 @@
{"shape":"DomainNotFoundFault"},
{"shape":"DBClusterParameterGroupNotFoundFault"}
],
- "documentation":"Creates a new DB cluster from a DB snapshot or DB cluster snapshot.
If a DB snapshot is specified, the target DB cluster is created from the source DB snapshot with a default configuration and default security group.
If a DB cluster snapshot is specified, the target DB cluster is created from the source DB cluster restore point with the same configuration as the original source DB cluster. If you don't specify a security group, the new DB cluster is associated with the default security group.
For more information on Amazon Aurora, see What Is Amazon Aurora? in the Amazon Aurora User Guide.
This action only applies to Aurora DB clusters.
"
+ "documentation":"Creates a new DB cluster from a DB snapshot or DB cluster snapshot. This action only applies to Aurora DB clusters.
The target DB cluster is created from the source snapshot with a default configuration. If you don't specify a security group, the new DB cluster is associated with the default security group.
This action only restores the DB cluster, not the DB instances for that DB cluster. You must invoke the CreateDBInstance
action to create DB instances for the restored DB cluster, specifying the identifier of the restored DB cluster in DBClusterIdentifier
. You can create DB instances only after the RestoreDBClusterFromSnapshot
action has completed and the DB cluster is available.
For more information on Amazon Aurora, see What Is Amazon Aurora? in the Amazon Aurora User Guide.
"
},
"RestoreDBClusterToPointInTime":{
"name":"RestoreDBClusterToPointInTime",
@@ -2425,7 +2425,7 @@
"documentation":"The maximum allowed value for the quota.
"
}
},
- "documentation":"Describes a quota for an AWS account.
The following are account quotas:
-
AllocatedStorage
- The total allocated storage per account, in GiB. The used value is the total allocated storage in the account, in GiB.
-
AuthorizationsPerDBSecurityGroup
- The number of ingress rules per DB security group. The used value is the highest number of ingress rules in a DB security group in the account. Other DB security groups in the account might have a lower number of ingress rules.
-
CustomEndpointsPerDBCluster
- The number of custom endpoints per DB cluster. The used value is the highest number of custom endpoints in a DB clusters in the account. Other DB clusters in the account might have a lower number of custom endpoints.
-
DBClusterParameterGroups
- The number of DB cluster parameter groups per account, excluding default parameter groups. The used value is the count of nondefault DB cluster parameter groups in the account.
-
DBClusterRoles
- The number of associated AWS Identity and Access Management (IAM) roles per DB cluster. The used value is the highest number of associated IAM roles for a DB cluster in the account. Other DB clusters in the account might have a lower number of associated IAM roles.
-
DBClusters
- The number of DB clusters per account. The used value is the count of DB clusters in the account.
-
DBInstanceRoles
- The number of associated IAM roles per DB instance. The used value is the highest number of associated IAM roles for a DB instance in the account. Other DB instances in the account might have a lower number of associated IAM roles.
-
DBInstances
- The number of DB instances per account. The used value is the count of the DB instances in the account.
Amazon RDS DB instances, Amazon Aurora DB instances, Amazon Neptune instances, and Amazon DocumentDB instances apply to this quota.
-
DBParameterGroups
- The number of DB parameter groups per account, excluding default parameter groups. The used value is the count of nondefault DB parameter groups in the account.
-
DBSecurityGroups
- The number of DB security groups (not VPC security groups) per account, excluding the default security group. The used value is the count of nondefault DB security groups in the account.
-
DBSubnetGroups
- The number of DB subnet groups per account. The used value is the count of the DB subnet groups in the account.
-
EventSubscriptions
- The number of event subscriptions per account. The used value is the count of the event subscriptions in the account.
-
ManualSnapshots
- The number of manual DB snapshots per account. The used value is the count of the manual DB snapshots in the account.
-
OptionGroups
- The number of DB option groups per account, excluding default option groups. The used value is the count of nondefault DB option groups in the account.
-
ReadReplicasPerMaster
- The number of Read Replicas per DB instance. The used value is the highest number of Read Replicas for a DB instance in the account. Other DB instances in the account might have a lower number of Read Replicas.
-
ReservedDBInstances
- The number of reserved DB instances per account. The used value is the count of the active reserved DB instances in the account.
-
SubnetsPerDBSubnetGroup
- The number of subnets per DB subnet group. The used value is highest number of subnets for a DB subnet group in the account. Other DB subnet groups in the account might have a lower number of subnets.
For more information, see Quotas for Amazon RDS in the Amazon RDS User Guide and Quotas for Amazon Aurora in the Amazon Aurora User Guide.
",
+ "documentation":"Describes a quota for an AWS account.
The following are account quotas:
-
AllocatedStorage
- The total allocated storage per account, in GiB. The used value is the total allocated storage in the account, in GiB.
-
AuthorizationsPerDBSecurityGroup
- The number of ingress rules per DB security group. The used value is the highest number of ingress rules in a DB security group in the account. Other DB security groups in the account might have a lower number of ingress rules.
-
CustomEndpointsPerDBCluster
- The number of custom endpoints per DB cluster. The used value is the highest number of custom endpoints in a DB clusters in the account. Other DB clusters in the account might have a lower number of custom endpoints.
-
DBClusterParameterGroups
- The number of DB cluster parameter groups per account, excluding default parameter groups. The used value is the count of nondefault DB cluster parameter groups in the account.
-
DBClusterRoles
- The number of associated AWS Identity and Access Management (IAM) roles per DB cluster. The used value is the highest number of associated IAM roles for a DB cluster in the account. Other DB clusters in the account might have a lower number of associated IAM roles.
-
DBClusters
- The number of DB clusters per account. The used value is the count of DB clusters in the account.
-
DBInstanceRoles
- The number of associated IAM roles per DB instance. The used value is the highest number of associated IAM roles for a DB instance in the account. Other DB instances in the account might have a lower number of associated IAM roles.
-
DBInstances
- The number of DB instances per account. The used value is the count of the DB instances in the account.
Amazon RDS DB instances, Amazon Aurora DB instances, Amazon Neptune instances, and Amazon DocumentDB instances apply to this quota.
-
DBParameterGroups
- The number of DB parameter groups per account, excluding default parameter groups. The used value is the count of nondefault DB parameter groups in the account.
-
DBSecurityGroups
- The number of DB security groups (not VPC security groups) per account, excluding the default security group. The used value is the count of nondefault DB security groups in the account.
-
DBSubnetGroups
- The number of DB subnet groups per account. The used value is the count of the DB subnet groups in the account.
-
EventSubscriptions
- The number of event subscriptions per account. The used value is the count of the event subscriptions in the account.
-
ManualSnapshots
- The number of manual DB snapshots per account. The used value is the count of the manual DB snapshots in the account.
-
OptionGroups
- The number of DB option groups per account, excluding default option groups. The used value is the count of nondefault DB option groups in the account.
-
ReadReplicasPerMaster
- The number of read replicas per DB instance. The used value is the highest number of read replicas for a DB instance in the account. Other DB instances in the account might have a lower number of read replicas.
-
ReservedDBInstances
- The number of reserved DB instances per account. The used value is the count of the active reserved DB instances in the account.
-
SubnetsPerDBSubnetGroup
- The number of subnets per DB subnet group. The used value is highest number of subnets for a DB subnet group in the account. Other DB subnet groups in the account might have a lower number of subnets.
For more information, see Quotas for Amazon RDS in the Amazon RDS User Guide and Quotas for Amazon Aurora in the Amazon Aurora User Guide.
",
"wrapper":true
},
"AccountQuotaList":{
@@ -2955,7 +2955,7 @@
},
"PreSignedUrl":{
"shape":"String",
- "documentation":"The URL that contains a Signature Version 4 signed request for the CopyDBClusterSnapshot
API action in the AWS Region that contains the source DB cluster snapshot to copy. The PreSignedUrl
parameter must be used when copying an encrypted DB cluster snapshot from another AWS Region. Don't specify PreSignedUrl
when you are copying an encrypted DB cluster snapshot in the same AWS Region.
The pre-signed URL must be a valid request for the CopyDBSClusterSnapshot
API action that can be executed in the source AWS Region that contains the encrypted DB cluster snapshot to be copied. The pre-signed URL request must contain the following parameter values:
-
KmsKeyId
- The AWS KMS key identifier for the key to use to encrypt the copy of the DB cluster snapshot in the destination AWS Region. This is the same identifier for both the CopyDBClusterSnapshot
action that is called in the destination AWS Region, and the action contained in the pre-signed URL.
-
DestinationRegion
- The name of the AWS Region that the DB cluster snapshot is to be created in.
-
SourceDBClusterSnapshotIdentifier
- The DB cluster snapshot identifier for the encrypted DB cluster snapshot to be copied. This identifier must be in the Amazon Resource Name (ARN) format for the source AWS Region. For example, if you are copying an encrypted DB cluster snapshot from the us-west-2 AWS Region, then your SourceDBClusterSnapshotIdentifier
looks like the following example: arn:aws:rds:us-west-2:123456789012:cluster-snapshot:aurora-cluster1-snapshot-20161115
.
To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (AWS Signature Version 4) and Signature Version 4 Signing Process.
If you are using an AWS SDK tool or the AWS CLI, you can specify SourceRegion
(or --source-region
for the AWS CLI) instead of specifying PreSignedUrl
manually. Specifying SourceRegion
autogenerates a pre-signed URL that is a valid request for the operation that can be executed in the source AWS Region.
"
+ "documentation":"The URL that contains a Signature Version 4 signed request for the CopyDBClusterSnapshot
API action in the AWS Region that contains the source DB cluster snapshot to copy. The PreSignedUrl
parameter must be used when copying an encrypted DB cluster snapshot from another AWS Region. Don't specify PreSignedUrl
when you are copying an encrypted DB cluster snapshot in the same AWS Region.
The pre-signed URL must be a valid request for the CopyDBClusterSnapshot
API action that can be executed in the source AWS Region that contains the encrypted DB cluster snapshot to be copied. The pre-signed URL request must contain the following parameter values:
-
KmsKeyId
- The AWS KMS key identifier for the key to use to encrypt the copy of the DB cluster snapshot in the destination AWS Region. This is the same identifier for both the CopyDBClusterSnapshot
action that is called in the destination AWS Region, and the action contained in the pre-signed URL.
-
DestinationRegion
- The name of the AWS Region that the DB cluster snapshot is to be created in.
-
SourceDBClusterSnapshotIdentifier
- The DB cluster snapshot identifier for the encrypted DB cluster snapshot to be copied. This identifier must be in the Amazon Resource Name (ARN) format for the source AWS Region. For example, if you are copying an encrypted DB cluster snapshot from the us-west-2 AWS Region, then your SourceDBClusterSnapshotIdentifier
looks like the following example: arn:aws:rds:us-west-2:123456789012:cluster-snapshot:aurora-cluster1-snapshot-20161115
.
To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (AWS Signature Version 4) and Signature Version 4 Signing Process.
If you are using an AWS SDK tool or the AWS CLI, you can specify SourceRegion
(or --source-region
for the AWS CLI) instead of specifying PreSignedUrl
manually. Specifying SourceRegion
autogenerates a pre-signed URL that is a valid request for the operation that can be executed in the source AWS Region.
"
},
"CopyTags":{
"shape":"BooleanOptional",
@@ -3208,7 +3208,7 @@
},
"ReplicationSourceIdentifier":{
"shape":"String",
- "documentation":"The Amazon Resource Name (ARN) of the source DB instance or DB cluster if this DB cluster is created as a Read Replica.
"
+ "documentation":"The Amazon Resource Name (ARN) of the source DB instance or DB cluster if this DB cluster is created as a read replica.
"
},
"Tags":{
"shape":"TagList",
@@ -3220,11 +3220,11 @@
},
"KmsKeyId":{
"shape":"String",
- "documentation":"The AWS KMS key identifier for an encrypted DB cluster.
The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a DB cluster with the same AWS account that owns the KMS encryption key used to encrypt the new DB cluster, then you can use the KMS key alias instead of the ARN for the KMS encryption key.
If an encryption key isn't specified in KmsKeyId
:
-
If ReplicationSourceIdentifier
identifies an encrypted source, then Amazon RDS will use the encryption key used to encrypt the source. Otherwise, Amazon RDS will use your default encryption key.
-
If the StorageEncrypted
parameter is enabled and ReplicationSourceIdentifier
isn't specified, then Amazon RDS will use 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 Read Replica of an encrypted DB 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 Read Replica in that AWS Region.
"
+ "documentation":"The AWS KMS key identifier for an encrypted DB cluster.
The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a DB cluster with the same AWS account that owns the KMS encryption key used to encrypt the new DB cluster, then you can use the KMS key alias instead of the ARN for the KMS encryption key.
If an encryption key isn't specified in KmsKeyId
:
-
If ReplicationSourceIdentifier
identifies an encrypted source, then Amazon RDS will use the encryption key used to encrypt the source. Otherwise, Amazon RDS will use your default encryption key.
-
If the StorageEncrypted
parameter is enabled and ReplicationSourceIdentifier
isn't specified, then Amazon RDS will use 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 read replica of an encrypted DB 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 read replica in that AWS Region.
"
},
"PreSignedUrl":{
"shape":"String",
- "documentation":"A URL that contains a Signature Version 4 signed request for the CreateDBCluster
action to be called in the source AWS Region where the DB cluster is replicated from. You only need to specify PreSignedUrl
when you are performing cross-region replication from an encrypted DB cluster.
The pre-signed URL must be a valid request for the CreateDBCluster
API action that can be executed in the source AWS Region that contains the encrypted DB cluster to be copied.
The pre-signed URL request must contain the following parameter values:
-
KmsKeyId
- The AWS KMS key identifier for the key to use to encrypt the copy of the DB cluster in the destination AWS Region. This should refer to the same KMS key for both the CreateDBCluster
action that is called in the destination AWS Region, and the action contained in the pre-signed URL.
-
DestinationRegion
- The name of the AWS Region that Aurora Read Replica will be created in.
-
ReplicationSourceIdentifier
- The DB cluster identifier for the encrypted DB cluster to be copied. This identifier must be in the Amazon Resource Name (ARN) format for the source AWS Region. For example, if you are copying an encrypted DB cluster from the us-west-2 AWS Region, then your ReplicationSourceIdentifier
would look like Example: arn:aws:rds:us-west-2:123456789012:cluster:aurora-cluster1
.
To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (AWS Signature Version 4) and Signature Version 4 Signing Process.
If you are using an AWS SDK tool or the AWS CLI, you can specify SourceRegion
(or --source-region
for the AWS CLI) instead of specifying PreSignedUrl
manually. Specifying SourceRegion
autogenerates a pre-signed URL that is a valid request for the operation that can be executed in the source AWS Region.
"
+ "documentation":"A URL that contains a Signature Version 4 signed request for the CreateDBCluster
action to be called in the source AWS Region where the DB cluster is replicated from. You only need to specify PreSignedUrl
when you are performing cross-region replication from an encrypted DB cluster.
The pre-signed URL must be a valid request for the CreateDBCluster
API action that can be executed in the source AWS Region that contains the encrypted DB cluster to be copied.
The pre-signed URL request must contain the following parameter values:
-
KmsKeyId
- The AWS KMS key identifier for the key to use to encrypt the copy of the DB cluster in the destination AWS Region. This should refer to the same KMS key for both the CreateDBCluster
action that is called in the destination AWS Region, and the action contained in the pre-signed URL.
-
DestinationRegion
- The name of the AWS Region that Aurora read replica will be created in.
-
ReplicationSourceIdentifier
- The DB cluster identifier for the encrypted DB cluster to be copied. This identifier must be in the Amazon Resource Name (ARN) format for the source AWS Region. For example, if you are copying an encrypted DB cluster from the us-west-2 AWS Region, then your ReplicationSourceIdentifier
would look like Example: arn:aws:rds:us-west-2:123456789012:cluster:aurora-cluster1
.
To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (AWS Signature Version 4) and Signature Version 4 Signing Process.
If you are using an AWS SDK tool or the AWS CLI, you can specify SourceRegion
(or --source-region
for the AWS CLI) instead of specifying PreSignedUrl
manually. Specifying SourceRegion
autogenerates a pre-signed URL that is a valid request for the operation that can be executed in the source AWS Region.
"
},
"EnableIAMDatabaseAuthentication":{
"shape":"BooleanOptional",
@@ -3240,7 +3240,7 @@
},
"EngineMode":{
"shape":"String",
- "documentation":"The DB engine mode of the DB cluster, either provisioned
, serverless
, parallelquery
, global
, or multimaster
.
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
.
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:
"
},
"ScalingConfiguration":{
"shape":"ScalingConfiguration",
@@ -3264,7 +3264,7 @@
},
"Domain":{
"shape":"String",
- "documentation":"The Active Directory directory ID to create the DB cluster in.
For Amazon Aurora DB clusters, Amazon RDS can use Kerberos Authentication to authenticate users that connect to the DB cluster. For more information, see Using Kerberos Authentication for Aurora MySQL in the Amazon Aurora User Guide.
"
+ "documentation":"The Active Directory directory ID to create the DB cluster in.
For Amazon Aurora DB clusters, Amazon RDS can use Kerberos Authentication to authenticate users that connect to the DB cluster. For more information, see Kerberos Authentication in the Amazon Aurora User Guide.
"
},
"DomainIAMRoleName":{
"shape":"String",
@@ -3402,7 +3402,7 @@
},
"BackupRetentionPeriod":{
"shape":"IntegerOptional",
- "documentation":"The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups.
Amazon Aurora
Not applicable. The retention period for automated backups is managed by the DB cluster.
Default: 1
Constraints:
"
+ "documentation":"The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups.
Amazon Aurora
Not applicable. The retention period for automated backups is managed by the DB cluster.
Default: 1
Constraints:
"
},
"PreferredBackupWindow":{
"shape":"String",
@@ -3410,7 +3410,7 @@
},
"Port":{
"shape":"IntegerOptional",
- "documentation":"The port number on which the database accepts connections.
MySQL
Default: 3306
Valid Values: 1150-65535
Type: Integer
MariaDB
Default: 3306
Valid Values: 1150-65535
Type: Integer
PostgreSQL
Default: 5432
Valid Values: 1150-65535
Type: Integer
Oracle
Default: 1521
Valid Values: 1150-65535
SQL Server
Default: 1433
Valid Values: 1150-65535
except for 1434
, 3389
, 47001
, 49152
, and 49152
through 49156
.
Amazon Aurora
Default: 3306
Valid Values: 1150-65535
Type: Integer
"
+ "documentation":"The port number on which the database accepts connections.
MySQL
Default: 3306
Valid values: 1150-65535
Type: Integer
MariaDB
Default: 3306
Valid values: 1150-65535
Type: Integer
PostgreSQL
Default: 5432
Valid values: 1150-65535
Type: Integer
Oracle
Default: 1521
Valid values: 1150-65535
SQL Server
Default: 1433
Valid values: 1150-65535
except 1234
, 1434
, 3260
, 3343
, 3389
, 47001
, and 49152-49156
.
Amazon Aurora
Default: 3306
Valid values: 1150-65535
Type: Integer
"
},
"MultiAZ":{
"shape":"BooleanOptional",
@@ -3474,7 +3474,7 @@
},
"Domain":{
"shape":"String",
- "documentation":"The Active Directory directory ID to create the DB instance in. Currently, only Microsoft SQL Server and Oracle DB instances can be created in an Active Directory Domain.
For Microsoft SQL Server DB instances, Amazon RDS can use Windows Authentication to authenticate users that connect to the DB instance. For more information, see Using Windows Authentication with an Amazon RDS DB Instance Running Microsoft SQL Server in the Amazon RDS User Guide.
For Oracle DB instance, Amazon RDS can use Kerberos Authentication to authenticate users that connect to the DB instance. For more information, see Using Kerberos Authentication with Amazon RDS for Oracle in the Amazon RDS User Guide.
"
+ "documentation":"The Active Directory directory ID to create the DB instance in. Currently, only Microsoft SQL Server and Oracle DB instances can be created in an Active Directory Domain.
For Microsoft SQL Server DB instances, Amazon RDS can use Windows Authentication to authenticate users that connect to the DB instance. For more information, see Using Windows Authentication with an Amazon RDS DB Instance Running Microsoft SQL Server in the Amazon RDS User Guide.
For Oracle DB instances, Amazon RDS can use Kerberos Authentication to authenticate users that connect to the DB instance. For more information, see Using Kerberos Authentication with Amazon RDS for Oracle in the Amazon RDS User Guide.
"
},
"CopyTagsToSnapshot":{
"shape":"BooleanOptional",
@@ -3544,19 +3544,19 @@
"members":{
"DBInstanceIdentifier":{
"shape":"String",
- "documentation":"The DB instance identifier of the Read Replica. This identifier is the unique key that identifies a DB instance. This parameter is stored as a lowercase string.
"
+ "documentation":"The DB instance identifier of the read replica. This identifier is the unique key that identifies a DB instance. This parameter is stored as a lowercase string.
"
},
"SourceDBInstanceIdentifier":{
"shape":"String",
- "documentation":"The identifier of the DB instance that will act as the source for the Read Replica. Each DB instance can have up to five Read Replicas.
Constraints:
-
Must be the identifier of an existing MySQL, MariaDB, Oracle, or PostgreSQL DB instance.
-
Can specify a DB instance that is a MySQL Read Replica only if the source is running MySQL 5.6 or later.
-
For the limitations of Oracle Read Replicas, see Read Replica Limitations with Oracle in the Amazon RDS User Guide.
-
Can specify a DB instance that is a PostgreSQL DB instance only if the source is running PostgreSQL 9.3.5 or later (9.4.7 and higher for cross-region replication).
-
The specified DB instance must have automatic backups enabled, its backup retention period must be greater than 0.
-
If the source DB instance is in the same AWS Region as the Read Replica, specify a valid DB instance identifier.
-
If the source DB instance is in a different AWS Region than the Read Replica, specify a valid DB instance ARN. For more information, go to Constructing an ARN for Amazon RDS in the Amazon RDS User Guide.
"
+ "documentation":"The identifier of the DB instance that will act as the source for the read replica. Each DB instance can have up to five read replicas.
Constraints:
-
Must be the identifier of an existing MySQL, MariaDB, Oracle, PostgreSQL, or SQL Server DB instance.
-
Can specify a DB instance that is a MySQL read replica only if the source is running MySQL 5.6 or later.
-
For the limitations of Oracle read replicas, see Read Replica Limitations with Oracle in the Amazon RDS User Guide.
-
For the limitations of SQL Server read replicas, see Read Replica Limitations with Microsoft SQL Server in the Amazon RDS User Guide.
-
Can specify a PostgreSQL DB instance only if the source is running PostgreSQL 9.3.5 or later (9.4.7 and higher for cross-region replication).
-
The specified DB instance must have automatic backups enabled, that is, its backup retention period must be greater than 0.
-
If the source DB instance is in the same AWS Region as the read replica, specify a valid DB instance identifier.
-
If the source DB instance is in a different AWS Region from the read replica, specify a valid DB instance ARN. For more information, see Constructing an ARN for Amazon RDS in the Amazon RDS User Guide. This doesn't apply to SQL Server, which doesn't support cross-region replicas.
"
},
"DBInstanceClass":{
"shape":"String",
- "documentation":"The compute and memory capacity of the Read Replica, for example, db.m4.large
. Not all DB instance classes are available in all AWS Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB Instance Class in the Amazon RDS User Guide.
Default: Inherits from the source DB instance.
"
+ "documentation":"The compute and memory capacity of the read replica, for example, db.m4.large
. Not all DB instance classes are available in all AWS Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB Instance Class in the Amazon RDS User Guide.
Default: Inherits from the source DB instance.
"
},
"AvailabilityZone":{
"shape":"String",
- "documentation":"The Availability Zone (AZ) where the Read Replica will be created.
Default: A random, system-chosen Availability Zone in the endpoint's AWS Region.
Example: us-east-1d
"
+ "documentation":"The Availability Zone (AZ) where the read replica will be created.
Default: A random, system-chosen Availability Zone in the endpoint's AWS Region.
Example: us-east-1d
"
},
"Port":{
"shape":"IntegerOptional",
@@ -3564,11 +3564,11 @@
},
"MultiAZ":{
"shape":"BooleanOptional",
- "documentation":"A value that indicates whether the Read Replica is in a Multi-AZ deployment.
You can create a Read Replica as a Multi-AZ DB instance. RDS creates a standby of your replica in another Availability Zone for failover support for the replica. Creating your Read Replica as a Multi-AZ DB instance is independent of whether the source database is a Multi-AZ DB instance.
"
+ "documentation":"A value that indicates whether the read replica is in a Multi-AZ deployment.
You can create a read replica as a Multi-AZ DB instance. RDS creates a standby of your replica in another Availability Zone for failover support for the replica. Creating your read replica as a Multi-AZ DB instance is independent of whether the source database is a Multi-AZ DB instance.
"
},
"AutoMinorVersionUpgrade":{
"shape":"BooleanOptional",
- "documentation":"A value that indicates whether minor engine upgrades are applied automatically to the Read Replica during the maintenance window.
Default: Inherits from the source DB instance
"
+ "documentation":"A value that indicates whether minor engine upgrades are applied automatically to the read replica during the maintenance window.
Default: Inherits from the source DB instance
"
},
"Iops":{
"shape":"IntegerOptional",
@@ -3576,11 +3576,11 @@
},
"OptionGroupName":{
"shape":"String",
- "documentation":"The option group the DB instance is associated with. If omitted, the option group associated with the source instance is used.
"
+ "documentation":"The option group the DB instance is associated with. If omitted, the option group associated with the source instance is used.
For SQL Server, you must use the option group associated with the source instance.
"
},
"DBParameterGroupName":{
"shape":"String",
- "documentation":"The name of the DB parameter group to associate with this DB instance.
If you do not specify a value for DBParameterGroupName
, then Amazon RDS uses the DBParameterGroup
of source DB instance for a same region Read Replica, or the default DBParameterGroup
for the specified DB engine for a cross region Read Replica.
Currently, specifying a parameter group for this operation is only supported for Oracle DB instances.
Constraints:
-
Must be 1 to 255 letters, numbers, or hyphens.
-
First character must be a letter
-
Can't end with a hyphen or contain two consecutive hyphens
"
+ "documentation":"The name of the DB parameter group to associate with this DB instance.
If you do not specify a value for DBParameterGroupName
, then Amazon RDS uses the DBParameterGroup
of source DB instance for a same region read replica, or the default DBParameterGroup
for the specified DB engine for a cross region read replica.
Currently, specifying a parameter group for this operation is only supported for Oracle DB instances.
Constraints:
-
Must be 1 to 255 letters, numbers, or hyphens.
-
First character must be a letter
-
Can't end with a hyphen or contain two consecutive hyphens
"
},
"PubliclyAccessible":{
"shape":"BooleanOptional",
@@ -3589,23 +3589,23 @@
"Tags":{"shape":"TagList"},
"DBSubnetGroupName":{
"shape":"String",
- "documentation":"Specifies a DB subnet group for the DB instance. The new DB instance is created in the VPC associated with the DB subnet group. If no DB subnet group is specified, then the new DB instance isn't created in a VPC.
Constraints:
-
Can only be specified if the source DB instance identifier specifies a DB instance in another AWS Region.
-
If supplied, must match the name of an existing DBSubnetGroup.
-
The specified DB subnet group must be in the same AWS Region in which the operation is running.
-
All Read Replicas in one AWS Region that are created from the same source DB instance must either:>
Example: mySubnetgroup
"
+ "documentation":"Specifies a DB subnet group for the DB instance. The new DB instance is created in the VPC associated with the DB subnet group. If no DB subnet group is specified, then the new DB instance isn't created in a VPC.
Constraints:
-
Can only be specified if the source DB instance identifier specifies a DB instance in another AWS Region.
-
If supplied, must match the name of an existing DBSubnetGroup.
-
The specified DB subnet group must be in the same AWS Region in which the operation is running.
-
All read replicas in one AWS Region that are created from the same source DB instance must either:>
Example: mySubnetgroup
"
},
"VpcSecurityGroupIds":{
"shape":"VpcSecurityGroupIdList",
- "documentation":" A list of EC2 VPC security groups to associate with the Read Replica.
Default: The default EC2 VPC security group for the DB subnet group's VPC.
"
+ "documentation":" A list of EC2 VPC security groups to associate with the read replica.
Default: The default EC2 VPC security group for the DB subnet group's VPC.
"
},
"StorageType":{
"shape":"String",
- "documentation":"Specifies the storage type to be associated with the Read Replica.
Valid values: standard | gp2 | io1
If you specify io1
, you must also include a value for the Iops
parameter.
Default: io1
if the Iops
parameter is specified, otherwise gp2
"
+ "documentation":"Specifies the storage type to be associated with the read replica.
Valid values: standard | gp2 | io1
If you specify io1
, you must also include a value for the Iops
parameter.
Default: io1
if the Iops
parameter is specified, otherwise gp2
"
},
"CopyTagsToSnapshot":{
"shape":"BooleanOptional",
- "documentation":"A value that indicates whether to copy all tags from the Read Replica to snapshots of the Read Replica. By default, tags are not copied.
"
+ "documentation":"A value that indicates whether to copy all tags from the read replica to snapshots of the read replica. By default, tags are not copied.
"
},
"MonitoringInterval":{
"shape":"IntegerOptional",
- "documentation":"The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the Read Replica. To disable collecting Enhanced Monitoring metrics, specify 0. The default is 0.
If MonitoringRoleArn
is specified, then you must also set MonitoringInterval
to a value other than 0.
Valid Values: 0, 1, 5, 10, 15, 30, 60
"
+ "documentation":"The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the read replica. To disable collecting Enhanced Monitoring metrics, specify 0. The default is 0.
If MonitoringRoleArn
is specified, then you must also set MonitoringInterval
to a value other than 0.
Valid Values: 0, 1, 5, 10, 15, 30, 60
"
},
"MonitoringRoleArn":{
"shape":"String",
@@ -3613,11 +3613,11 @@
},
"KmsKeyId":{
"shape":"String",
- "documentation":"The AWS KMS key ID for an encrypted Read Replica. The KMS key ID is the Amazon Resource Name (ARN), KMS key identifier, or the KMS key alias for the KMS encryption key.
If you create an encrypted Read Replica in the same AWS Region as the source DB instance, then you do not have to specify a value for this parameter. The Read Replica is encrypted with the same KMS key as the source DB instance.
If you create an encrypted Read Replica in a different AWS Region, then you must specify a KMS key for the destination AWS Region. KMS encryption keys are specific to the AWS Region that they are created in, and you can't use encryption keys from one AWS Region in another AWS Region.
You can't create an encrypted Read Replica from an unencrypted DB instance.
"
+ "documentation":"The AWS KMS key ID for an encrypted read replica. The KMS key ID is the Amazon Resource Name (ARN), KMS key identifier, or the KMS key alias for the KMS encryption key.
If you create an encrypted read replica in the same AWS Region as the source DB instance, then you do not have to specify a value for this parameter. The read replica is encrypted with the same KMS key as the source DB instance.
If you create an encrypted read replica in a different AWS Region, then you must specify a KMS key for the destination AWS Region. KMS encryption keys are specific to the AWS Region that they are created in, and you can't use encryption keys from one AWS Region in another AWS Region.
You can't create an encrypted read replica from an unencrypted DB instance.
"
},
"PreSignedUrl":{
"shape":"String",
- "documentation":"The URL that contains a Signature Version 4 signed request for the CreateDBInstanceReadReplica
API action in the source AWS Region that contains the source DB instance.
You must specify this parameter when you create an encrypted Read Replica from another AWS Region by using the Amazon RDS API. Don't specify PreSignedUrl
when you are creating an encrypted Read Replica in the same AWS Region.
The presigned URL must be a valid request for the CreateDBInstanceReadReplica
API action that can be executed in the source AWS Region that contains the encrypted source DB instance. The presigned URL request must contain the following parameter values:
-
DestinationRegion
- The AWS Region that the encrypted Read Replica is created in. This AWS Region is the same one where the CreateDBInstanceReadReplica
action is called that contains this presigned URL.
For example, if you create an encrypted DB instance in the us-west-1 AWS Region, from a source DB instance in the us-east-2 AWS Region, then you call the CreateDBInstanceReadReplica
action in the us-east-1 AWS Region and provide a presigned URL that contains a call to the CreateDBInstanceReadReplica
action in the us-west-2 AWS Region. For this example, the DestinationRegion
in the presigned URL must be set to the us-east-1 AWS Region.
-
KmsKeyId
- The AWS KMS key identifier for the key to use to encrypt the Read Replica in the destination AWS Region. This is the same identifier for both the CreateDBInstanceReadReplica
action that is called in the destination AWS Region, and the action contained in the presigned URL.
-
SourceDBInstanceIdentifier
- The DB instance identifier for the encrypted DB instance to be replicated. This identifier must be in the Amazon Resource Name (ARN) format for the source AWS Region. For example, if you are creating an encrypted Read Replica from a DB instance in the us-west-2 AWS Region, then your SourceDBInstanceIdentifier
looks like the following example: arn:aws:rds:us-west-2:123456789012:instance:mysql-instance1-20161115
.
To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (AWS Signature Version 4) and Signature Version 4 Signing Process.
If you are using an AWS SDK tool or the AWS CLI, you can specify SourceRegion
(or --source-region
for the AWS CLI) instead of specifying PreSignedUrl
manually. Specifying SourceRegion
autogenerates a pre-signed URL that is a valid request for the operation that can be executed in the source AWS Region.
"
+ "documentation":"The URL that contains a Signature Version 4 signed request for the CreateDBInstanceReadReplica
API action in the source AWS Region that contains the source DB instance.
You must specify this parameter when you create an encrypted read replica from another AWS Region by using the Amazon RDS API. Don't specify PreSignedUrl
when you are creating an encrypted read replica in the same AWS Region.
The presigned URL must be a valid request for the CreateDBInstanceReadReplica
API action that can be executed in the source AWS Region that contains the encrypted source DB instance. The presigned URL request must contain the following parameter values:
-
DestinationRegion
- The AWS Region that the encrypted read replica is created in. This AWS Region is the same one where the CreateDBInstanceReadReplica
action is called that contains this presigned URL.
For example, if you create an encrypted DB instance in the us-west-1 AWS Region, from a source DB instance in the us-east-2 AWS Region, then you call the CreateDBInstanceReadReplica
action in the us-east-1 AWS Region and provide a presigned URL that contains a call to the CreateDBInstanceReadReplica
action in the us-west-2 AWS Region. For this example, the DestinationRegion
in the presigned URL must be set to the us-east-1 AWS Region.
-
KmsKeyId
- The AWS KMS key identifier for the key to use to encrypt the read replica in the destination AWS Region. This is the same identifier for both the CreateDBInstanceReadReplica
action that is called in the destination AWS Region, and the action contained in the presigned URL.
-
SourceDBInstanceIdentifier
- The DB instance identifier for the encrypted DB instance to be replicated. This identifier must be in the Amazon Resource Name (ARN) format for the source AWS Region. For example, if you are creating an encrypted read replica from a DB instance in the us-west-2 AWS Region, then your SourceDBInstanceIdentifier
looks like the following example: arn:aws:rds:us-west-2:123456789012:instance:mysql-instance1-20161115
.
To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (AWS Signature Version 4) and Signature Version 4 Signing Process.
If you are using an AWS SDK tool or the AWS CLI, you can specify SourceRegion
(or --source-region
for the AWS CLI) instead of specifying PreSignedUrl
manually. Specifying SourceRegion
autogenerates a presigned URL that is a valid request for the operation that can be executed in the source AWS Region.
SourceRegion
isn't supported for SQL Server, because SQL Server on Amazon RDS doesn't support cross-region read replicas.
"
},
"EnableIAMDatabaseAuthentication":{
"shape":"BooleanOptional",
@@ -3625,7 +3625,7 @@
},
"EnablePerformanceInsights":{
"shape":"BooleanOptional",
- "documentation":"A value that indicates whether to enable Performance Insights for the Read Replica.
For more information, see Using Amazon Performance Insights in the Amazon RDS User Guide.
"
+ "documentation":"A value that indicates whether to enable Performance Insights for the read replica.
For more information, see Using Amazon Performance Insights in the Amazon RDS User Guide.
"
},
"PerformanceInsightsKMSKeyId":{
"shape":"String",
@@ -3653,7 +3653,7 @@
},
"Domain":{
"shape":"String",
- "documentation":"The Active Directory directory ID to create the DB instance in.
For Oracle DB instances, Amazon RDS can use Kerberos Authentication to authenticate users that connect to the DB instance. For more information, see Using Kerberos Authentication with Amazon RDS for Oracle in the Amazon RDS User Guide.
"
+ "documentation":"The Active Directory directory ID to create the DB instance in.
For Oracle DB instances, Amazon RDS can use Kerberos Authentication to authenticate users that connect to the DB instance. For more information, see Using Kerberos Authentication with Amazon RDS for Oracle in the Amazon RDS User Guide.
For Microsoft SQL Server DB instances, Amazon RDS can use Windows Authentication to authenticate users that connect to the DB instance. For more information, see Using Windows Authentication with an Amazon RDS DB Instance Running Microsoft SQL Server in the Amazon RDS User Guide.
"
},
"DomainIAMRoleName":{
"shape":"String",
@@ -4147,11 +4147,11 @@
},
"ReplicationSourceIdentifier":{
"shape":"String",
- "documentation":"Contains the identifier of the source DB cluster if this DB cluster is a Read Replica.
"
+ "documentation":"Contains the identifier of the source DB cluster if this DB cluster is a read replica.
"
},
"ReadReplicaIdentifiers":{
"shape":"ReadReplicaIdentifierList",
- "documentation":"Contains one or more identifiers of the Read Replicas associated with this DB cluster.
"
+ "documentation":"Contains one or more identifiers of the read replicas associated with this DB cluster.
"
},
"DBClusterMembers":{
"shape":"DBClusterMemberList",
@@ -4219,7 +4219,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
.
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
.
"
},
"ScalingConfigurationInfo":{"shape":"ScalingConfigurationInfo"},
"DeletionProtection":{
@@ -4918,11 +4918,11 @@
},
"SupportsReadReplica":{
"shape":"Boolean",
- "documentation":"Indicates whether the database engine version supports Read Replicas.
"
+ "documentation":"Indicates whether the database engine version supports read replicas.
"
},
"SupportedEngineModes":{
"shape":"EngineModeList",
- "documentation":"A list of the supported DB engine modes.
"
+ "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.
"
},
"SupportedFeatureNames":{
"shape":"FeatureNameList",
@@ -4973,7 +4973,7 @@
},
"DBInstanceStatus":{
"shape":"String",
- "documentation":"Specifies the current state of this database.
"
+ "documentation":"Specifies the current state of this database.
For information about DB instance statuses, see DB Instance Status in the Amazon RDS User Guide.
"
},
"MasterUsername":{
"shape":"String",
@@ -5049,15 +5049,15 @@
},
"ReadReplicaSourceDBInstanceIdentifier":{
"shape":"String",
- "documentation":"Contains the identifier of the source DB instance if this DB instance is a Read Replica.
"
+ "documentation":"Contains the identifier of the source DB instance if this DB instance is a read replica.
"
},
"ReadReplicaDBInstanceIdentifiers":{
"shape":"ReadReplicaDBInstanceIdentifierList",
- "documentation":"Contains one or more identifiers of the Read Replicas associated with this DB instance.
"
+ "documentation":"Contains one or more identifiers of the read replicas associated with this DB instance.
"
},
"ReadReplicaDBClusterIdentifiers":{
"shape":"ReadReplicaDBClusterIdentifierList",
- "documentation":"Contains one or more identifiers of Aurora DB clusters to which the RDS DB instance is replicated as a Read Replica. For example, when you create an Aurora Read Replica of an RDS MySQL DB instance, the Aurora MySQL DB cluster for the Aurora Read Replica is shown. This output does not contain information about cross region Aurora Read Replicas.
Currently, each RDS DB instance can have only one Aurora Read Replica.
"
+ "documentation":"Contains one or more identifiers of Aurora DB clusters to which the RDS DB instance is replicated as a read replica. For example, when you create an Aurora read replica of an RDS MySQL DB instance, the Aurora MySQL DB cluster for the Aurora read replica is shown. This output does not contain information about cross region Aurora read replicas.
Currently, each RDS DB instance can have only one Aurora read replica.
"
},
"LicenseModel":{
"shape":"String",
@@ -5085,7 +5085,7 @@
},
"StatusInfos":{
"shape":"DBInstanceStatusInfoList",
- "documentation":"The status of a Read Replica. If the instance isn't a Read Replica, this is blank.
"
+ "documentation":"The status of a read replica. If the instance isn't a read replica, this is blank.
"
},
"StorageType":{
"shape":"String",
@@ -5458,7 +5458,7 @@
},
"Status":{
"shape":"String",
- "documentation":"Status of the DB instance. For a StatusType of Read Replica, the values can be replicating, replication stop point set, replication stop point reached, error, stopped, or terminated.
"
+ "documentation":"Status of the DB instance. For a StatusType of read replica, the values can be replicating, replication stop point set, replication stop point reached, error, stopped, or terminated.
"
},
"Message":{
"shape":"String",
@@ -6403,11 +6403,11 @@
},
"SkipFinalSnapshot":{
"shape":"Boolean",
- "documentation":"A value that indicates whether to skip the creation of a final DB snapshot before the DB instance is deleted. If skip is specified, no DB snapshot is created. If skip isn't specified, a DB snapshot is created before the DB instance is deleted. By default, skip isn't specified, and the DB snapshot is created.
When a DB instance is in a failure state and has a status of 'failed', 'incompatible-restore', or 'incompatible-network', it can only be deleted when skip is specified.
Specify skip when deleting a Read Replica.
The FinalDBSnapshotIdentifier parameter must be specified if skip isn't specified.
"
+ "documentation":"A value that indicates whether to skip the creation of a final DB snapshot before the DB instance is deleted. If skip is specified, no DB snapshot is created. If skip isn't specified, a DB snapshot is created before the DB instance is deleted. By default, skip isn't specified, and the DB snapshot is created.
When a DB instance is in a failure state and has a status of 'failed', 'incompatible-restore', or 'incompatible-network', it can only be deleted when skip is specified.
Specify skip when deleting a read replica.
The FinalDBSnapshotIdentifier parameter must be specified if skip isn't specified.
"
},
"FinalDBSnapshotIdentifier":{
"shape":"String",
- "documentation":" The DBSnapshotIdentifier
of the new DBSnapshot
created when the SkipFinalSnapshot
parameter is disabled.
Specifying this parameter and also specifying to skip final DB snapshot creation in SkipFinalShapshot results in an error.
Constraints:
-
Must be 1 to 255 letters or numbers.
-
First character must be a letter.
-
Can't end with a hyphen or contain two consecutive hyphens.
-
Can't be specified when deleting a Read Replica.
"
+ "documentation":" The DBSnapshotIdentifier
of the new DBSnapshot
created when the SkipFinalSnapshot
parameter is disabled.
Specifying this parameter and also specifying to skip final DB snapshot creation in SkipFinalShapshot results in an error.
Constraints:
-
Must be 1 to 255 letters or numbers.
-
First character must be a letter.
-
Can't end with a hyphen or contain two consecutive hyphens.
-
Can't be specified when deleting a read replica.
"
},
"DeleteAutomatedBackups":{
"shape":"BooleanOptional",
@@ -9159,7 +9159,7 @@
},
"BackupRetentionPeriod":{
"shape":"IntegerOptional",
- "documentation":"The number of days to retain automated backups. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups.
Changing this parameter can result in an outage if you change from 0 to a non-zero value or from a non-zero value to 0. These changes are applied during the next maintenance window unless the ApplyImmediately
parameter is enabled for this request. If you change the parameter from one non-zero value to another non-zero value, the change is asynchronously applied as soon as possible.
Amazon Aurora
Not applicable. The retention period for automated backups is managed by the DB cluster. For more information, see ModifyDBCluster
.
Default: Uses existing setting
Constraints:
-
Must be a value from 0 to 35
-
Can be specified for a MySQL Read Replica only if the source is running MySQL 5.6 or later
-
Can be specified for a PostgreSQL Read Replica only if the source is running PostgreSQL 9.3.5
-
Can't be set to 0 if the DB instance is a source to Read Replicas
"
+ "documentation":"The number of days to retain automated backups. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups.
Changing this parameter can result in an outage if you change from 0 to a non-zero value or from a non-zero value to 0. These changes are applied during the next maintenance window unless the ApplyImmediately
parameter is enabled for this request. If you change the parameter from one non-zero value to another non-zero value, the change is asynchronously applied as soon as possible.
Amazon Aurora
Not applicable. The retention period for automated backups is managed by the DB cluster. For more information, see ModifyDBCluster
.
Default: Uses existing setting
Constraints:
-
Must be a value from 0 to 35
-
Can be specified for a MySQL read replica only if the source is running MySQL 5.6 or later
-
Can be specified for a PostgreSQL read replica only if the source is running PostgreSQL 9.3.5
-
Can't be set to 0 if the DB instance is a source to read replicas
"
},
"PreferredBackupWindow":{
"shape":"String",
@@ -9191,7 +9191,7 @@
},
"Iops":{
"shape":"IntegerOptional",
- "documentation":"The new Provisioned IOPS (I/O operations per second) value for the RDS instance.
Changing this setting doesn't result in an outage and the change is applied during the next maintenance window unless the ApplyImmediately
parameter is enabled for this request. If you are migrating from Provisioned IOPS to standard storage, set this value to 0. The DB instance will require a reboot for the change in storage type to take effect.
If you choose to migrate your DB instance from using standard storage to using Provisioned IOPS, or from using Provisioned IOPS to using standard storage, the process can take time. The duration of the migration depends on several factors such as database load, storage size, storage type (standard or Provisioned IOPS), amount of IOPS provisioned (if any), and the number of prior scale storage operations. Typical migration times are under 24 hours, but the process can take up to several days in some cases. During the migration, the DB instance is available for use, but might experience performance degradation. While the migration takes place, nightly backups for the instance are suspended. No other Amazon RDS operations can take place for the instance, including modifying the instance, rebooting the instance, deleting the instance, creating a Read Replica for the instance, and creating a DB snapshot of the instance.
Constraints: For MariaDB, MySQL, Oracle, and PostgreSQL, the value supplied must be at least 10% greater than the current value. Values that are not at least 10% greater than the existing value are rounded up so that they are 10% greater than the current value.
Default: Uses existing setting
"
+ "documentation":"The new Provisioned IOPS (I/O operations per second) value for the RDS instance.
Changing this setting doesn't result in an outage and the change is applied during the next maintenance window unless the ApplyImmediately
parameter is enabled for this request. If you are migrating from Provisioned IOPS to standard storage, set this value to 0. The DB instance will require a reboot for the change in storage type to take effect.
If you choose to migrate your DB instance from using standard storage to using Provisioned IOPS, or from using Provisioned IOPS to using standard storage, the process can take time. The duration of the migration depends on several factors such as database load, storage size, storage type (standard or Provisioned IOPS), amount of IOPS provisioned (if any), and the number of prior scale storage operations. Typical migration times are under 24 hours, but the process can take up to several days in some cases. During the migration, the DB instance is available for use, but might experience performance degradation. While the migration takes place, nightly backups for the instance are suspended. No other Amazon RDS operations can take place for the instance, including modifying the instance, rebooting the instance, deleting the instance, creating a read replica for the instance, and creating a DB snapshot of the instance.
Constraints: For MariaDB, MySQL, Oracle, and PostgreSQL, the value supplied must be at least 10% greater than the current value. Values that are not at least 10% greater than the existing value are rounded up so that they are 10% greater than the current value.
Default: Uses existing setting
"
},
"OptionGroupName":{
"shape":"String",
@@ -9203,7 +9203,7 @@
},
"StorageType":{
"shape":"String",
- "documentation":"Specifies the storage type to be associated with the DB instance.
If you specify Provisioned IOPS (io1
), you must also include a value for the Iops
parameter.
If you choose to migrate your DB instance from using standard storage to using Provisioned IOPS, or from using Provisioned IOPS to using standard storage, the process can take time. The duration of the migration depends on several factors such as database load, storage size, storage type (standard or Provisioned IOPS), amount of IOPS provisioned (if any), and the number of prior scale storage operations. Typical migration times are under 24 hours, but the process can take up to several days in some cases. During the migration, the DB instance is available for use, but might experience performance degradation. While the migration takes place, nightly backups for the instance are suspended. No other Amazon RDS operations can take place for the instance, including modifying the instance, rebooting the instance, deleting the instance, creating a Read Replica for the instance, and creating a DB snapshot of the instance.
Valid values: standard | gp2 | io1
Default: io1
if the Iops
parameter is specified, otherwise gp2
"
+ "documentation":"Specifies the storage type to be associated with the DB instance.
If you specify Provisioned IOPS (io1
), you must also include a value for the Iops
parameter.
If you choose to migrate your DB instance from using standard storage to using Provisioned IOPS, or from using Provisioned IOPS to using standard storage, the process can take time. The duration of the migration depends on several factors such as database load, storage size, storage type (standard or Provisioned IOPS), amount of IOPS provisioned (if any), and the number of prior scale storage operations. Typical migration times are under 24 hours, but the process can take up to several days in some cases. During the migration, the DB instance is available for use, but might experience performance degradation. While the migration takes place, nightly backups for the instance are suspended. No other Amazon RDS operations can take place for the instance, including modifying the instance, rebooting the instance, deleting the instance, creating a read replica for the instance, and creating a DB snapshot of the instance.
Valid values: standard | gp2 | io1
Default: io1
if the Iops
parameter is specified, otherwise gp2
"
},
"TdeCredentialArn":{
"shape":"String",
@@ -9231,7 +9231,7 @@
},
"DBPortNumber":{
"shape":"IntegerOptional",
- "documentation":"The port number on which the database accepts connections.
The value of the DBPortNumber
parameter must not match any of the port values specified for options in the option group for the DB instance.
Your database will restart when you change the DBPortNumber
value regardless of the value of the ApplyImmediately
parameter.
MySQL
Default: 3306
Valid Values: 1150-65535
MariaDB
Default: 3306
Valid Values: 1150-65535
PostgreSQL
Default: 5432
Valid Values: 1150-65535
Type: Integer
Oracle
Default: 1521
Valid Values: 1150-65535
SQL Server
Default: 1433
Valid Values: 1150-65535
except for 1434
, 3389
, 47001
, 49152
, and 49152
through 49156
.
Amazon Aurora
Default: 3306
Valid Values: 1150-65535
"
+ "documentation":"The port number on which the database accepts connections.
The value of the DBPortNumber
parameter must not match any of the port values specified for options in the option group for the DB instance.
Your database will restart when you change the DBPortNumber
value regardless of the value of the ApplyImmediately
parameter.
MySQL
Default: 3306
Valid values: 1150-65535
MariaDB
Default: 3306
Valid values: 1150-65535
PostgreSQL
Default: 5432
Valid values: 1150-65535
Type: Integer
Oracle
Default: 1521
Valid values: 1150-65535
SQL Server
Default: 1433
Valid values: 1150-65535
except 1234
, 1434
, 3260
, 3343
, 3389
, 47001
, and 49152-49156
.
Amazon Aurora
Default: 3306
Valid values: 1150-65535
"
},
"PubliclyAccessible":{
"shape":"BooleanOptional",
@@ -10028,7 +10028,7 @@
},
"ReadReplicaCapable":{
"shape":"Boolean",
- "documentation":"Indicates whether a DB instance can have a Read Replica.
"
+ "documentation":"Indicates whether a DB instance can have a read replica.
"
},
"Vpc":{
"shape":"Boolean",
@@ -10088,7 +10088,7 @@
},
"SupportedEngineModes":{
"shape":"EngineModeList",
- "documentation":"A list of the supported DB engine modes.
"
+ "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.
"
},
"SupportsStorageAutoscaling":{
"shape":"BooleanOptional",
@@ -10354,7 +10354,7 @@
"members":{
"DBClusterIdentifier":{
"shape":"String",
- "documentation":"The identifier of the DB cluster Read Replica to promote. This parameter isn't case-sensitive.
Constraints:
Example: my-cluster-replica1
"
+ "documentation":"The identifier of the DB cluster read replica to promote. This parameter isn't case-sensitive.
Constraints:
Example: my-cluster-replica1
"
}
},
"documentation":""
@@ -10371,11 +10371,11 @@
"members":{
"DBInstanceIdentifier":{
"shape":"String",
- "documentation":"The DB instance identifier. This value is stored as a lowercase string.
Constraints:
Example: mydbinstance
"
+ "documentation":"The DB instance identifier. This value is stored as a lowercase string.
Constraints:
Example: mydbinstance
"
},
"BackupRetentionPeriod":{
"shape":"IntegerOptional",
- "documentation":"The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups.
Default: 1
Constraints:
"
+ "documentation":"The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups.
Default: 1
Constraints:
"
},
"PreferredBackupWindow":{
"shape":"String",
@@ -11057,7 +11057,7 @@
},
"Domain":{
"shape":"String",
- "documentation":"Specify the Active Directory directory ID to restore the DB cluster in. The domain must be created prior to this operation.
For Amazon Aurora DB clusters, Amazon RDS can use Kerberos Authentication to authenticate users that connect to the DB cluster. For more information, see Using Kerberos Authentication for Aurora MySQL in the Amazon Aurora User Guide.
"
+ "documentation":"Specify the Active Directory directory ID to restore the DB cluster in. The domain must be created prior to this operation.
For Amazon Aurora DB clusters, Amazon RDS can use Kerberos Authentication to authenticate users that connect to the DB cluster. For more information, see Kerberos Authentication in the Amazon Aurora User Guide.
"
},
"DomainIAMRoleName":{
"shape":"String",
@@ -11250,7 +11250,7 @@
},
"Domain":{
"shape":"String",
- "documentation":"Specify the Active Directory directory ID to restore the DB cluster in. The domain must be created prior to this operation.
For Amazon Aurora DB clusters, Amazon RDS can use Kerberos Authentication to authenticate users that connect to the DB cluster. For more information, see Using Kerberos Authentication for Aurora MySQL in the Amazon Aurora User Guide.
"
+ "documentation":"Specify the Active Directory directory ID to restore the DB cluster in. The domain must be created prior to this operation.
For Amazon Aurora DB clusters, Amazon RDS can use Kerberos Authentication to authenticate users that connect to the DB cluster. For more information, see Kerberos Authentication in the Amazon Aurora User Guide.
"
},
"DomainIAMRoleName":{
"shape":"String",
@@ -11928,7 +11928,7 @@
},
"SourceRegions":{
"shape":"SourceRegionList",
- "documentation":"A list of SourceRegion instances that contains each source AWS Region that the current AWS Region can get a Read Replica or a DB snapshot from.
"
+ "documentation":"A list of SourceRegion instances that contains each source AWS Region that the current AWS Region can get a read replica or a DB snapshot from.
"
}
},
"documentation":"Contains the result of a successful invocation of the DescribeSourceRegions
action.
"
From daf9e14191cfe0de4aba86f6299cd50d38ac2f12 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 2 Apr 2020 18:05:52 +0000
Subject: [PATCH 005/604] Amazon CloudWatch Update: Amazon CloudWatch
Contributor Insights adds support for tags and tagging on resource creation.
---
.../feature-AmazonCloudWatch-7e2dbb4.json | 5 ++++
.../codegen-resources/service-2.json | 30 +++++++++++++------
2 files changed, 26 insertions(+), 9 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonCloudWatch-7e2dbb4.json
diff --git a/.changes/next-release/feature-AmazonCloudWatch-7e2dbb4.json b/.changes/next-release/feature-AmazonCloudWatch-7e2dbb4.json
new file mode 100644
index 000000000000..f2513694a2fa
--- /dev/null
+++ b/.changes/next-release/feature-AmazonCloudWatch-7e2dbb4.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon CloudWatch",
+ "description": "Amazon CloudWatch Contributor Insights adds support for tags and tagging on resource creation."
+}
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 913f76e89c4e..db4eb5670cea 100644
--- a/services/cloudwatch/src/main/resources/codegen-resources/service-2.json
+++ b/services/cloudwatch/src/main/resources/codegen-resources/service-2.json
@@ -344,7 +344,7 @@
{"shape":"ResourceNotFoundException"},
{"shape":"InternalServiceFault"}
],
- "documentation":"Displays the tags associated with a CloudWatch resource. Alarms support tagging.
"
+ "documentation":"Displays the tags associated with a CloudWatch resource. Currently, alarms and Contributor Insights rules support tagging.
"
},
"PutAnomalyDetector":{
"name":"PutAnomalyDetector",
@@ -469,7 +469,7 @@
{"shape":"ConcurrentModificationException"},
{"shape":"InternalServiceFault"}
],
- "documentation":"Assigns one or more tags (key-value pairs) to the specified CloudWatch resource. Currently, the only CloudWatch resources that can be tagged are alarms.
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.
Tags don't have any semantic meaning to AWS and are interpreted strictly as strings of characters.
You can use the TagResource
action with an alarm that already has tags. If you specify a new tag key for the alarm, this tag is appended to the list of tags associated with the alarm. If you specify a tag key that is already associated with the alarm, 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.
"
+ "documentation":"Assigns one or more tags (key-value pairs) to the specified CloudWatch resource. Currently, the only CloudWatch resources that can be tagged are alarms and Contributor Insights rules.
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.
Tags don't have any semantic meaning to AWS and are interpreted strictly as strings of characters.
You can use the TagResource
action with an alarm that already has tags. If you specify a new tag key for the alarm, this tag is appended to the list of tags associated with the alarm. If you specify a tag key that is already associated with the alarm, the new tag value that you specify replaces the previous value for that tag.
You can associate as many as 50 tags with a CloudWatch resource.
"
},
"UntagResource":{
"name":"UntagResource",
@@ -594,7 +594,7 @@
"documentation":"The metric dimensions associated with the anomaly detection model.
"
},
"Stat":{
- "shape":"Stat",
+ "shape":"AnomalyDetectorMetricStat",
"documentation":"The statistic associated with the anomaly detection model.
"
},
"Configuration":{
@@ -626,7 +626,15 @@
"type":"list",
"member":{"shape":"Range"}
},
- "AnomalyDetectorMetricTimezone":{"type":"string"},
+ "AnomalyDetectorMetricStat":{
+ "type":"string",
+ "pattern":"(SampleCount|Average|Sum|Minimum|Maximum|p(\\d{1,2}|100)(\\.\\d{0,2})?|[ou]\\d+(\\.\\d*)?)(_E|_L|_H)?"
+ },
+ "AnomalyDetectorMetricTimezone":{
+ "type":"string",
+ "max":50,
+ "pattern":".*"
+ },
"AnomalyDetectorStateValue":{
"type":"string",
"enum":[
@@ -927,7 +935,7 @@
"documentation":"The metric dimensions associated with the anomaly detection model to delete.
"
},
"Stat":{
- "shape":"Stat",
+ "shape":"AnomalyDetectorMetricStat",
"documentation":"The statistic associated with the anomaly detection model to delete.
"
}
}
@@ -1945,7 +1953,7 @@
"members":{
"ResourceARN":{
"shape":"AmazonResourceName",
- "documentation":"The ARN of the CloudWatch resource that you want to view tags for. For more information on ARN format, see Example ARNs in the Amazon Web Services General Reference.
"
+ "documentation":"The ARN of the CloudWatch resource that you want to view tags for.
The ARN format of an alarm is arn:aws:cloudwatch:Region:account-id:alarm:alarm-name
The ARN format of a Contributor Insights rule is arn:aws:cloudwatch:Region:account-id:insight-rule:insight-rule-name
For more information on ARN format, see Resource Types Defined by Amazon CloudWatch in the Amazon Web Services General Reference.
"
}
}
},
@@ -2395,7 +2403,7 @@
"documentation":"The metric dimensions to create the anomaly detection model for.
"
},
"Stat":{
- "shape":"Stat",
+ "shape":"AnomalyDetectorMetricStat",
"documentation":"The statistic to use for the metric and the anomaly detection model.
"
},
"Configuration":{
@@ -2494,6 +2502,10 @@
"RuleDefinition":{
"shape":"InsightRuleDefinition",
"documentation":"The definition of the rule, as a JSON object. For details on the valid syntax, see Contributor Insights Rule Syntax.
"
+ },
+ "Tags":{
+ "shape":"TagList",
+ "documentation":"A list of key-value pairs to associate with the Contributor Insights rule. You can associate as many as 50 tags with a rule.
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 the resources that have certain tag values.
To be able to associate tags with a rule, you must have the cloudwatch:TagResource
permission in addition to the cloudwatch:PutInsightRule
permission.
If you are using this operation to update an existing Contributor Insights rule, any tags you specify in this parameter are ignored. To change the tags of an existing rule, use TagResource.
"
}
}
},
@@ -2863,7 +2875,7 @@
"members":{
"ResourceARN":{
"shape":"AmazonResourceName",
- "documentation":"The ARN of the CloudWatch alarm that you're adding tags to. The ARN format is arn:aws:cloudwatch:Region:account-id:alarm:alarm-name
"
+ "documentation":"The ARN of the CloudWatch resource that you're adding tags to.
The ARN format of an alarm is arn:aws:cloudwatch:Region:account-id:alarm:alarm-name
The ARN format of a Contributor Insights rule is arn:aws:cloudwatch:Region:account-id:insight-rule:insight-rule-name
For more information on ARN format, see Resource Types Defined by Amazon CloudWatch in the Amazon Web Services General Reference.
"
},
"Tags":{
"shape":"TagList",
@@ -2901,7 +2913,7 @@
"members":{
"ResourceARN":{
"shape":"AmazonResourceName",
- "documentation":"The ARN of the CloudWatch resource that you're removing tags from. For more information on ARN format, see Example ARNs in the Amazon Web Services General Reference.
"
+ "documentation":"The ARN of the CloudWatch resource that you're removing tags from.
The ARN format of an alarm is arn:aws:cloudwatch:Region:account-id:alarm:alarm-name
The ARN format of a Contributor Insights rule is arn:aws:cloudwatch:Region:account-id:insight-rule:insight-rule-name
For more information on ARN format, see Resource Types Defined by Amazon CloudWatch in the Amazon Web Services General Reference.
"
},
"TagKeys":{
"shape":"TagKeyList",
From d0165b58425644a6a226efda2f3a9e64e5eb3c30 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 2 Apr 2020 18:05:55 +0000
Subject: [PATCH 006/604] Amazon Redshift Update: Documentation updates for
redshift
---
.changes/next-release/feature-AmazonRedshift-162d7e6.json | 5 +++++
.../src/main/resources/codegen-resources/service-2.json | 8 ++++----
2 files changed, 9 insertions(+), 4 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonRedshift-162d7e6.json
diff --git a/.changes/next-release/feature-AmazonRedshift-162d7e6.json b/.changes/next-release/feature-AmazonRedshift-162d7e6.json
new file mode 100644
index 000000000000..c9236b0f8734
--- /dev/null
+++ b/.changes/next-release/feature-AmazonRedshift-162d7e6.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon Redshift",
+ "description": "Documentation updates for redshift"
+}
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 e4340a85034b..f4bd8e05059b 100644
--- a/services/redshift/src/main/resources/codegen-resources/service-2.json
+++ b/services/redshift/src/main/resources/codegen-resources/service-2.json
@@ -389,7 +389,7 @@
{"shape":"TagLimitExceededFault"},
{"shape":"ScheduleDefinitionTypeUnsupportedFault"}
],
- "documentation":"Creates a snapshot schedule with the rate of every 12 hours.
"
+ "documentation":"Create a snapshot schedule that can be associated to a cluster and which overrides the default system backup schedule.
"
},
"CreateTags":{
"name":"CreateTags",
@@ -1468,7 +1468,7 @@
{"shape":"UnauthorizedOperation"},
{"shape":"LimitExceededFault"}
],
- "documentation":"Changes the size of the cluster. You can change the cluster's type, or change the number or type of nodes. The default behavior is to use the elastic resize method. With an elastic resize, your cluster is available for read and write operations more quickly than with the classic resize method.
Elastic resize operations have the following restrictions:
"
+ "documentation":"Changes the size of the cluster. You can change the cluster's type, or change the number or type of nodes. The default behavior is to use the elastic resize method. With an elastic resize, your cluster is available for read and write operations more quickly than with the classic resize method.
Elastic resize operations have the following restrictions:
"
},
"RestoreFromClusterSnapshot":{
"name":"RestoreFromClusterSnapshot",
@@ -2865,7 +2865,7 @@
},
"NodeType":{
"shape":"String",
- "documentation":"The node type to be provisioned for the cluster. For information about node types, go to Working with Clusters in the Amazon Redshift Cluster Management Guide.
Valid Values: ds2.xlarge
| ds2.8xlarge
| dc1.large
| dc1.8xlarge
| dc2.large
| dc2.8xlarge
| ra3.16xlarge
"
+ "documentation":"The node type to be provisioned for the cluster. For information about node types, go to Working with Clusters in the Amazon Redshift Cluster Management Guide.
Valid Values: ds2.xlarge
| ds2.8xlarge
| dc1.large
| dc1.8xlarge
| dc2.large
| dc2.8xlarge
| ra3.4xlarge
| ra3.16xlarge
"
},
"MasterUsername":{
"shape":"String",
@@ -5446,7 +5446,7 @@
},
"NodeType":{
"shape":"String",
- "documentation":"The new node type of the cluster. If you specify a new node type, you must also specify the number of nodes parameter.
For more information about resizing clusters, go to Resizing Clusters in Amazon Redshift in the Amazon Redshift Cluster Management Guide.
Valid Values: ds2.xlarge
| ds2.8xlarge
| dc1.large
| dc1.8xlarge
| dc2.large
| dc2.8xlarge
| ra3.16xlarge
"
+ "documentation":"The new node type of the cluster. If you specify a new node type, you must also specify the number of nodes parameter.
For more information about resizing clusters, go to Resizing Clusters in Amazon Redshift in the Amazon Redshift Cluster Management Guide.
Valid Values: ds2.xlarge
| ds2.8xlarge
| dc1.large
| dc1.8xlarge
| dc2.large
| dc2.8xlarge
| ra3.4xlarge
| ra3.16xlarge
"
},
"NumberOfNodes":{
"shape":"IntegerOptional",
From e9584d3b1254e907210bc5c3fddc91507fc5ab7d Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 2 Apr 2020 18:06:00 +0000
Subject: [PATCH 007/604] AWS Elemental MediaLive Update: AWS Elemental
MediaLive now supports Automatic Input Failover. This feature provides
resiliency upstream of the channel, before ingest starts.
---
...feature-AWSElementalMediaLive-90b523e.json | 5 +++
.../codegen-resources/service-2.json | 45 +++++++++++++++++++
.../codegen-resources/waiters-2.json | 4 +-
3 files changed, 52 insertions(+), 2 deletions(-)
create mode 100644 .changes/next-release/feature-AWSElementalMediaLive-90b523e.json
diff --git a/.changes/next-release/feature-AWSElementalMediaLive-90b523e.json b/.changes/next-release/feature-AWSElementalMediaLive-90b523e.json
new file mode 100644
index 000000000000..d5eb9dedb574
--- /dev/null
+++ b/.changes/next-release/feature-AWSElementalMediaLive-90b523e.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "AWS Elemental MediaLive",
+ "description": "AWS Elemental MediaLive now supports Automatic Input Failover. This feature provides resiliency upstream of the channel, before ingest starts."
+}
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 e55be0908b40..f80eb035e996 100644
--- a/services/medialive/src/main/resources/codegen-resources/service-2.json
+++ b/services/medialive/src/main/resources/codegen-resources/service-2.json
@@ -2572,6 +2572,25 @@
"COMMON"
]
},
+ "AutomaticInputFailoverSettings": {
+ "type": "structure",
+ "members": {
+ "InputPreference": {
+ "shape": "InputPreference",
+ "locationName": "inputPreference",
+ "documentation": "Input preference when deciding which input to make active when a previously failed input has recovered."
+ },
+ "SecondaryInputId": {
+ "shape": "__string",
+ "locationName": "secondaryInputId",
+ "documentation": "The input ID of the secondary input in the automatic input failover pair."
+ }
+ },
+ "documentation": "The settings for Automatic Input Failover.",
+ "required": [
+ "SecondaryInputId"
+ ]
+ },
"AvailBlanking": {
"type": "structure",
"members": {
@@ -5727,6 +5746,14 @@
"ENABLED"
]
},
+ "H264ForceFieldPictures": {
+ "type": "string",
+ "documentation": "H264 Force Field Pictures",
+ "enum": [
+ "DISABLED",
+ "ENABLED"
+ ]
+ },
"H264FramerateControl": {
"type": "string",
"documentation": "H264 Framerate Control",
@@ -5882,6 +5909,11 @@
"locationName": "flickerAq",
"documentation": "If set to enabled, adjust quantization within each frame to reduce flicker or 'pop' on I-frames."
},
+ "ForceFieldPictures": {
+ "shape": "H264ForceFieldPictures",
+ "locationName": "forceFieldPictures",
+ "documentation": "This setting applies only when scan type is \"interlaced.\" It controls whether coding is on a field basis or a frame basis. (When the video is progressive, the coding is always on a frame basis.)\nenabled: Always code on a field basis, so that odd and even sets of fields are coded separately.\ndisabled: Code the two sets of fields separately (on a field basis) or together (on a frame basis, using PAFF or MBAFF), depending on what is most appropriate for the content."
+ },
"FramerateControl": {
"shape": "H264FramerateControl",
"locationName": "framerateControl",
@@ -7112,6 +7144,11 @@
"InputAttachment": {
"type": "structure",
"members": {
+ "AutomaticInputFailoverSettings": {
+ "shape": "AutomaticInputFailoverSettings",
+ "locationName": "automaticInputFailoverSettings",
+ "documentation": "User-specified settings for defining what the conditions are for declaring the input unhealthy and failing over to a different input."
+ },
"InputAttachmentName": {
"shape": "__string",
"locationName": "inputAttachmentName",
@@ -7373,6 +7410,14 @@
"MAX_50_MBPS"
]
},
+ "InputPreference": {
+ "type": "string",
+ "documentation": "Input preference when deciding which input to make active when a previously failed input has recovered.\nIf \\\"EQUAL_INPUT_PREFERENCE\\\", then the active input will stay active as long as it is healthy.\nIf \\\"PRIMARY_INPUT_PREFERRED\\\", then always switch back to the primary input when it is healthy.\n",
+ "enum": [
+ "EQUAL_INPUT_PREFERENCE",
+ "PRIMARY_INPUT_PREFERRED"
+ ]
+ },
"InputResolution": {
"type": "string",
"documentation": "Input resolution based on lines of vertical resolution in the input; SD is less than 720 lines, HD is 720 to 1080 lines, UHD is greater than 1080 lines\n",
diff --git a/services/medialive/src/main/resources/codegen-resources/waiters-2.json b/services/medialive/src/main/resources/codegen-resources/waiters-2.json
index 6b9f74cbce8e..4af16a8c2a69 100644
--- a/services/medialive/src/main/resources/codegen-resources/waiters-2.json
+++ b/services/medialive/src/main/resources/codegen-resources/waiters-2.json
@@ -61,7 +61,7 @@
"description": "Wait until a channel has is stopped",
"operation": "DescribeChannel",
"delay": 5,
- "maxAttempts": 28,
+ "maxAttempts": 60,
"acceptors": [
{
"state": "success",
@@ -86,7 +86,7 @@
"description": "Wait until a channel has been deleted",
"operation": "DescribeChannel",
"delay": 5,
- "maxAttempts": 20,
+ "maxAttempts": 84,
"acceptors": [
{
"state": "success",
From 5eb341a3d528816f891cb79e600da6691105aaf6 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 2 Apr 2020 18:06:04 +0000
Subject: [PATCH 008/604] Amazon GameLift Update: Public preview of GameLift
FleetIQ as a standalone feature. GameLift FleetIQ makes it possible to use
low-cost Spot instances by limiting the chance of interruptions affecting
game sessions. FleetIQ is a feature of the managed GameLift service, and can
now be used with game hosting in EC2 Auto Scaling groups that you manage in
your own account.
---
.../feature-AmazonGameLift-ec5ba1b.json | 5 +
.../codegen-resources/service-2.json | 1297 +++++++++++++++--
2 files changed, 1186 insertions(+), 116 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonGameLift-ec5ba1b.json
diff --git a/.changes/next-release/feature-AmazonGameLift-ec5ba1b.json b/.changes/next-release/feature-AmazonGameLift-ec5ba1b.json
new file mode 100644
index 000000000000..d4f9fc1f8b21
--- /dev/null
+++ b/.changes/next-release/feature-AmazonGameLift-ec5ba1b.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon GameLift",
+ "description": "Public preview of GameLift FleetIQ as a standalone feature. GameLift FleetIQ makes it possible to use low-cost Spot instances by limiting the chance of interruptions affecting game sessions. FleetIQ is a feature of the managed GameLift service, and can now be used with game hosting in EC2 Auto Scaling groups that you manage in your own account."
+}
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 1f0ff2d45fc3..bf9e17b76a2e 100755
--- a/services/gamelift/src/main/resources/codegen-resources/service-2.json
+++ b/services/gamelift/src/main/resources/codegen-resources/service-2.json
@@ -28,6 +28,24 @@
],
"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",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"ClaimGameServerInput"},
+ "output":{"shape":"ClaimGameServerOutput"},
+ "errors":[
+ {"shape":"InvalidRequestException"},
+ {"shape":"NotFoundException"},
+ {"shape":"ConflictException"},
+ {"shape":"OutOfCapacityException"},
+ {"shape":"UnauthorizedException"},
+ {"shape":"InternalServiceException"}
+ ],
+ "documentation":" This action is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
Locates an available game server and temporarily reserves it to host gameplay and players. This action is called by a game client or client service (such as a matchmaker) to request hosting resources for a new game session. In response, GameLift FleetIQ searches for an available game server in the specified game server group, places the game server in \"claimed\" status for 60 seconds, and returns connection information back to the requester so that players can connect to the game server.
There are two ways you can claim a game server. For the first option, you provide a game server group ID only, which prompts GameLift FleetIQ to search for an available game server in the specified group and claim it. With this option, GameLift FleetIQ attempts to consolidate gameplay on as few instances as possible to minimize hosting costs. For the second option, you request a specific game server by its ID. This option results in a less efficient claiming process because it does not take advantage of consolidation and may fail if the requested game server is unavailable.
To claim a game server, identify a game server group and (optionally) a game server ID. If your game requires that game data be provided to the game server at the start of a game, such as a game map or player information, you can provide it in your claim request.
When a game server is successfully claimed, connection information is returned. A claimed game server's utilization status remains AVAILABLE, while the claim status is set to CLAIMED for up to 60 seconds. This time period allows the game server to be prompted to update its status to UTILIZED (using UpdateGameServer). If the game server's status is not updated within 60 seconds, the game server reverts to unclaimed status and is available to be claimed by another request.
If you try to claim a specific game server, this request will fail in the following cases: (1) if the game server utilization status is UTILIZED, (2) if the game server claim status is CLAIMED, or (3) if the instance that the game server is running on is flagged as draining.
Learn more
GameLift FleetIQ Guide
Related operations
"
+ },
"CreateAlias":{
"name":"CreateAlias",
"http":{
@@ -61,7 +79,7 @@
{"shape":"TaggingFailedException"},
{"shape":"InternalServiceException"}
],
- "documentation":"Creates a new Amazon GameLift build record for your game server binary files and points to the location of your game server build files in an Amazon Simple Storage Service (Amazon S3) location.
Game server binaries must be combined into a zip file for use with Amazon GameLift.
To create new builds directly from a file directory, use the AWS CLI command upload-build . This helper command uploads build files and creates a new build record in one step, and automatically handles the necessary permissions.
The CreateBuild
operation should be used only in the following scenarios:
-
To create a new game build with build files that are in an Amazon S3 bucket under your own AWS account. To use this option, you must first give Amazon GameLift access to that Amazon S3 bucket. Then call CreateBuild
and specify a build name, operating system, and the Amazon S3 storage location of your game build.
-
To upload build files directly to Amazon GameLift's Amazon S3 account. To use this option, first call CreateBuild
and specify a build name and operating system. This action creates a new build record and returns an Amazon S3 storage location (bucket and key only) and temporary access credentials. Use the credentials to manually upload your build file to the provided storage location (see the Amazon S3 topic Uploading Objects). You can upload build files to the GameLift Amazon S3 location only once.
If successful, this operation creates a new build record with a unique build ID and places it in INITIALIZED
status. You can use DescribeBuild to check the status of your build. A build must be in READY
status before it can be used to create fleets.
Learn more
Uploading Your Game https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
Create a Build with Files in Amazon S3
Related operations
"
+ "documentation":"Creates a new Amazon GameLift build resource for your game server binary files. Game server binaries must be combined into a zip file for use with Amazon GameLift.
When setting up a new game build for GameLift, we recommend using the AWS CLI command upload-build . This helper command combines two tasks: (1) it uploads your build files from a file directory to a GameLift Amazon S3 location, and (2) it creates a new build resource.
The CreateBuild
operation can used in the following scenarios:
-
To create a new game build with build files that are in an S3 location under an AWS account that you control. To use this option, you must first give Amazon GameLift access to the S3 bucket. With permissions in place, call CreateBuild
and specify a build name, operating system, and the S3 storage location of your game build.
-
To directly upload your build files to a GameLift S3 location. To use this option, first call CreateBuild
and specify a build name and operating system. This action creates a new build resource and also returns an S3 location with temporary access credentials. Use the credentials to manually upload your build files to the specified S3 location. For more information, see Uploading Objects in the Amazon S3 Developer Guide. Build files can be uploaded to the GameLift S3 location once only; that can't be updated.
If successful, this operation creates a new build resource with a unique build ID and places it in INITIALIZED
status. A build must be in READY
status before you can create fleets with it.
Learn more
Uploading Your Game
Create a Build with Files in Amazon S3
Related operations
"
},
"CreateFleet":{
"name":"CreateFleet",
@@ -80,7 +98,24 @@
{"shape":"UnauthorizedException"},
{"shape":"TaggingFailedException"}
],
- "documentation":"Creates a new fleet to run your game servers. whether they are custom game builds or Realtime Servers with game-specific script. A fleet is a set of Amazon Elastic Compute Cloud (Amazon EC2) instances, each of which can host multiple game sessions. When creating a fleet, you choose the hardware specifications, set some configuration options, and specify the game server to deploy on the new fleet.
To create a new fleet, you must provide the following: (1) a fleet name, (2) an EC2 instance type and fleet type (spot or on-demand), (3) the build ID for your game build or script ID if using Realtime Servers, and (4) a runtime configuration, which determines how game servers will run on each instance in the fleet.
If the CreateFleet
call is successful, Amazon GameLift performs the following tasks. You can track the process of a fleet by checking the fleet status or by monitoring fleet creation events:
-
Creates a fleet record. Status: NEW
.
-
Begins writing events to the fleet event log, which can be accessed in the Amazon GameLift console.
-
Sets the fleet's target capacity to 1 (desired instances), which triggers Amazon GameLift to start one new EC2 instance.
-
Downloads the game build or Realtime script to the new instance and installs it. Statuses: DOWNLOADING
, VALIDATING
, BUILDING
.
-
Starts launching server processes on the instance. If the fleet is configured to run multiple server processes per instance, Amazon GameLift staggers each process launch by a few seconds. Status: ACTIVATING
.
-
Sets the fleet's status to ACTIVE
as soon as one server process is ready to host a game session.
Learn more
Setting Up Fleets
Debug Fleet Creation Issues
Related operations
"
+ "documentation":"Creates a new fleet to run your game servers. whether they are custom game builds or Realtime Servers with game-specific script. A fleet is a set of Amazon Elastic Compute Cloud (Amazon EC2) instances, each of which can host multiple game sessions. When creating a fleet, you choose the hardware specifications, set some configuration options, and specify the game server to deploy on the new fleet.
To create a new fleet, provide the following: (1) a fleet name, (2) an EC2 instance type and fleet type (spot or on-demand), (3) the build ID for your game build or script ID if using Realtime Servers, and (4) a runtime configuration, which determines how game servers will run on each instance in the fleet.
If the CreateFleet
call is successful, Amazon GameLift performs the following tasks. You can track the process of a fleet by checking the fleet status or by monitoring fleet creation events:
-
Creates a fleet resource. Status: NEW
.
-
Begins writing events to the fleet event log, which can be accessed in the Amazon GameLift console.
-
Sets the fleet's target capacity to 1 (desired instances), which triggers Amazon GameLift to start one new EC2 instance.
-
Downloads the game build or Realtime script to the new instance and installs it. Statuses: DOWNLOADING
, VALIDATING
, BUILDING
.
-
Starts launching server processes on the instance. If the fleet is configured to run multiple server processes per instance, Amazon GameLift staggers each process launch by a few seconds. Status: ACTIVATING
.
-
Sets the fleet's status to ACTIVE
as soon as one server process is ready to host a game session.
Learn more
Setting Up Fleets
Debug Fleet Creation Issues
Related operations
"
+ },
+ "CreateGameServerGroup":{
+ "name":"CreateGameServerGroup",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"CreateGameServerGroupInput"},
+ "output":{"shape":"CreateGameServerGroupOutput"},
+ "errors":[
+ {"shape":"InvalidRequestException"},
+ {"shape":"ConflictException"},
+ {"shape":"UnauthorizedException"},
+ {"shape":"InternalServiceException"},
+ {"shape":"LimitExceededException"}
+ ],
+ "documentation":" This action is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
Creates a GameLift FleetIQ game server group to manage a collection of EC2 instances for game hosting. In addition to creating the game server group, this action also creates an Auto Scaling group in your AWS account and establishes a link between the two groups. You have full control over configuration of the Auto Scaling group, but GameLift FleetIQ routinely certain Auto Scaling group properties in order to optimize the group's instances for low-cost game hosting. You can view the status of your game server groups in the GameLift Console. Game server group metrics and events are emitted to Amazon CloudWatch.
Prior creating a new game server group, you must set up the following:
-
An EC2 launch template. The template provides configuration settings for a set of EC2 instances and includes the game server build that you want to deploy and run on each instance. For more information on creating a launch template, see Launching an Instance from a Launch Template in the Amazon EC2 User Guide.
-
An IAM role. The role sets up limited access to your AWS account, allowing GameLift FleetIQ to create and manage the EC2 Auto Scaling group, get instance data, and emit metrics and events to CloudWatch. For more information on setting up an IAM permissions policy with principal access for GameLift, see Specifying a Principal in a Policy in the Amazon S3 Developer Guide.
To create a new game server group, provide a name and specify the IAM role and EC2 launch template. You also need to provide a list of instance types to be used in the group and set initial maximum and minimum limits on the group's instance count. You can optionally set an autoscaling policy with target tracking based on a GameLift FleetIQ metric.
Once the game server group and corresponding Auto Scaling group are created, you have full access to change the Auto Scaling group's configuration as needed. Keep in mind, however, that some properties are periodically updated by GameLift FleetIQ as it balances the group's instances based on availability and cost.
Learn more
GameLift FleetIQ Guide
Updating a GameLift FleetIQ-Linked Auto Scaling Group
Related operations
"
},
"CreateGameSession":{
"name":"CreateGameSession",
@@ -119,7 +154,7 @@
{"shape":"LimitExceededException"},
{"shape":"TaggingFailedException"}
],
- "documentation":"Establishes a new queue for processing requests to place new game sessions. A queue identifies where new game sessions can be hosted -- by specifying a list of destinations (fleets or aliases) -- and how long requests can wait in the queue before timing out. You can set up a queue to try to place game sessions on fleets in multiple Regions. To add placement requests to a queue, call StartGameSessionPlacement and reference the queue name.
Destination order. When processing a request for a game session, Amazon GameLift tries each destination in order until it finds one with available resources to host the new game session. A queue's default order is determined by how destinations are listed. The default order is overridden when a game session placement request provides player latency information. Player latency information enables Amazon GameLift to prioritize destinations where players report the lowest average latency, as a result placing the new game session where the majority of players will have the best possible gameplay experience.
Player latency policies. For placement requests containing player latency information, use player latency policies to protect individual players from very high latencies. With a latency cap, even when a destination can deliver a low latency for most players, the game is not placed where any individual player is reporting latency higher than a policy's maximum. A queue can have multiple latency policies, which are enforced consecutively starting with the policy with the lowest latency cap. Use multiple policies to gradually relax latency controls; for example, you might set a policy with a low latency cap for the first 60 seconds, a second policy with a higher cap for the next 60 seconds, etc.
To create a new queue, provide a name, timeout value, a list of destinations and, if desired, a set of latency policies. If successful, a new queue object is returned.
"
+ "documentation":"Establishes a new queue for processing requests to place new game sessions. A queue identifies where new game sessions can be hosted -- by specifying a list of destinations (fleets or aliases) -- and how long requests can wait in the queue before timing out. You can set up a queue to try to place game sessions on fleets in multiple Regions. To add placement requests to a queue, call StartGameSessionPlacement and reference the queue name.
Destination order. When processing a request for a game session, Amazon GameLift tries each destination in order until it finds one with available resources to host the new game session. A queue's default order is determined by how destinations are listed. The default order is overridden when a game session placement request provides player latency information. Player latency information enables Amazon GameLift to prioritize destinations where players report the lowest average latency, as a result placing the new game session where the majority of players will have the best possible gameplay experience.
Player latency policies. For placement requests containing player latency information, use player latency policies to protect individual players from very high latencies. With a latency cap, even when a destination can deliver a low latency for most players, the game is not placed where any individual player is reporting latency higher than a policy's maximum. A queue can have multiple latency policies, which are enforced consecutively starting with the policy with the lowest latency cap. Use multiple policies to gradually relax latency controls; for example, you might set a policy with a low latency cap for the first 60 seconds, a second policy with a higher cap for the next 60 seconds, etc.
To create a new queue, provide a name, timeout value, a list of destinations and, if desired, a set of latency policies. If successful, a new queue object is returned.
Learn more
Design a Game Session Queue
Create a Game Session Queue
Related operations
"
},
"CreateMatchmakingConfiguration":{
"name":"CreateMatchmakingConfiguration",
@@ -272,7 +307,7 @@
{"shape":"TaggingFailedException"},
{"shape":"InvalidRequestException"}
],
- "documentation":"Deletes a build. This action permanently deletes the build record and any uploaded build files.
To delete a build, specify its ID. Deleting a build does not affect the status of any active fleets using the build, but you can no longer create new fleets with the deleted build.
Learn more
Working with Builds
Related operations
"
+ "documentation":"Deletes a build. This action permanently deletes the build resource and any uploaded build files. Deleting a build does not affect the status of any active fleets using the build, but you can no longer create new fleets with the deleted build.
To delete a build, specify the build ID.
Learn more
Upload a Custom Server Build
Related operations
"
},
"DeleteFleet":{
"name":"DeleteFleet",
@@ -289,7 +324,23 @@
{"shape":"InvalidRequestException"},
{"shape":"TaggingFailedException"}
],
- "documentation":"Deletes everything related to a fleet. Before deleting a fleet, you must set the fleet's desired capacity to zero. See UpdateFleetCapacity.
If the fleet being deleted has a VPC peering connection, you first need to get a valid authorization (good for 24 hours) by calling CreateVpcPeeringAuthorization. You do not need to explicitly delete the VPC peering connection--this is done as part of the delete fleet process.
This action removes the fleet's resources and the fleet record. Once a fleet is deleted, you can no longer use that fleet.
Learn more
Working with Fleets.
Related operations
"
+ "documentation":"Deletes everything related to a fleet. Before deleting a fleet, you must set the fleet's desired capacity to zero. See UpdateFleetCapacity.
If the fleet being deleted has a VPC peering connection, you first need to get a valid authorization (good for 24 hours) by calling CreateVpcPeeringAuthorization. You do not need to explicitly delete the VPC peering connection--this is done as part of the delete fleet process.
This action removes the fleet and its resources. Once a fleet is deleted, you can no longer use any of the resource in that fleet.
Learn more
Setting up GameLift Fleets
Related operations
"
+ },
+ "DeleteGameServerGroup":{
+ "name":"DeleteGameServerGroup",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"DeleteGameServerGroupInput"},
+ "output":{"shape":"DeleteGameServerGroupOutput"},
+ "errors":[
+ {"shape":"InvalidRequestException"},
+ {"shape":"NotFoundException"},
+ {"shape":"UnauthorizedException"},
+ {"shape":"InternalServiceException"}
+ ],
+ "documentation":" This action is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
Terminates a game server group and permanently deletes the game server group record. You have several options for how these resources are impacted when deleting the game server group. Depending on the type of delete action selected, this action may affect three types of resources: the game server group, the corresponding Auto Scaling group, and all game servers currently running in the group.
To delete a game server group, identify the game server group to delete and specify the type of delete action to initiate. Game server groups can only be deleted if they are in ACTIVE or ERROR status.
If the delete request is successful, a series of actions are kicked off. The game server group status is changed to DELETE_SCHEDULED, which prevents new game servers from being registered and stops autoscaling activity. Once all game servers in the game server group are de-registered, GameLift FleetIQ can begin deleting resources. If any of the delete actions fail, the game server group is placed in ERROR status.
GameLift FleetIQ emits delete events to Amazon CloudWatch.
Learn more
GameLift FleetIQ Guide
Related operations
"
},
"DeleteGameSessionQueue":{
"name":"DeleteGameSessionQueue",
@@ -306,7 +357,7 @@
{"shape":"UnauthorizedException"},
{"shape":"TaggingFailedException"}
],
- "documentation":"Deletes a game session queue. This action means that any StartGameSessionPlacement requests that reference this queue will fail. To delete a queue, specify the queue name.
"
+ "documentation":"Deletes a game session queue. This action means that any StartGameSessionPlacement requests that reference this queue will fail. To delete a queue, specify the queue name.
Learn more
Using Multi-Region Queues
Related operations
"
},
"DeleteMatchmakingConfiguration":{
"name":"DeleteMatchmakingConfiguration",
@@ -405,6 +456,21 @@
],
"documentation":"Removes a VPC peering connection. To delete the connection, you must have a valid authorization for the VPC peering connection that you want to delete. You can check for an authorization by calling DescribeVpcPeeringAuthorizations or request a new one using CreateVpcPeeringAuthorization.
Once a valid authorization exists, call this operation from the AWS account that is used to manage the Amazon GameLift fleets. Identify the connection to delete by the connection ID and fleet ID. If successful, the connection is removed.
"
},
+ "DeregisterGameServer":{
+ "name":"DeregisterGameServer",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"DeregisterGameServerInput"},
+ "errors":[
+ {"shape":"InvalidRequestException"},
+ {"shape":"NotFoundException"},
+ {"shape":"UnauthorizedException"},
+ {"shape":"InternalServiceException"}
+ ],
+ "documentation":" This action is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
Removes the game server resource from the game server group. As a result of this action, the de-registered game server can no longer be claimed and will not returned in a list of active game servers.
To de-register a game server, specify the game server group and game server ID. If successful, this action emits a CloudWatch event with termination time stamp and reason.
Learn more
GameLift FleetIQ Guide
Related operations
"
+ },
"DescribeAlias":{
"name":"DescribeAlias",
"http":{
@@ -435,7 +501,7 @@
{"shape":"NotFoundException"},
{"shape":"InternalServiceException"}
],
- "documentation":"Retrieves properties for a build. To request a build record, specify a build ID. If successful, an object containing the build properties is returned.
Learn more
Working with Builds
Related operations
"
+ "documentation":"Retrieves properties for a custom game build. To request a build resource, specify a build ID. If successful, an object containing the build properties is returned.
Learn more
Upload a Custom Server Build
Related operations
"
},
"DescribeEC2InstanceLimits":{
"name":"DescribeEC2InstanceLimits",
@@ -450,7 +516,7 @@
{"shape":"InternalServiceException"},
{"shape":"UnauthorizedException"}
],
- "documentation":"Retrieves the following information for the specified EC2 instance type:
Service limits vary depending on Region. Available Regions for Amazon GameLift can be found in the AWS Management Console for Amazon GameLift (see the drop-down list in the upper right corner).
Learn more
Working with Fleets.
Related operations
"
+ "documentation":"Retrieves the following information for the specified EC2 instance type:
To learn more about the capabilities of each instance type, see Amazon EC2 Instance Types. Note that the instance types offered may vary depending on the region.
Learn more
Setting up GameLift Fleets
Related operations
"
},
"DescribeFleetAttributes":{
"name":"DescribeFleetAttributes",
@@ -466,7 +532,7 @@
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"}
],
- "documentation":"Retrieves fleet properties, including metadata, status, and configuration, for one or more fleets. You can request attributes for all fleets, or specify a list of one or more fleet IDs. When requesting multiple fleets, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a FleetAttributes object is returned for each requested fleet ID. When specifying a list of fleet IDs, attribute objects are returned only for fleets that currently exist.
Some API actions may limit the number of fleet IDs allowed in one request. If a request exceeds this limit, the request fails and the error message includes the maximum allowed.
Learn more
Working with Fleets.
Related operations
"
+ "documentation":"Retrieves core properties, including configuration, status, and metadata, for a fleet.
To get attributes for one or more fleets, provide a list of fleet IDs or fleet ARNs. To get attributes for all fleets, do not specify a fleet identifier. When requesting attributes for multiple fleets, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a FleetAttributes object is returned for each fleet requested, unless the fleet identifier is not found.
Some API actions may limit the number of fleet IDs allowed in one request. If a request exceeds this limit, the request fails and the error message includes the maximum allowed number.
Learn more
Setting up GameLift Fleets
Related operations
"
},
"DescribeFleetCapacity":{
"name":"DescribeFleetCapacity",
@@ -482,7 +548,7 @@
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"}
],
- "documentation":"Retrieves the current status of fleet capacity for one or more fleets. This information includes the number of instances that have been requested for the fleet and the number currently active. You can request capacity for all fleets, or specify a list of one or more fleet IDs. When requesting multiple fleets, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a FleetCapacity object is returned for each requested fleet ID. When specifying a list of fleet IDs, attribute objects are returned only for fleets that currently exist.
Some API actions may limit the number of fleet IDs allowed in one request. If a request exceeds this limit, the request fails and the error message includes the maximum allowed.
Learn more
Working with Fleets.
Related operations
"
+ "documentation":"Retrieves the current capacity statistics for one or more fleets. These statistics present a snapshot of the fleet's instances and provide insight on current or imminent scaling activity. To get statistics on game hosting activity in the fleet, see DescribeFleetUtilization.
You can request capacity for all fleets or specify a list of one or more fleet identifiers. When requesting multiple fleets, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a FleetCapacity object is returned for each requested fleet ID. When a list of fleet IDs is provided, attribute objects are returned only for fleets that currently exist.
Some API actions may limit the number of fleet IDs allowed in one request. If a request exceeds this limit, the request fails and the error message includes the maximum allowed.
Learn more
Setting up GameLift Fleets
GameLift Metrics for Fleets
Related operations
"
},
"DescribeFleetEvents":{
"name":"DescribeFleetEvents",
@@ -498,7 +564,7 @@
{"shape":"UnauthorizedException"},
{"shape":"InvalidRequestException"}
],
- "documentation":"Retrieves entries from the specified fleet's event log. You can specify a time range to limit the result set. Use the pagination parameters to retrieve results as a set of sequential pages. If successful, a collection of event log entries matching the request are returned.
Learn more
Working with Fleets.
Related operations
"
+ "documentation":"Retrieves entries from the specified fleet's event log. You can specify a time range to limit the result set. Use the pagination parameters to retrieve results as a set of sequential pages. If successful, a collection of event log entries matching the request are returned.
Learn more
Setting up GameLift Fleets
Related operations
"
},
"DescribeFleetPortSettings":{
"name":"DescribeFleetPortSettings",
@@ -514,7 +580,7 @@
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"}
],
- "documentation":"Retrieves the inbound connection permissions for a fleet. Connection permissions include a range of IP addresses and port settings that incoming traffic can use to access server processes in the fleet. To get a fleet's inbound connection permissions, specify a fleet ID. If successful, a collection of IpPermission objects is returned for the requested fleet ID. If the requested fleet has been deleted, the result set is empty.
Learn more
Working with Fleets.
Related operations
"
+ "documentation":"Retrieves a fleet's inbound connection permissions. Connection permissions specify the range of IP addresses and port settings that incoming traffic can use to access server processes in the fleet. Game sessions that are running on instances in the fleet use connections that fall in this range.
To get a fleet's inbound connection permissions, specify the fleet's unique identifier. If successful, a collection of IpPermission objects is returned for the requested fleet ID. If the requested fleet has been deleted, the result set is empty.
Learn more
Setting up GameLift Fleets
Related operations
"
},
"DescribeFleetUtilization":{
"name":"DescribeFleetUtilization",
@@ -530,7 +596,39 @@
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"}
],
- "documentation":"Retrieves utilization statistics for one or more fleets. You can request utilization data for all fleets, or specify a list of one or more fleet IDs. When requesting multiple fleets, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a FleetUtilization object is returned for each requested fleet ID. When specifying a list of fleet IDs, utilization objects are returned only for fleets that currently exist.
Some API actions may limit the number of fleet IDs allowed in one request. If a request exceeds this limit, the request fails and the error message includes the maximum allowed.
Learn more
Working with Fleets.
Related operations
"
+ "documentation":"Retrieves utilization statistics for one or more fleets. These statistics provide insight into how available hosting resources are currently being used. To get statistics on available hosting resources, see DescribeFleetCapacity.
You can request utilization data for all fleets, or specify a list of one or more fleet IDs. When requesting multiple fleets, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a FleetUtilization object is returned for each requested fleet ID, unless the fleet identifier is not found.
Some API actions may limit the number of fleet IDs allowed in one request. If a request exceeds this limit, the request fails and the error message includes the maximum allowed.
Learn more
Setting up GameLift Fleets
GameLift Metrics for Fleets
Related operations
"
+ },
+ "DescribeGameServer":{
+ "name":"DescribeGameServer",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"DescribeGameServerInput"},
+ "output":{"shape":"DescribeGameServerOutput"},
+ "errors":[
+ {"shape":"InvalidRequestException"},
+ {"shape":"NotFoundException"},
+ {"shape":"UnauthorizedException"},
+ {"shape":"InternalServiceException"}
+ ],
+ "documentation":" This action is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
Retrieves information for a game server resource. Information includes the game server statuses, health check info, and the instance the game server is running on.
To retrieve game server information, specify the game server ID. If successful, the requested game server object is returned.
Learn more
GameLift FleetIQ Guide
Related operations
"
+ },
+ "DescribeGameServerGroup":{
+ "name":"DescribeGameServerGroup",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"DescribeGameServerGroupInput"},
+ "output":{"shape":"DescribeGameServerGroupOutput"},
+ "errors":[
+ {"shape":"InvalidRequestException"},
+ {"shape":"NotFoundException"},
+ {"shape":"UnauthorizedException"},
+ {"shape":"InternalServiceException"}
+ ],
+ "documentation":" This action is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
Retrieves information on a game server group.
To get attributes for a game server group, provide a group name or ARN value. If successful, a GameServerGroup object is returned.
Learn more
GameLift FleetIQ Guide
Related operations
"
},
"DescribeGameSessionDetails":{
"name":"DescribeGameSessionDetails",
@@ -579,7 +677,7 @@
{"shape":"NotFoundException"},
{"shape":"UnauthorizedException"}
],
- "documentation":"Retrieves the properties for one or more game session queues. When requesting multiple queues, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a GameSessionQueue object is returned for each requested queue. When specifying a list of queues, objects are returned only for queues that currently exist in the Region.
"
+ "documentation":"Retrieves the properties for one or more game session queues. When requesting multiple queues, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a GameSessionQueue object is returned for each requested queue. When specifying a list of queues, objects are returned only for queues that currently exist in the Region.
Learn more
View Your Queues
Related operations
"
},
"DescribeGameSessions":{
"name":"DescribeGameSessions",
@@ -612,7 +710,7 @@
{"shape":"NotFoundException"},
{"shape":"InternalServiceException"}
],
- "documentation":"Retrieves information about a fleet's instances, including instance IDs. Use this action to get details on all instances in the fleet or get details on one specific instance.
To get a specific instance, specify fleet ID and instance ID. To get all instances in a fleet, specify a fleet ID only. Use the pagination parameters to retrieve results as a set of sequential pages. If successful, an Instance object is returned for each result.
"
+ "documentation":"Retrieves information about a fleet's instances, including instance IDs. Use this action to get details on all instances in the fleet or get details on one specific instance.
To get a specific instance, specify fleet ID and instance ID. To get all instances in a fleet, specify a fleet ID only. Use the pagination parameters to retrieve results as a set of sequential pages. If successful, an Instance object is returned for each result.
Learn more
Remotely Access Fleet Instances
Debug Fleet Issues
Related operations
"
},
"DescribeMatchmaking":{
"name":"DescribeMatchmaking",
@@ -690,7 +788,7 @@
{"shape":"InternalServiceException"},
{"shape":"InvalidRequestException"}
],
- "documentation":"Retrieves the current runtime configuration for the specified fleet. The runtime configuration tells Amazon GameLift how to launch server processes on instances in the fleet.
Learn more
Working with Fleets.
Related operations
"
+ "documentation":"Retrieves a fleet's runtime configuration settings. The runtime configuration tells Amazon GameLift which server processes to run (and how) on each instance in the fleet.
To get a runtime configuration, specify the fleet's unique identifier. If successful, a RuntimeConfiguration object is returned for the requested fleet. If the requested fleet has been deleted, the result set is empty.
Learn more
Setting up GameLift Fleets
Running Multiple Processes on a Fleet
Related operations
"
},
"DescribeScalingPolicies":{
"name":"DescribeScalingPolicies",
@@ -785,7 +883,7 @@
{"shape":"NotFoundException"},
{"shape":"InternalServiceException"}
],
- "documentation":"Requests remote access to a fleet instance. Remote access is useful for debugging, gathering benchmarking data, or watching activity in real time.
Access requires credentials that match the operating system of the instance. For a Windows instance, Amazon GameLift returns a user name and password as strings for use with a Windows Remote Desktop client. For a Linux instance, Amazon GameLift returns a user name and RSA private key, also as strings, for use with an SSH client. The private key must be saved in the proper format to a .pem
file before using. If you're making this request using the AWS CLI, saving the secret can be handled as part of the GetInstanceAccess request. (See the example later in this topic). For more information on remote access, see Remotely Accessing an Instance.
To request access to a specific instance, specify the IDs of both the instance and the fleet it belongs to. You can retrieve a fleet's instance IDs by calling DescribeInstances. If successful, an InstanceAccess object is returned containing the instance's IP address and a set of credentials.
"
+ "documentation":"Requests remote access to a fleet instance. Remote access is useful for debugging, gathering benchmarking data, or observing activity in real time.
To remotely access an instance, you need credentials that match the operating system of the instance. For a Windows instance, Amazon GameLift returns a user name and password as strings for use with a Windows Remote Desktop client. For a Linux instance, Amazon GameLift returns a user name and RSA private key, also as strings, for use with an SSH client. The private key must be saved in the proper format to a .pem
file before using. If you're making this request using the AWS CLI, saving the secret can be handled as part of the GetInstanceAccess request, as shown in one of the examples for this action.
To request access to a specific instance, specify the IDs of both the instance and the fleet it belongs to. You can retrieve a fleet's instance IDs by calling DescribeInstances. If successful, an InstanceAccess object is returned that contains the instance's IP address and a set of credentials.
Learn more
Remotely Access Fleet Instances
Debug Fleet Issues
Related operations
"
},
"ListAliases":{
"name":"ListAliases",
@@ -815,7 +913,7 @@
{"shape":"InvalidRequestException"},
{"shape":"InternalServiceException"}
],
- "documentation":"Retrieves build records for all builds associated with the AWS account in use. You can limit results to builds that are in a specific status by using the Status
parameter. Use the pagination parameters to retrieve results in a set of sequential pages.
Build records are not listed in any particular order.
Learn more
Working with Builds
Related operations
"
+ "documentation":"Retrieves build resources for all builds associated with the AWS account in use. You can limit results to builds that are in a specific status by using the Status
parameter. Use the pagination parameters to retrieve results in a set of sequential pages.
Build resources are not listed in any particular order.
Learn more
Upload a Custom Server Build
Related operations
"
},
"ListFleets":{
"name":"ListFleets",
@@ -831,7 +929,37 @@
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"}
],
- "documentation":"Retrieves a collection of fleet records for this AWS account. You can filter the result set to find only those fleets that are deployed with a specific build or script. Use the pagination parameters to retrieve results in sequential pages.
Fleet records are not listed in a particular order.
Learn more
Set Up Fleets.
Related operations
"
+ "documentation":"Retrieves a collection of fleet resources for this AWS account. You can filter the result set to find only those fleets that are deployed with a specific build or script. Use the pagination parameters to retrieve results in sequential pages.
Fleet resources are not listed in a particular order.
Learn more
Setting up GameLift Fleets
Related operations
"
+ },
+ "ListGameServerGroups":{
+ "name":"ListGameServerGroups",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"ListGameServerGroupsInput"},
+ "output":{"shape":"ListGameServerGroupsOutput"},
+ "errors":[
+ {"shape":"InvalidRequestException"},
+ {"shape":"UnauthorizedException"},
+ {"shape":"InternalServiceException"}
+ ],
+ "documentation":" This action is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
Retrieves information on all game servers groups that exist in the current AWS account for the selected region. Use the pagination parameters to retrieve results in a set of sequential pages.
Learn more
GameLift FleetIQ Guide
Related operations
"
+ },
+ "ListGameServers":{
+ "name":"ListGameServers",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"ListGameServersInput"},
+ "output":{"shape":"ListGameServersOutput"},
+ "errors":[
+ {"shape":"InvalidRequestException"},
+ {"shape":"UnauthorizedException"},
+ {"shape":"InternalServiceException"}
+ ],
+ "documentation":" This action is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
Retrieves information on all game servers that are currently running in a specified game server group. If there are custom key sort values for your game servers, you can opt to have the returned list sorted based on these values. Use the pagination parameters to retrieve results in a set of sequential pages.
Learn more
GameLift FleetIQ Guide
Related operations
"
},
"ListScripts":{
"name":"ListScripts",
@@ -880,6 +1008,23 @@
],
"documentation":"Creates or updates a scaling policy for a fleet. Scaling policies are used to automatically scale a fleet's hosting capacity to meet player demand. An active scaling policy instructs Amazon GameLift to track a fleet metric and automatically change the fleet's capacity when a certain threshold is reached. There are two types of scaling policies: target-based and rule-based. Use a target-based policy to quickly and efficiently manage fleet scaling; this option is the most commonly used. Use rule-based policies when you need to exert fine-grained control over auto-scaling.
Fleets can have multiple scaling policies of each type in force at the same time; you can have one target-based policy, one or multiple rule-based scaling policies, or both. We recommend caution, however, because multiple auto-scaling policies can have unintended consequences.
You can temporarily suspend all scaling policies for a fleet by calling StopFleetActions with the fleet action AUTO_SCALING. To resume scaling policies, call StartFleetActions with the same fleet action. To stop just one scaling policy--or to permanently remove it, you must delete the policy with DeleteScalingPolicy.
Learn more about how to work with auto-scaling in Set Up Fleet Automatic Scaling.
Target-based policy
A target-based policy tracks a single metric: PercentAvailableGameSessions. This metric tells us how much of a fleet's hosting capacity is ready to host game sessions but is not currently in use. This is the fleet's buffer; it measures the additional player demand that the fleet could handle at current capacity. With a target-based policy, you set your ideal buffer size and leave it to Amazon GameLift to take whatever action is needed to maintain that target.
For example, you might choose to maintain a 10% buffer for a fleet that has the capacity to host 100 simultaneous game sessions. This policy tells Amazon GameLift to take action whenever the fleet's available capacity falls below or rises above 10 game sessions. Amazon GameLift will start new instances or stop unused instances in order to return to the 10% buffer.
To create or update a target-based policy, specify a fleet ID and name, and set the policy type to \"TargetBased\". Specify the metric to track (PercentAvailableGameSessions) and reference a TargetConfiguration object with your desired buffer value. Exclude all other parameters. On a successful request, the policy name is returned. The scaling policy is automatically in force as soon as it's successfully created. If the fleet's auto-scaling actions are temporarily suspended, the new policy will be in force once the fleet actions are restarted.
Rule-based policy
A rule-based policy tracks specified fleet metric, sets a threshold value, and specifies the type of action to initiate when triggered. With a rule-based policy, you can select from several available fleet metrics. Each policy specifies whether to scale up or scale down (and by how much), so you need one policy for each type of action.
For example, a policy may make the following statement: \"If the percentage of idle instances is greater than 20% for more than 15 minutes, then reduce the fleet capacity by 10%.\"
A policy's rule statement has the following structure:
If [MetricName]
is [ComparisonOperator]
[Threshold]
for [EvaluationPeriods]
minutes, then [ScalingAdjustmentType]
to/by [ScalingAdjustment]
.
To implement the example, the rule statement would look like this:
If [PercentIdleInstances]
is [GreaterThanThreshold]
[20]
for [15]
minutes, then [PercentChangeInCapacity]
to/by [10]
.
To create or update a scaling policy, specify a unique combination of name and fleet ID, and set the policy type to \"RuleBased\". Specify the parameter values for a policy rule statement. On a successful request, the policy name is returned. Scaling policies are automatically in force as soon as they're successfully created. If the fleet's auto-scaling actions are temporarily suspended, the new policy will be in force once the fleet actions are restarted.
"
},
+ "RegisterGameServer":{
+ "name":"RegisterGameServer",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"RegisterGameServerInput"},
+ "output":{"shape":"RegisterGameServerOutput"},
+ "errors":[
+ {"shape":"InvalidRequestException"},
+ {"shape":"ConflictException"},
+ {"shape":"UnauthorizedException"},
+ {"shape":"InternalServiceException"},
+ {"shape":"LimitExceededException"}
+ ],
+ "documentation":" This action is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
Creates a new game server resource and notifies GameLift FleetIQ that the game server is ready to host gameplay and players. This action is called by a game server process that is running on an instance in a game server group. Registering game servers enables GameLift FleetIQ to track available game servers and enables game clients and services to claim a game server for a new game session.
To register a game server, identify the game server group and instance where the game server is running, and provide a unique identifier for the game server. You can also include connection and game server data; when a game client or service requests a game server by calling ClaimGameServer, this information is returned in response.
Once a game server is successfully registered, it is put in status AVAILABLE. A request to register a game server may fail if the instance it is in the process of shutting down as part of instance rebalancing or scale-down activity.
Learn more
GameLift FleetIQ Guide
Related operations
"
+ },
"RequestUploadCredentials":{
"name":"RequestUploadCredentials",
"http":{
@@ -894,7 +1039,7 @@
{"shape":"NotFoundException"},
{"shape":"InternalServiceException"}
],
- "documentation":"Retrieves a fresh set of credentials for use when uploading a new set of game build files to Amazon GameLift's Amazon S3. This is done as part of the build creation process; see CreateBuild.
To request new credentials, specify the build ID as returned with an initial CreateBuild
request. If successful, a new set of credentials are returned, along with the S3 storage location associated with the build ID.
Learn more
Uploading Your Game
Related operations
"
+ "documentation":"Retrieves a fresh set of credentials for use when uploading a new set of game build files to Amazon GameLift's Amazon S3. This is done as part of the build creation process; see CreateBuild.
To request new credentials, specify the build ID as returned with an initial CreateBuild
request. If successful, a new set of credentials are returned, along with the S3 storage location associated with the build ID.
Learn more
Create a Build with Files in S3
Related operations
"
},
"ResolveAlias":{
"name":"ResolveAlias",
@@ -913,6 +1058,22 @@
],
"documentation":"Retrieves the fleet ID that an alias is currently pointing to.
"
},
+ "ResumeGameServerGroup":{
+ "name":"ResumeGameServerGroup",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"ResumeGameServerGroupInput"},
+ "output":{"shape":"ResumeGameServerGroupOutput"},
+ "errors":[
+ {"shape":"InvalidRequestException"},
+ {"shape":"NotFoundException"},
+ {"shape":"UnauthorizedException"},
+ {"shape":"InternalServiceException"}
+ ],
+ "documentation":" This action is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
Reinstates activity on a game server group after it has been suspended. A game server group may be suspended by calling SuspendGameServerGroup, or it may have been involuntarily suspended due to a configuration problem. You can manually resume activity on the group once the configuration problem has been resolved. Refer to the game server group status and status reason for more information on why group activity is suspended.
To resume activity, specify a game server group ARN and the type of activity to be resumed.
Learn more
GameLift FleetIQ Guide
Related operations
"
+ },
"SearchGameSessions":{
"name":"SearchGameSessions",
"http":{
@@ -944,7 +1105,7 @@
{"shape":"UnauthorizedException"},
{"shape":"NotFoundException"}
],
- "documentation":"Resumes activity on a fleet that was suspended with StopFleetActions. Currently, this operation is used to restart a fleet's auto-scaling activity.
To start fleet actions, specify the fleet ID and the type of actions to restart. When auto-scaling fleet actions are restarted, Amazon GameLift once again initiates scaling events as triggered by the fleet's scaling policies. If actions on the fleet were never stopped, this operation will have no effect. You can view a fleet's stopped actions using DescribeFleetAttributes.
Learn more
Working with Fleets.
Related operations
"
+ "documentation":"Resumes activity on a fleet that was suspended with StopFleetActions. Currently, this operation is used to restart a fleet's auto-scaling activity.
To start fleet actions, specify the fleet ID and the type of actions to restart. When auto-scaling fleet actions are restarted, Amazon GameLift once again initiates scaling events as triggered by the fleet's scaling policies. If actions on the fleet were never stopped, this operation will have no effect. You can view a fleet's stopped actions using DescribeFleetAttributes.
Learn more
Setting up GameLift Fleets
Related operations
"
},
"StartGameSessionPlacement":{
"name":"StartGameSessionPlacement",
@@ -1008,7 +1169,7 @@
{"shape":"UnauthorizedException"},
{"shape":"NotFoundException"}
],
- "documentation":"Suspends activity on a fleet. Currently, this operation is used to stop a fleet's auto-scaling activity. It is used to temporarily stop scaling events triggered by the fleet's scaling policies. The policies can be retained and auto-scaling activity can be restarted using StartFleetActions. You can view a fleet's stopped actions using DescribeFleetAttributes.
To stop fleet actions, specify the fleet ID and the type of actions to suspend. When auto-scaling fleet actions are stopped, Amazon GameLift no longer initiates scaling events except to maintain the fleet's desired instances setting (FleetCapacity. Changes to the fleet's capacity must be done manually using UpdateFleetCapacity.
Learn more
Working with Fleets.
Related operations
"
+ "documentation":"Suspends activity on a fleet. Currently, this operation is used to stop a fleet's auto-scaling activity. It is used to temporarily stop triggering scaling events. The policies can be retained and auto-scaling activity can be restarted using StartFleetActions. You can view a fleet's stopped actions using DescribeFleetAttributes.
To stop fleet actions, specify the fleet ID and the type of actions to suspend. When auto-scaling fleet actions are stopped, Amazon GameLift no longer initiates scaling events except in response to manual changes using UpdateFleetCapacity.
Learn more
Setting up GameLift Fleets
Related operations
"
},
"StopGameSessionPlacement":{
"name":"StopGameSessionPlacement",
@@ -1042,6 +1203,22 @@
],
"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 action 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",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"SuspendGameServerGroupInput"},
+ "output":{"shape":"SuspendGameServerGroupOutput"},
+ "errors":[
+ {"shape":"InvalidRequestException"},
+ {"shape":"NotFoundException"},
+ {"shape":"UnauthorizedException"},
+ {"shape":"InternalServiceException"}
+ ],
+ "documentation":" This action is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
Temporarily stops activity on a game server group without terminating instances or the game server group. Activity can be restarted by calling ResumeGameServerGroup. Activities that can suspended are:
-
Instance type replacement. This activity evaluates the current Spot viability of all instance types that are defined for the game server group. It updates the Auto Scaling group to remove nonviable Spot instance types (which have a higher chance of game server interruptions) and rebalances capacity across the remaining viable Spot instance types. When this activity is suspended, the Auto Scaling group continues with its current balance, regardless of viability. Instance protection, utilization metrics, and capacity autoscaling activities continue to be active.
To suspend activity, specify a game server group ARN and the type of activity to be suspended.
Learn more
GameLift FleetIQ Guide
Related operations
"
+ },
"TagResource":{
"name":"TagResource",
"http":{
@@ -1056,7 +1233,7 @@
{"shape":"TaggingFailedException"},
{"shape":"InternalServiceException"}
],
- "documentation":" Assigns a tag to a GameLift resource. AWS resource tags provide an additional management tool set. You can use tags to organize resources, create IAM permissions policies to manage access to groups of resources, customize AWS cost breakdowns, etc. This action handles the permissions necessary to manage tags for the following GameLift resource types:
-
Build
-
Script
-
Fleet
-
Alias
-
GameSessionQueue
-
MatchmakingConfiguration
-
MatchmakingRuleSet
To add a tag to a resource, specify the unique ARN value for the resource and provide a trig list containing one or more tags. The operation succeeds even if the list includes tags that are already assigned to the specified resource.
Learn more
Tagging AWS Resources in the AWS General Reference
AWS Tagging Strategies
Related operations
"
+ "documentation":" Assigns a tag to a GameLift resource. AWS resource tags provide an additional management tool set. You can use tags to organize resources, create IAM permissions policies to manage access to groups of resources, customize AWS cost breakdowns, etc. This action handles the permissions necessary to manage tags for the following GameLift resource types:
-
Build
-
Script
-
Fleet
-
Alias
-
GameSessionQueue
-
MatchmakingConfiguration
-
MatchmakingRuleSet
To add a tag to a resource, specify the unique ARN value for the resource and provide a tag list containing one or more tags. The operation succeeds even if the list includes tags that are already assigned to the specified resource.
Learn more
Tagging AWS Resources in the AWS General Reference
AWS Tagging Strategies
Related operations
"
},
"UntagResource":{
"name":"UntagResource",
@@ -1104,7 +1281,7 @@
{"shape":"NotFoundException"},
{"shape":"InternalServiceException"}
],
- "documentation":"Updates metadata in a build record, including the build name and version. To update the metadata, specify the build ID to update and provide the new values. If successful, a build object containing the updated metadata is returned.
Learn more
Working with Builds
Related operations
"
+ "documentation":"Updates metadata in a build resource, including the build name and version. To update the metadata, specify the build ID to update and provide the new values. If successful, a build object containing the updated metadata is returned.
Learn more
Upload a Custom Server Build
Related operations
"
},
"UpdateFleetAttributes":{
"name":"UpdateFleetAttributes",
@@ -1123,7 +1300,7 @@
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"}
],
- "documentation":"Updates fleet properties, including name and description, for a fleet. To update metadata, specify the fleet ID and the property values that you want to change. If successful, the fleet ID for the updated fleet is returned.
Learn more
Working with Fleets.
Related operations
"
+ "documentation":"Updates fleet properties, including name and description, for a fleet. To update metadata, specify the fleet ID and the property values that you want to change. If successful, the fleet ID for the updated fleet is returned.
Learn more
Setting up GameLift Fleets
Related operations
"
},
"UpdateFleetCapacity":{
"name":"UpdateFleetCapacity",
@@ -1142,7 +1319,7 @@
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"}
],
- "documentation":"Updates capacity settings for a fleet. Use this action to specify the number of EC2 instances (hosts) that you want this fleet to contain. Before calling this action, you may want to call DescribeEC2InstanceLimits to get the maximum capacity based on the fleet's EC2 instance type.
Specify minimum and maximum number of instances. Amazon GameLift will not change fleet capacity to values fall outside of this range. This is particularly important when using auto-scaling (see PutScalingPolicy) to allow capacity to adjust based on player demand while imposing limits on automatic adjustments.
To update fleet capacity, specify the fleet ID and the number of instances you want the fleet to host. If successful, Amazon GameLift starts or terminates instances so that the fleet's active instance count matches the desired instance count. You can view a fleet's current capacity information by calling DescribeFleetCapacity. If the desired instance count is higher than the instance type's limit, the \"Limit Exceeded\" exception occurs.
Learn more
Working with Fleets.
Related operations
"
+ "documentation":"Updates capacity settings for a fleet. Use this action to specify the number of EC2 instances (hosts) that you want this fleet to contain. Before calling this action, you may want to call DescribeEC2InstanceLimits to get the maximum capacity based on the fleet's EC2 instance type.
Specify minimum and maximum number of instances. Amazon GameLift will not change fleet capacity to values fall outside of this range. This is particularly important when using auto-scaling (see PutScalingPolicy) to allow capacity to adjust based on player demand while imposing limits on automatic adjustments.
To update fleet capacity, specify the fleet ID and the number of instances you want the fleet to host. If successful, Amazon GameLift starts or terminates instances so that the fleet's active instance count matches the desired instance count. You can view a fleet's current capacity information by calling DescribeFleetCapacity. If the desired instance count is higher than the instance type's limit, the \"Limit Exceeded\" exception occurs.
Learn more
Setting up GameLift Fleets
Related operations
"
},
"UpdateFleetPortSettings":{
"name":"UpdateFleetPortSettings",
@@ -1161,7 +1338,39 @@
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"}
],
- "documentation":"Updates port settings for a fleet. To update settings, specify the fleet ID to be updated and list the permissions you want to update. List the permissions you want to add in InboundPermissionAuthorizations
, and permissions you want to remove in InboundPermissionRevocations
. Permissions to be removed must match existing fleet permissions. If successful, the fleet ID for the updated fleet is returned.
Learn more
Working with Fleets.
Related operations
"
+ "documentation":"Updates port settings for a fleet. To update settings, specify the fleet ID to be updated and list the permissions you want to update. List the permissions you want to add in InboundPermissionAuthorizations
, and permissions you want to remove in InboundPermissionRevocations
. Permissions to be removed must match existing fleet permissions. If successful, the fleet ID for the updated fleet is returned.
Learn more
Setting up GameLift Fleets
Related operations
"
+ },
+ "UpdateGameServer":{
+ "name":"UpdateGameServer",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"UpdateGameServerInput"},
+ "output":{"shape":"UpdateGameServerOutput"},
+ "errors":[
+ {"shape":"InvalidRequestException"},
+ {"shape":"NotFoundException"},
+ {"shape":"UnauthorizedException"},
+ {"shape":"InternalServiceException"}
+ ],
+ "documentation":" This action is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
Updates information about a registered game server. This action is called by a game server process that is running on an instance in a game server group. There are three reasons to update game server information: (1) to change the utilization status of the game server, (2) to report game server health status, and (3) to change game server metadata. A registered game server should regularly report health and should update utilization status when it is supporting gameplay so that GameLift FleetIQ can accurately track game server availability. You can make all three types of updates in the same request.
-
To update the game server's utilization status, identify the game server and game server group and specify the current utilization status. Use this status to identify when game servers are currently hosting games and when they are available to be claimed.
-
To report health status, identify the game server and game server group and set health check to HEALTHY. If a game server does not report health status for a certain length of time, the game server is no longer considered healthy and will be eventually de-registered from the game server group to avoid affecting utilization metrics. The best practice is to report health every 60 seconds.
-
To change game server metadata, provide updated game server data and custom sort key values.
Once a game server is successfully updated, the relevant statuses and timestamps are updated.
Learn more
GameLift FleetIQ Guide
Related operations
"
+ },
+ "UpdateGameServerGroup":{
+ "name":"UpdateGameServerGroup",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"UpdateGameServerGroupInput"},
+ "output":{"shape":"UpdateGameServerGroupOutput"},
+ "errors":[
+ {"shape":"InvalidRequestException"},
+ {"shape":"NotFoundException"},
+ {"shape":"UnauthorizedException"},
+ {"shape":"InternalServiceException"}
+ ],
+ "documentation":" This action is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
Updates GameLift FleetIQ-specific properties for a game server group. These properties include instance rebalancing and game server protection. Many Auto Scaling group properties are updated directly. These include autoscaling policies, minimum/maximum/desired instance counts, and launch template.
To update the game server group, specify the game server group ID and provide the updated values.
Updated properties are validated to ensure that GameLift FleetIQ can continue to perform its core instance rebalancing activity. When you change Auto Scaling group properties directly and the changes cause errors with GameLift FleetIQ activities, an alert is sent.
Learn more
GameLift FleetIQ Guide
Updating a GameLift FleetIQ-Linked Auto Scaling Group
Related operations
"
},
"UpdateGameSession":{
"name":"UpdateGameSession",
@@ -1195,7 +1404,7 @@
{"shape":"NotFoundException"},
{"shape":"UnauthorizedException"}
],
- "documentation":"Updates settings for a game session queue, which determines how new game session requests in the queue are processed. To update settings, specify the queue name to be updated and provide the new settings. When updating destinations, provide a complete list of destinations.
"
+ "documentation":"Updates settings for a game session queue, which determines how new game session requests in the queue are processed. To update settings, specify the queue name to be updated and provide the new settings. When updating destinations, provide a complete list of destinations.
Learn more
Using Multi-Region Queues
Related operations
"
},
"UpdateMatchmakingConfiguration":{
"name":"UpdateMatchmakingConfiguration",
@@ -1228,7 +1437,7 @@
{"shape":"InvalidRequestException"},
{"shape":"InvalidFleetStatusException"}
],
- "documentation":"Updates the current runtime configuration for the specified fleet, which tells Amazon GameLift how to launch server processes on instances in the fleet. You can update a fleet's runtime configuration at any time after the fleet is created; it does not need to be in an ACTIVE
status.
To update runtime configuration, specify the fleet ID and provide a RuntimeConfiguration
object with an updated set of server process configurations.
Each instance in a Amazon GameLift fleet checks regularly for an updated runtime configuration and changes how it launches server processes to comply with the latest version. Existing server processes are not affected by the update; runtime configuration changes are applied gradually as existing processes shut down and new processes are launched during Amazon GameLift's normal process recycling activity.
Learn more
Working with Fleets.
Related operations
"
+ "documentation":"Updates the current runtime configuration for the specified fleet, which tells Amazon GameLift how to launch server processes on instances in the fleet. You can update a fleet's runtime configuration at any time after the fleet is created; it does not need to be in an ACTIVE
status.
To update runtime configuration, specify the fleet ID and provide a RuntimeConfiguration
object with an updated set of server process configurations.
Each instance in a Amazon GameLift fleet checks regularly for an updated runtime configuration and changes how it launches server processes to comply with the latest version. Existing server processes are not affected by the update; runtime configuration changes are applied gradually as existing processes shut down and new processes are launched during Amazon GameLift's normal process recycling activity.
Learn more
Setting up GameLift Fleets
Related operations
"
},
"UpdateScript":{
"name":"UpdateScript",
@@ -1310,8 +1519,8 @@
"documentation":"A descriptive label that is associated with an alias. Alias names do not need to be unique.
"
},
"AliasArn":{
- "shape":"ArnStringModel",
- "documentation":"Amazon Resource Name (ARN) that is assigned to a GameLift alias resource and uniquely identifies it. ARNs are unique across all Regions.. In a GameLift alias ARN, the resource ID matches the alias ID value.
"
+ "shape":"AliasArn",
+ "documentation":"Amazon Resource Name (ARN) that is assigned to a GameLift alias resource and uniquely identifies it. ARNs are unique across all Regions. In a GameLift alias ARN, the resource ID matches the alias ID value.
"
},
"Description":{
"shape":"FreeText",
@@ -1332,7 +1541,15 @@
},
"documentation":"Properties that describe an alias resource.
"
},
+ "AliasArn":{
+ "type":"string",
+ "pattern":"^arn:.*:alias\\/alias-\\S+"
+ },
"AliasId":{
+ "type":"string",
+ "pattern":"^alias-\\S+"
+ },
+ "AliasIdOrArn":{
"type":"string",
"pattern":"^alias-\\S+|^arn:.*:alias\\/alias-\\S+"
},
@@ -1373,6 +1590,12 @@
},
"documentation":"Values for use in Player attribute key-value pairs. This object lets you specify an attribute value using any of the valid data types: string, number, string array, or data map. Each AttributeValue
object can use only one of the available properties.
"
},
+ "AutoScalingGroupArn":{
+ "type":"string",
+ "max":256,
+ "min":0,
+ "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
+ },
"AwsCredentials":{
"type":"structure",
"members":{
@@ -1399,6 +1622,13 @@
"MANUAL"
]
},
+ "BalancingStrategy":{
+ "type":"string",
+ "enum":[
+ "SPOT_ONLY",
+ "SPOT_PREFERRED"
+ ]
+ },
"BooleanModel":{"type":"boolean"},
"Build":{
"type":"structure",
@@ -1443,6 +1673,10 @@
"pattern":"^arn:.*:build\\/build-\\S+"
},
"BuildId":{
+ "type":"string",
+ "pattern":"^build-\\S+"
+ },
+ "BuildIdOrArn":{
"type":"string",
"pattern":"^build-\\S+|^arn:.*:build\\/build-\\S+"
},
@@ -1476,6 +1710,33 @@
"GENERATED"
]
},
+ "ClaimGameServerInput":{
+ "type":"structure",
+ "required":["GameServerGroupName"],
+ "members":{
+ "GameServerGroupName":{
+ "shape":"GameServerGroupNameOrArn",
+ "documentation":"An identifier for the game server group. When claiming a specific game server, this is the game server group whether the game server is located. When requesting that GameLift FleetIQ locate an available game server, this is the game server group to search on. You can use either the GameServerGroup name or ARN value.
"
+ },
+ "GameServerId":{
+ "shape":"GameServerId",
+ "documentation":"A custom string that uniquely identifies the game server to claim. If this parameter is left empty, GameLift FleetIQ searches for an available game server in the specified game server group.
"
+ },
+ "GameServerData":{
+ "shape":"GameServerData",
+ "documentation":"A set of custom game server properties, formatted as a single string value, to be passed to the claimed game server.
"
+ }
+ }
+ },
+ "ClaimGameServerOutput":{
+ "type":"structure",
+ "members":{
+ "GameServer":{
+ "shape":"GameServer",
+ "documentation":"Object that describes the newly claimed game server resource.
"
+ }
+ }
+ },
"ComparisonOperatorType":{
"type":"string",
"enum":[
@@ -1542,7 +1803,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 Amazon S3 bucket that you own. The storage location must specify an Amazon S3 bucket name and key. The location must also specify a role ARN that you set up to allow Amazon GameLift to access your Amazon S3 bucket. The S3 bucket and your new build must be in the same Region.
"
+ "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.
"
},
"OperatingSystem":{
"shape":"OperatingSystem",
@@ -1560,11 +1821,11 @@
"members":{
"Build":{
"shape":"Build",
- "documentation":"The newly created build record, including a unique build IDs and status.
"
+ "documentation":"The newly created build resource, including a unique build IDs and status.
"
},
"UploadCredentials":{
"shape":"AwsCredentials",
- "documentation":"This element is returned only when the operation is called without a storage location. It contains credentials to use when you are uploading a build file to an Amazon S3 bucket that is owned by Amazon GameLift. Credentials have a limited life span. To refresh these credentials, call RequestUploadCredentials.
"
+ "documentation":"This element is returned only when the operation is called without a storage location. It contains credentials to use when you are uploading a build file to an S3 bucket that is owned by Amazon GameLift. Credentials have a limited life span. To refresh these credentials, call RequestUploadCredentials.
"
},
"StorageLocation":{
"shape":"S3Location",
@@ -1589,11 +1850,11 @@
"documentation":"A human-readable description of a fleet.
"
},
"BuildId":{
- "shape":"BuildId",
+ "shape":"BuildIdOrArn",
"documentation":"A unique identifier for a build to be deployed on the new fleet. You can use either the build ID or ARN value. The custom game server build must have been successfully uploaded to Amazon GameLift and be in a READY
status. This fleet setting cannot be changed once the fleet is created.
"
},
"ScriptId":{
- "shape":"ScriptId",
+ "shape":"ScriptIdOrArn",
"documentation":"A unique identifier for a Realtime script to be deployed on the new fleet. You can use either the script ID or ARN value. The Realtime script must have been successfully uploaded to Amazon GameLift. This fleet setting cannot be changed once the fleet is created.
"
},
"ServerLaunchPath":{
@@ -1669,16 +1930,82 @@
},
"documentation":"Represents the returned data in response to a request action.
"
},
+ "CreateGameServerGroupInput":{
+ "type":"structure",
+ "required":[
+ "GameServerGroupName",
+ "RoleArn",
+ "MinSize",
+ "MaxSize",
+ "LaunchTemplate",
+ "InstanceDefinitions"
+ ],
+ "members":{
+ "GameServerGroupName":{
+ "shape":"GameServerGroupName",
+ "documentation":"An identifier for the new game server group. This value is used to generate unique ARN identifiers for the EC2 Auto Scaling group and the GameLift FleetIQ game server group. The name must be unique per Region per AWS account.
"
+ },
+ "RoleArn":{
+ "shape":"IamRoleArn",
+ "documentation":"The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access your EC2 Auto Scaling groups. The submitted role is validated to ensure that it contains the necessary permissions for game server groups.
"
+ },
+ "MinSize":{
+ "shape":"WholeNumber",
+ "documentation":"The minimum number of instances allowed in the EC2 Auto Scaling group. During autoscaling events, GameLift FleetIQ and EC2 do not scale down the group below this minimum. In production, this value should be set to at least 1.
"
+ },
+ "MaxSize":{
+ "shape":"PositiveInteger",
+ "documentation":"The maximum number of instances allowed in the EC2 Auto Scaling group. During autoscaling events, GameLift FleetIQ and EC2 do not scale up the group above this maximum.
"
+ },
+ "LaunchTemplate":{
+ "shape":"LaunchTemplateSpecification",
+ "documentation":"The EC2 launch template that contains configuration settings and game server code to be deployed to all instances in the game server group. You can specify the template using either the template name or ID. For help with creating a launch template, see Creating a Launch Template for an Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.
"
+ },
+ "InstanceDefinitions":{
+ "shape":"InstanceDefinitions",
+ "documentation":"A set of EC2 instance types to use when creating instances in the group. The instance definitions must specify at least two different instance types that are supported by GameLift FleetIQ. For more information on instance types, see EC2 Instance Types in the Amazon EC2 User Guide.
"
+ },
+ "AutoScalingPolicy":{
+ "shape":"GameServerGroupAutoScalingPolicy",
+ "documentation":"Configuration settings to define a scaling policy for the Auto Scaling group that is optimized for game hosting. The scaling policy uses the metric \"PercentUtilizedGameServers\" to maintain a buffer of idle game servers that can immediately accommodate new games and players. Once the game server and Auto Scaling groups are created, you can update the scaling policy settings directly in Auto Scaling Groups.
"
+ },
+ "BalancingStrategy":{
+ "shape":"BalancingStrategy",
+ "documentation":"The fallback balancing method to use for the game server group when Spot instances in a Region become unavailable or are not viable for game hosting. Once triggered, this method remains active until Spot instances can once again be used. Method options include:
-
SPOT_ONLY -- If Spot instances are unavailable, the game server group provides no hosting capacity. No new instances are started, and the existing nonviable Spot instances are terminated (once current gameplay ends) and not replaced.
-
SPOT_PREFERRED -- If Spot instances are unavailable, the game server group continues to provide hosting capacity by using On-Demand instances. Existing nonviable Spot instances are terminated (once current gameplay ends) and replaced with new On-Demand instances.
"
+ },
+ "GameServerProtectionPolicy":{
+ "shape":"GameServerProtectionPolicy",
+ "documentation":"A flag that indicates whether instances in the game server group are protected from early termination. Unprotected instances that have active game servers running may by terminated during a scale-down event, causing players to be dropped from the game. Protected instances cannot be terminated while there are active game servers running. An exception to this is Spot Instances, which may be terminated by AWS regardless of protection status. This property is set to NO_PROTECTION by default.
"
+ },
+ "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; this parameter allows you to specify VPCs that you've set up.
"
+ },
+ "Tags":{
+ "shape":"TagList",
+ "documentation":"A list of labels to assign to the new game server group resource. Tags are developer-defined key-value pairs. Tagging AWS resources are useful for resource management, access management, and cost allocation. For more information, see Tagging AWS Resources in the AWS General Reference. Once the resource is created, you can use TagResource, UntagResource, and ListTagsForResource to add, remove, and view tags. The maximum tag limit may be lower than stated. See the AWS General Reference for actual tagging limits.
"
+ }
+ }
+ },
+ "CreateGameServerGroupOutput":{
+ "type":"structure",
+ "members":{
+ "GameServerGroup":{
+ "shape":"GameServerGroup",
+ "documentation":"The newly created game server group object, including the new ARN value for the GameLift FleetIQ game server group and the object's status. The EC2 Auto Scaling group ARN is initially null, since the group has not yet been created. This value is added once the game server group status reaches ACTIVE.
"
+ }
+ }
+ },
"CreateGameSessionInput":{
"type":"structure",
"required":["MaximumPlayerSessionCount"],
"members":{
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to create a game session in. You can use either the fleet ID or ARN value. Each request must reference either a fleet ID or alias ID, but not both.
"
},
"AliasId":{
- "shape":"AliasId",
+ "shape":"AliasIdOrArn",
"documentation":"A unique identifier for an alias associated with the fleet to create a game session in. You can use either the alias ID or ARN value. Each request must reference either a fleet ID or alias ID, but not both.
"
},
"MaximumPlayerSessionCount":{
@@ -2035,7 +2362,7 @@
"required":["AliasId"],
"members":{
"AliasId":{
- "shape":"AliasId",
+ "shape":"AliasIdOrArn",
"documentation":"A unique identifier of the alias that you want to delete. You can use either the alias ID or ARN value.
"
}
},
@@ -2046,7 +2373,7 @@
"required":["BuildId"],
"members":{
"BuildId":{
- "shape":"BuildId",
+ "shape":"BuildIdOrArn",
"documentation":"A unique identifier for a build to delete. You can use either the build ID or ARN value.
"
}
},
@@ -2057,18 +2384,41 @@
"required":["FleetId"],
"members":{
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to be deleted. You can use either the fleet ID or ARN value.
"
}
},
"documentation":"Represents the input for a request action.
"
},
+ "DeleteGameServerGroupInput":{
+ "type":"structure",
+ "required":["GameServerGroupName"],
+ "members":{
+ "GameServerGroupName":{
+ "shape":"GameServerGroupNameOrArn",
+ "documentation":"The unique identifier of the game server group to delete. Use either the GameServerGroup name or ARN value.
"
+ },
+ "DeleteOption":{
+ "shape":"GameServerGroupDeleteOption",
+ "documentation":"The type of delete to perform. Options include:
-
SAFE_DELETE – Terminates the game server group and EC2 Auto Scaling group only when it has no game servers that are in IN_USE 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.
"
+ }
+ }
+ },
+ "DeleteGameServerGroupOutput":{
+ "type":"structure",
+ "members":{
+ "GameServerGroup":{
+ "shape":"GameServerGroup",
+ "documentation":"An object that describes the deleted game server group resource, with status updated to DELETE_SCHEDULED.
"
+ }
+ }
+ },
"DeleteGameSessionQueueInput":{
"type":"structure",
"required":["Name"],
"members":{
"Name":{
- "shape":"GameSessionQueueName",
+ "shape":"GameSessionQueueNameOrArn",
"documentation":"A descriptive label that is associated with game session queue. Queue names must be unique within each Region. You can use either the queue ID or ARN value.
"
}
},
@@ -2124,7 +2474,7 @@
"documentation":"A descriptive label that is associated with a scaling policy. Policy names do not need to be unique.
"
},
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to be deleted. You can use either the fleet ID or ARN value.
"
}
},
@@ -2135,7 +2485,7 @@
"required":["ScriptId"],
"members":{
"ScriptId":{
- "shape":"ScriptId",
+ "shape":"ScriptIdOrArn",
"documentation":"A unique identifier for a Realtime script to delete. You can use either the script ID or ARN value.
"
}
}
@@ -2186,12 +2536,29 @@
"members":{
}
},
+ "DeregisterGameServerInput":{
+ "type":"structure",
+ "required":[
+ "GameServerGroupName",
+ "GameServerId"
+ ],
+ "members":{
+ "GameServerGroupName":{
+ "shape":"GameServerGroupNameOrArn",
+ "documentation":"An identifier for the game server group where the game server to be de-registered is running. Use either the GameServerGroup name or ARN value.
"
+ },
+ "GameServerId":{
+ "shape":"GameServerId",
+ "documentation":"The identifier for the game server to be de-registered.
"
+ }
+ }
+ },
"DescribeAliasInput":{
"type":"structure",
"required":["AliasId"],
"members":{
"AliasId":{
- "shape":"AliasId",
+ "shape":"AliasIdOrArn",
"documentation":"The unique identifier for the fleet alias that you want to retrieve. You can use either the alias ID or ARN value.
"
}
},
@@ -2212,7 +2579,7 @@
"required":["BuildId"],
"members":{
"BuildId":{
- "shape":"BuildId",
+ "shape":"BuildIdOrArn",
"documentation":"A unique identifier for a build to retrieve properties for. You can use either the build ID or ARN value.
"
}
},
@@ -2252,8 +2619,8 @@
"type":"structure",
"members":{
"FleetIds":{
- "shape":"FleetIdList",
- "documentation":"A unique identifier for a fleet(s) to retrieve attributes for. You can use either the fleet ID or ARN value.
"
+ "shape":"FleetIdOrArnList",
+ "documentation":"A list of unique fleet identifiers to retrieve attributes for. You can use either the fleet ID or ARN value. To retrieve attributes for all current fleets, do not include this parameter. If the list of fleet identifiers includes fleets that don't currently exist, the request succeeds but no attributes for that fleet are returned.
"
},
"Limit":{
"shape":"PositiveInteger",
@@ -2271,7 +2638,7 @@
"members":{
"FleetAttributes":{
"shape":"FleetAttributesList",
- "documentation":"A collection of objects containing attribute metadata for each requested fleet ID.
"
+ "documentation":"A collection of objects containing attribute metadata for each requested fleet ID. Attribute objects are returned only for fleets that currently exist.
"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
@@ -2284,7 +2651,7 @@
"type":"structure",
"members":{
"FleetIds":{
- "shape":"FleetIdList",
+ "shape":"FleetIdOrArnList",
"documentation":"A unique identifier for a fleet(s) to retrieve capacity information for. You can use either the fleet ID or ARN value.
"
},
"Limit":{
@@ -2317,7 +2684,7 @@
"required":["FleetId"],
"members":{
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to get event logs for. You can use either the fleet ID or ARN value.
"
},
"StartTime":{
@@ -2358,7 +2725,7 @@
"required":["FleetId"],
"members":{
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to retrieve port settings for. You can use either the fleet ID or ARN value.
"
}
},
@@ -2378,8 +2745,8 @@
"type":"structure",
"members":{
"FleetIds":{
- "shape":"FleetIdList",
- "documentation":"A unique identifier for a fleet(s) to retrieve utilization data for. You can use either the fleet ID or ARN value.
"
+ "shape":"FleetIdOrArnList",
+ "documentation":"A unique identifier for a fleet(s) to retrieve utilization data for. You can use either the fleet ID or ARN value. To retrieve attributes for all current fleets, do not include this parameter. If the list of fleet identifiers includes fleets that don't currently exist, the request succeeds but no attributes for that fleet are returned.
"
},
"Limit":{
"shape":"PositiveInteger",
@@ -2406,11 +2773,56 @@
},
"documentation":"Represents the returned data in response to a request action.
"
},
+ "DescribeGameServerGroupInput":{
+ "type":"structure",
+ "required":["GameServerGroupName"],
+ "members":{
+ "GameServerGroupName":{
+ "shape":"GameServerGroupNameOrArn",
+ "documentation":"The unique identifier for the game server group being requested. Use either the GameServerGroup name or ARN value.
"
+ }
+ }
+ },
+ "DescribeGameServerGroupOutput":{
+ "type":"structure",
+ "members":{
+ "GameServerGroup":{
+ "shape":"GameServerGroup",
+ "documentation":"An object that describes the requested game server group resource.
"
+ }
+ }
+ },
+ "DescribeGameServerInput":{
+ "type":"structure",
+ "required":[
+ "GameServerGroupName",
+ "GameServerId"
+ ],
+ "members":{
+ "GameServerGroupName":{
+ "shape":"GameServerGroupNameOrArn",
+ "documentation":"An identifier for the game server group where the game server is running. Use either the GameServerGroup name or ARN value.
"
+ },
+ "GameServerId":{
+ "shape":"GameServerId",
+ "documentation":"The identifier for the game server to be retrieved.
"
+ }
+ }
+ },
+ "DescribeGameServerOutput":{
+ "type":"structure",
+ "members":{
+ "GameServer":{
+ "shape":"GameServer",
+ "documentation":"Object that describes the requested game server resource.
"
+ }
+ }
+ },
"DescribeGameSessionDetailsInput":{
"type":"structure",
"members":{
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to retrieve all game sessions active on the fleet. You can use either the fleet ID or ARN value.
"
},
"GameSessionId":{
@@ -2418,7 +2830,7 @@
"documentation":"A unique identifier for the game session to retrieve.
"
},
"AliasId":{
- "shape":"AliasId",
+ "shape":"AliasIdOrArn",
"documentation":"A unique identifier for an alias associated with the fleet to retrieve all game sessions for. You can use either the alias ID or ARN value.
"
},
"StatusFilter":{
@@ -2475,7 +2887,7 @@
"type":"structure",
"members":{
"Names":{
- "shape":"GameSessionQueueNameList",
+ "shape":"GameSessionQueueNameOrArnList",
"documentation":"A list of queue names to retrieve information for. You can use either the queue ID or ARN value. To request settings for all queues, leave this parameter empty.
"
},
"Limit":{
@@ -2507,7 +2919,7 @@
"type":"structure",
"members":{
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to retrieve all game sessions for. You can use either the fleet ID or ARN value.
"
},
"GameSessionId":{
@@ -2515,7 +2927,7 @@
"documentation":"A unique identifier for the game session to retrieve.
"
},
"AliasId":{
- "shape":"AliasId",
+ "shape":"AliasIdOrArn",
"documentation":"A unique identifier for an alias associated with the fleet to retrieve all game sessions for. You can use either the alias ID or ARN value.
"
},
"StatusFilter":{
@@ -2552,7 +2964,7 @@
"required":["FleetId"],
"members":{
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to retrieve instance information for. You can use either the fleet ID or ARN value.
"
},
"InstanceId":{
@@ -2723,7 +3135,7 @@
"required":["FleetId"],
"members":{
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to get the runtime configuration for. You can use either the fleet ID or ARN value.
"
}
},
@@ -2744,7 +3156,7 @@
"required":["FleetId"],
"members":{
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to retrieve scaling policies for. You can use either the fleet ID or ARN value.
"
},
"StatusFilter":{
@@ -2781,7 +3193,7 @@
"required":["ScriptId"],
"members":{
"ScriptId":{
- "shape":"ScriptId",
+ "shape":"ScriptIdOrArn",
"documentation":"A unique identifier for a Realtime script to retrieve properties for. You can use either the script ID or ARN value.
"
}
}
@@ -2882,7 +3294,7 @@
"documentation":"Number of instances in the fleet that are no longer active but haven't yet been terminated.
"
}
},
- "documentation":"Current status of fleet capacity. The number of active instances should match or be in the process of matching the number of desired instances. Pending and terminating counts are non-zero only if fleet capacity is adjusting to an UpdateFleetCapacity request, or if access to resources is temporarily affected.
"
+ "documentation":"Current status of fleet capacity. The number of active instances should match or be in the process of matching the number of desired instances. Pending and terminating counts are non-zero only if fleet capacity is adjusting to an UpdateFleetCapacity request, or if access to resources is temporarily affected.
"
},
"EC2InstanceLimit":{
"type":"structure",
@@ -2982,7 +3394,7 @@
},
"EventCode":{
"shape":"EventCode",
- "documentation":"The type of event being logged.
Fleet creation events (ordered by fleet creation activity):
-
FLEET_CREATED -- A fleet record was successfully created with a status of NEW
. Event messaging includes the fleet ID.
-
FLEET_STATE_DOWNLOADING -- Fleet status changed from NEW
to DOWNLOADING
. The compressed build has started downloading to a fleet instance for installation.
-
FLEET_BINARY_DOWNLOAD_FAILED -- The build failed to download to the fleet instance.
-
FLEET_CREATION_EXTRACTING_BUILD – The game server build was successfully downloaded to an instance, and the build files are now being extracted from the uploaded build and saved to an instance. Failure at this stage prevents a fleet from moving to ACTIVE
status. Logs for this stage display a list of the files that are extracted and saved on the instance. Access the logs by using the URL in PreSignedLogUrl.
-
FLEET_CREATION_RUNNING_INSTALLER – The game server build files were successfully extracted, and the Amazon GameLift is now running the build's install script (if one is included). Failure in this stage prevents a fleet from moving to ACTIVE
status. Logs for this stage list the installation steps and whether or not the install completed successfully. Access the logs by using the URL in PreSignedLogUrl.
-
FLEET_CREATION_VALIDATING_RUNTIME_CONFIG -- The build process was successful, and the Amazon GameLift is now verifying that the game server launch paths, which are specified in the fleet's runtime configuration, exist. If any listed launch path exists, Amazon GameLift tries to launch a game server process and waits for the process to report ready. Failures in this stage prevent a fleet from moving to ACTIVE
status. Logs for this stage list the launch paths in the runtime configuration and indicate whether each is found. Access the logs by using the URL in PreSignedLogUrl.
-
FLEET_STATE_VALIDATING -- Fleet status changed from DOWNLOADING
to VALIDATING
.
-
FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND -- Validation of the runtime configuration failed because the executable specified in a launch path does not exist on the instance.
-
FLEET_STATE_BUILDING -- Fleet status changed from VALIDATING
to BUILDING
.
-
FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE -- Validation of the runtime configuration failed because the executable specified in a launch path failed to run on the fleet instance.
-
FLEET_STATE_ACTIVATING -- Fleet status changed from BUILDING
to ACTIVATING
.
-
FLEET_ACTIVATION_FAILED - The fleet failed to successfully complete one of the steps in the fleet activation process. This event code indicates that the game build was successfully downloaded to a fleet instance, built, and validated, but was not able to start a server process. Learn more at Debug Fleet Creation Issues
-
FLEET_STATE_ACTIVE -- The fleet's status changed from ACTIVATING
to ACTIVE
. The fleet is now ready to host game sessions.
VPC peering events:
-
FLEET_VPC_PEERING_SUCCEEDED -- A VPC peering connection has been established between the VPC for an Amazon GameLift fleet and a VPC in your AWS account.
-
FLEET_VPC_PEERING_FAILED -- A requested VPC peering connection has failed. Event details and status information (see DescribeVpcPeeringConnections) provide additional detail. A common reason for peering failure is that the two VPCs have overlapping CIDR blocks of IPv4 addresses. To resolve this, change the CIDR block for the VPC in your AWS account. For more information on VPC peering failures, see https://docs.aws.amazon.com/AmazonVPC/latest/PeeringGuide/invalid-peering-configurations.html
-
FLEET_VPC_PEERING_DELETED -- A VPC peering connection has been successfully deleted.
Spot instance events:
Other fleet events:
-
FLEET_SCALING_EVENT -- A change was made to the fleet's capacity settings (desired instances, minimum/maximum scaling limits). Event messaging includes the new capacity settings.
-
FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED -- A change was made to the fleet's game session protection policy setting. Event messaging includes both the old and new policy setting.
-
FLEET_DELETED -- A request to delete a fleet was initiated.
-
GENERIC_EVENT -- An unspecified event has occurred.
"
+ "documentation":"The type of event being logged.
Fleet creation events (ordered by fleet creation activity):
-
FLEET_CREATED -- A fleet resource was successfully created with a status of NEW
. Event messaging includes the fleet ID.
-
FLEET_STATE_DOWNLOADING -- Fleet status changed from NEW
to DOWNLOADING
. The compressed build has started downloading to a fleet instance for installation.
-
FLEET_BINARY_DOWNLOAD_FAILED -- The build failed to download to the fleet instance.
-
FLEET_CREATION_EXTRACTING_BUILD – The game server build was successfully downloaded to an instance, and the build files are now being extracted from the uploaded build and saved to an instance. Failure at this stage prevents a fleet from moving to ACTIVE
status. Logs for this stage display a list of the files that are extracted and saved on the instance. Access the logs by using the URL in PreSignedLogUrl.
-
FLEET_CREATION_RUNNING_INSTALLER – The game server build files were successfully extracted, and the Amazon GameLift is now running the build's install script (if one is included). Failure in this stage prevents a fleet from moving to ACTIVE
status. Logs for this stage list the installation steps and whether or not the install completed successfully. Access the logs by using the URL in PreSignedLogUrl.
-
FLEET_CREATION_VALIDATING_RUNTIME_CONFIG -- The build process was successful, and the Amazon GameLift is now verifying that the game server launch paths, which are specified in the fleet's runtime configuration, exist. If any listed launch path exists, Amazon GameLift tries to launch a game server process and waits for the process to report ready. Failures in this stage prevent a fleet from moving to ACTIVE
status. Logs for this stage list the launch paths in the runtime configuration and indicate whether each is found. Access the logs by using the URL in PreSignedLogUrl.
-
FLEET_STATE_VALIDATING -- Fleet status changed from DOWNLOADING
to VALIDATING
.
-
FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND -- Validation of the runtime configuration failed because the executable specified in a launch path does not exist on the instance.
-
FLEET_STATE_BUILDING -- Fleet status changed from VALIDATING
to BUILDING
.
-
FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE -- Validation of the runtime configuration failed because the executable specified in a launch path failed to run on the fleet instance.
-
FLEET_STATE_ACTIVATING -- Fleet status changed from BUILDING
to ACTIVATING
.
-
FLEET_ACTIVATION_FAILED - The fleet failed to successfully complete one of the steps in the fleet activation process. This event code indicates that the game build was successfully downloaded to a fleet instance, built, and validated, but was not able to start a server process. Learn more at Debug Fleet Creation Issues
-
FLEET_STATE_ACTIVE -- The fleet's status changed from ACTIVATING
to ACTIVE
. The fleet is now ready to host game sessions.
VPC peering events:
-
FLEET_VPC_PEERING_SUCCEEDED -- A VPC peering connection has been established between the VPC for an Amazon GameLift fleet and a VPC in your AWS account.
-
FLEET_VPC_PEERING_FAILED -- A requested VPC peering connection has failed. Event details and status information (see DescribeVpcPeeringConnections) provide additional detail. A common reason for peering failure is that the two VPCs have overlapping CIDR blocks of IPv4 addresses. To resolve this, change the CIDR block for the VPC in your AWS account. For more information on VPC peering failures, see https://docs.aws.amazon.com/AmazonVPC/latest/PeeringGuide/invalid-peering-configurations.html
-
FLEET_VPC_PEERING_DELETED -- A VPC peering connection has been successfully deleted.
Spot instance events:
Other fleet events:
-
FLEET_SCALING_EVENT -- A change was made to the fleet's capacity settings (desired instances, minimum/maximum scaling limits). Event messaging includes the new capacity settings.
-
FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED -- A change was made to the fleet's game session protection policy setting. Event messaging includes both the old and new policy setting.
-
FLEET_DELETED -- A request to delete a fleet was initiated.
-
GENERIC_EVENT -- An unspecified event has occurred.
"
},
"Message":{
"shape":"NonEmptyString",
@@ -3051,6 +3463,10 @@
"max":1,
"min":1
},
+ "FleetArn":{
+ "type":"string",
+ "pattern":"^arn:.*:fleet\\/fleet-\\S+"
+ },
"FleetAttributes":{
"type":"structure",
"members":{
@@ -3059,7 +3475,7 @@
"documentation":"A unique identifier for a fleet.
"
},
"FleetArn":{
- "shape":"ArnStringModel",
+ "shape":"FleetArn",
"documentation":"The Amazon Resource Name (ARN) that is assigned to a GameLift fleet resource and uniquely identifies it. ARNs are unique across all Regions. In a GameLift fleet ARN, the resource ID matches the FleetId value.
"
},
"FleetType":{
@@ -3147,7 +3563,7 @@
"documentation":"Indicates whether a TLS/SSL certificate was generated for the fleet.
"
}
},
- "documentation":"General properties describing a fleet.
"
+ "documentation":"General properties describing a fleet.
"
},
"FleetAttributesList":{
"type":"list",
@@ -3169,7 +3585,7 @@
"documentation":"Current status of fleet capacity.
"
}
},
- "documentation":"Information about the fleet's capacity. Fleet capacity is measured in EC2 instances. By default, new fleets have a capacity of one instance, but can be updated as needed. The maximum number of instances for a fleet is determined by the fleet's instance type.
"
+ "documentation":"Information about the fleet's capacity. Fleet capacity is measured in EC2 instances. By default, new fleets have a capacity of one instance, but can be updated as needed. The maximum number of instances for a fleet is determined by the fleet's instance type.
"
},
"FleetCapacityExceededException":{
"type":"structure",
@@ -3185,13 +3601,22 @@
},
"FleetId":{
"type":"string",
- "pattern":"^fleet-\\S+|^arn:.*:fleet\\/fleet-\\S+"
+ "pattern":"^fleet-\\S+"
},
"FleetIdList":{
"type":"list",
"member":{"shape":"FleetId"},
"min":1
},
+ "FleetIdOrArn":{
+ "type":"string",
+ "pattern":"^fleet-\\S+|^arn:.*:fleet\\/fleet-\\S+"
+ },
+ "FleetIdOrArnList":{
+ "type":"list",
+ "member":{"shape":"FleetIdOrArn"},
+ "min":1
+ },
"FleetStatus":{
"type":"string",
"enum":[
@@ -3237,7 +3662,7 @@
"documentation":"The maximum number of players allowed across all game sessions currently being hosted on all instances in the fleet.
"
}
},
- "documentation":"Current status of fleet utilization, including the number of game and player sessions being hosted.
"
+ "documentation":"Current status of fleet utilization, including the number of game and player sessions being hosted.
"
},
"FleetUtilizationList":{
"type":"list",
@@ -3263,18 +3688,294 @@
},
"documentation":"Set of key-value pairs that contain information about a game session. When included in a game session request, these properties communicate details to be used when setting up the new game session. For example, a game property might specify a game mode, level, or map. Game properties are passed to the game server process when initiating a new game session. For more information, see the Amazon GameLift Developer Guide.
"
},
- "GamePropertyKey":{
+ "GamePropertyKey":{
+ "type":"string",
+ "max":32
+ },
+ "GamePropertyList":{
+ "type":"list",
+ "member":{"shape":"GameProperty"},
+ "max":16
+ },
+ "GamePropertyValue":{
+ "type":"string",
+ "max":96
+ },
+ "GameServer":{
+ "type":"structure",
+ "members":{
+ "GameServerGroupName":{
+ "shape":"GameServerGroupName",
+ "documentation":"The name identifier for the game server group where the game server is located.
"
+ },
+ "GameServerGroupArn":{
+ "shape":"GameServerGroupArn",
+ "documentation":"The ARN identifier for the game server group where the game server is located.
"
+ },
+ "GameServerId":{
+ "shape":"GameServerId",
+ "documentation":"A custom string that uniquely identifies the game server. Game server IDs are developer-defined and are unique across all game server groups in an AWS account.
"
+ },
+ "InstanceId":{
+ "shape":"GameServerInstanceId",
+ "documentation":"The unique identifier for the instance where the game server is located.
"
+ },
+ "ConnectionInfo":{
+ "shape":"GameServerConnectionInfo",
+ "documentation":"The port and IP address that must be used to establish a client connection to the game server.
"
+ },
+ "GameServerData":{
+ "shape":"GameServerData",
+ "documentation":"A set of custom game server properties, formatted as a single string value. This data is passed to a game client or service in response to requests ListGameServers or ClaimGameServer. This property can be updated using UpdateGameServer.
"
+ },
+ "CustomSortKey":{
+ "shape":"GameServerSortKey",
+ "documentation":"A game server tag that can be used to request sorted lists of game servers when calling ListGameServers. Custom sort keys are developer-defined. This property can be updated using UpdateGameServer.
"
+ },
+ "ClaimStatus":{
+ "shape":"GameServerClaimStatus",
+ "documentation":"Indicates when an available game server has been reserved but has not yet started hosting a game. Once it is claimed, game server remains in CLAIMED status for a maximum of one minute. During this time, game clients must connect to the game server and start the game, which triggers the game server to update its utilization status. After one minute, the game server claim status reverts to null.
"
+ },
+ "UtilizationStatus":{
+ "shape":"GameServerUtilizationStatus",
+ "documentation":"Indicates whether the game server is currently available for new games or is busy. Possible statuses include:
-
AVAILABLE - The game server is available to be claimed. A game server that has been claimed remains in this status until it reports game hosting activity.
-
IN_USE - The game server is currently hosting a game session with players.
"
+ },
+ "RegistrationTime":{
+ "shape":"Timestamp",
+ "documentation":"Time stamp indicating when the game server resource was created with a RegisterGameServer request. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").
"
+ },
+ "LastClaimTime":{
+ "shape":"Timestamp",
+ "documentation":"Time stamp indicating the last time the game server was claimed with a ClaimGameServer request. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\"). This value is used to calculate when the game server's claim status.
"
+ },
+ "LastHealthCheckTime":{
+ "shape":"Timestamp",
+ "documentation":"Time stamp indicating the last time the game server was updated with health status using an UpdateGameServer request. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\"). After game server registration, this property is only changed when a game server update specifies a health check value.
"
+ }
+ },
+ "documentation":" This data type is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
Properties describing a game server resource.
A game server resource is created by a successful call to RegisterGameServer and deleted by calling DeregisterGameServer.
"
+ },
+ "GameServerClaimStatus":{
+ "type":"string",
+ "enum":["CLAIMED"]
+ },
+ "GameServerConnectionInfo":{
+ "type":"string",
+ "max":512,
+ "min":1,
+ "pattern":".*\\S.*"
+ },
+ "GameServerData":{
+ "type":"string",
+ "max":1024,
+ "min":1,
+ "pattern":".*\\S.*"
+ },
+ "GameServerGroup":{
+ "type":"structure",
+ "members":{
+ "GameServerGroupName":{
+ "shape":"GameServerGroupName",
+ "documentation":"A developer-defined identifier for the game server group. The name is unique per Region per AWS account.
"
+ },
+ "GameServerGroupArn":{
+ "shape":"GameServerGroupArn",
+ "documentation":"A generated unique ID for the game server group.
"
+ },
+ "RoleArn":{
+ "shape":"IamRoleArn",
+ "documentation":"The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access your EC2 Auto Scaling groups. The submitted role is validated to ensure that it contains the necessary permissions for game server groups.
"
+ },
+ "InstanceDefinitions":{
+ "shape":"InstanceDefinitions",
+ "documentation":"The set of EC2 instance types that GameLift FleetIQ can use when rebalancing and autoscaling instances in the group.
"
+ },
+ "BalancingStrategy":{
+ "shape":"BalancingStrategy",
+ "documentation":"The fallback balancing method to use for the game server group when Spot instances in a Region become unavailable or are not viable for game hosting. Once triggered, this method remains active until Spot instances can once again be used. Method options include:
-
SPOT_ONLY -- If Spot instances are unavailable, the game server group provides no hosting capacity. No new instances are started, and the existing nonviable Spot instances are terminated (once current gameplay ends) and not replaced.
-
SPOT_PREFERRED -- If Spot instances are unavailable, the game server group continues to provide hosting capacity by using On-Demand instances. Existing nonviable Spot instances are terminated (once current gameplay ends) and replaced with new On-Demand instances.
"
+ },
+ "GameServerProtectionPolicy":{
+ "shape":"GameServerProtectionPolicy",
+ "documentation":"A flag that indicates whether instances in the game server group are protected from early termination. Unprotected instances that have active game servers running may be terminated during a scale-down event, causing players to be dropped from the game. Protected instances cannot be terminated while there are active game servers running except in the event of a forced game server group deletion (see DeleteGameServerGroup). An exception to this is Spot Instances, which may be terminated by AWS regardless of protection status.
"
+ },
+ "AutoScalingGroupArn":{
+ "shape":"AutoScalingGroupArn",
+ "documentation":"A generated unique ID for the EC2 Auto Scaling group with is associated with this game server group.
"
+ },
+ "Status":{
+ "shape":"GameServerGroupStatus",
+ "documentation":"The current status of the game server group. Possible statuses include:
-
NEW - GameLift FleetIQ has validated the CreateGameServerGroup()
request.
-
ACTIVATING - GameLift FleetIQ is setting up a game server group, which includes creating an autoscaling group in your AWS account.
-
ACTIVE - The game server group has been successfully created.
-
DELETE_SCHEDULED - A request to delete the game server group has been received.
-
DELETING - GameLift FleetIQ has received a valid DeleteGameServerGroup()
request and is processing it. GameLift FleetIQ must first complete and release hosts before it deletes the autoscaling group and the game server group.
-
DELETED - The game server group has been successfully deleted.
-
ERROR - The asynchronous processes of activating or deleting a game server group has failed, resulting in an error state.
"
+ },
+ "StatusReason":{
+ "shape":"NonZeroAndMaxString",
+ "documentation":"Additional information about the current game server group status. This information may provide additional insight on groups that in ERROR status.
"
+ },
+ "SuspendedActions":{
+ "shape":"GameServerGroupActions",
+ "documentation":"A list of activities that are currently suspended for this game server group. If this property is empty, all activities are occurring.
"
+ },
+ "CreationTime":{
+ "shape":"Timestamp",
+ "documentation":"A time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").
"
+ },
+ "LastUpdatedTime":{
+ "shape":"Timestamp",
+ "documentation":"A time stamp indicating when this game server group was last updated.
"
+ }
+ },
+ "documentation":" This data type is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
Properties describing a game server group resource. A game server group manages certain properties of a corresponding EC2 Auto Scaling group.
A game server group is created by a successful call to CreateGameServerGroup and deleted by calling DeleteGameServerGroup. Game server group activity can be temporarily suspended and resumed by calling SuspendGameServerGroup and ResumeGameServerGroup.
"
+ },
+ "GameServerGroupAction":{
+ "type":"string",
+ "enum":["REPLACE_INSTANCE_TYPES"]
+ },
+ "GameServerGroupActions":{
+ "type":"list",
+ "member":{"shape":"GameServerGroupAction"},
+ "max":1,
+ "min":1
+ },
+ "GameServerGroupArn":{
+ "type":"string",
+ "max":256,
+ "min":1,
+ "pattern":"^arn:.*:gameservergroup\\/[a-zA-Z0-9-\\.]*"
+ },
+ "GameServerGroupAutoScalingPolicy":{
+ "type":"structure",
+ "required":["TargetTrackingConfiguration"],
+ "members":{
+ "EstimatedInstanceWarmup":{
+ "shape":"PositiveInteger",
+ "documentation":"Length of time, in seconds, it takes for a new instance to start new game server processes and register with GameLift FleetIQ. Specifying a warm-up time can be useful, particularly with game servers that take a long time to start up, because it avoids prematurely starting new instances
"
+ },
+ "TargetTrackingConfiguration":{
+ "shape":"TargetTrackingConfiguration",
+ "documentation":"Settings for a target-based scaling policy applied to Auto Scaling group. These settings are used to create a target-based policy that tracks the GameLift FleetIQ metric \"PercentUtilizedGameServers\" and specifies a target value for the metric. As player usage changes, the policy triggers to adjust the game server group capacity so that the metric returns to the target value.
"
+ }
+ },
+ "documentation":" This data type is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
Configuration settings for intelligent autoscaling that uses target tracking. An autoscaling policy can be specified when a new game server group is created with CreateGameServerGroup. If a group has an autoscaling policy, the Auto Scaling group takes action based on this policy, in addition to (and potentially in conflict with) any other autoscaling policies that are separately applied to the Auto Scaling group.
"
+ },
+ "GameServerGroupDeleteOption":{
+ "type":"string",
+ "enum":[
+ "SAFE_DELETE",
+ "FORCE_DELETE",
+ "RETAIN"
+ ]
+ },
+ "GameServerGroupInstanceType":{
+ "type":"string",
+ "enum":[
+ "c4.large",
+ "c4.xlarge",
+ "c4.2xlarge",
+ "c4.4xlarge",
+ "c4.8xlarge",
+ "c5.large",
+ "c5.xlarge",
+ "c5.2xlarge",
+ "c5.4xlarge",
+ "c5.9xlarge",
+ "c5.12xlarge",
+ "c5.18xlarge",
+ "c5.24xlarge",
+ "r4.large",
+ "r4.xlarge",
+ "r4.2xlarge",
+ "r4.4xlarge",
+ "r4.8xlarge",
+ "r4.16xlarge",
+ "r5.large",
+ "r5.xlarge",
+ "r5.2xlarge",
+ "r5.4xlarge",
+ "r5.8xlarge",
+ "r5.12xlarge",
+ "r5.16xlarge",
+ "r5.24xlarge",
+ "m4.large",
+ "m4.xlarge",
+ "m4.2xlarge",
+ "m4.4xlarge",
+ "m4.10xlarge",
+ "m5.large",
+ "m5.xlarge",
+ "m5.2xlarge",
+ "m5.4xlarge",
+ "m5.8xlarge",
+ "m5.12xlarge",
+ "m5.16xlarge",
+ "m5.24xlarge"
+ ]
+ },
+ "GameServerGroupName":{
+ "type":"string",
+ "max":128,
+ "min":1,
+ "pattern":"[a-zA-Z0-9-\\.]+"
+ },
+ "GameServerGroupNameOrArn":{
"type":"string",
- "max":32
+ "max":256,
+ "min":1,
+ "pattern":"[a-zA-Z0-9-\\.]+|^arn:.*:gameservergroup\\/[a-zA-Z0-9-\\.]+"
},
- "GamePropertyList":{
+ "GameServerGroupStatus":{
+ "type":"string",
+ "enum":[
+ "NEW",
+ "ACTIVATING",
+ "ACTIVE",
+ "DELETE_SCHEDULED",
+ "DELETING",
+ "DELETED",
+ "ERROR"
+ ]
+ },
+ "GameServerGroups":{
"type":"list",
- "member":{"shape":"GameProperty"},
- "max":16
+ "member":{"shape":"GameServerGroup"}
},
- "GamePropertyValue":{
+ "GameServerHealthCheck":{
"type":"string",
- "max":96
+ "enum":["HEALTHY"]
+ },
+ "GameServerId":{
+ "type":"string",
+ "max":128,
+ "min":3,
+ "pattern":"[a-zA-Z0-9-\\.]+"
+ },
+ "GameServerInstanceId":{
+ "type":"string",
+ "max":19,
+ "min":19,
+ "pattern":"^i-[0-9a-zA-Z]{17}$"
+ },
+ "GameServerProtectionPolicy":{
+ "type":"string",
+ "enum":[
+ "NO_PROTECTION",
+ "FULL_PROTECTION"
+ ]
+ },
+ "GameServerSortKey":{
+ "type":"string",
+ "max":64,
+ "min":1,
+ "pattern":"[a-zA-Z0-9-\\.]+"
+ },
+ "GameServerUtilizationStatus":{
+ "type":"string",
+ "enum":[
+ "AVAILABLE",
+ "UTILIZED"
+ ]
+ },
+ "GameServers":{
+ "type":"list",
+ "member":{"shape":"GameServer"}
},
"GameSession":{
"type":"structure",
@@ -3292,7 +3993,7 @@
"documentation":"A unique identifier for a fleet that the game session is running on.
"
},
"FleetArn":{
- "shape":"ArnStringModel",
+ "shape":"FleetArn",
"documentation":" The Amazon Resource Name (ARN) associated with the GameLift fleet that this game session is running on.
"
},
"CreationTime":{
@@ -3516,7 +4217,7 @@
"documentation":"A descriptive label that is associated with game session queue. Queue names must be unique within each Region.
"
},
"GameSessionQueueArn":{
- "shape":"ArnStringModel",
+ "shape":"GameSessionQueueArn",
"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. In a GameLift game session queue ARN, the resource ID matches the Name value.
"
},
"TimeoutInSeconds":{
@@ -3534,6 +4235,12 @@
},
"documentation":"Configuration of a queue that is used to process game session placement requests. The queue configuration identifies several game features:
-
The destinations where a new game session can potentially be hosted. Amazon GameLift tries these destinations in an order based on either the queue's default order or player latency information, if provided in a placement request. With latency information, Amazon GameLift can place game sessions where the majority of players are reporting the lowest possible latency.
-
The length of time that placement requests can wait in the queue before timing out.
-
A set of optional latency policies that protect individual players from high latencies, preventing game sessions from being placed where any individual player is reporting latency higher than a policy's maximum.
"
},
+ "GameSessionQueueArn":{
+ "type":"string",
+ "max":256,
+ "min":1,
+ "pattern":"^arn:.*:gamesessionqueue\\/[a-zA-Z0-9-]+"
+ },
"GameSessionQueueDestination":{
"type":"structure",
"members":{
@@ -3553,14 +4260,20 @@
"member":{"shape":"GameSessionQueue"}
},
"GameSessionQueueName":{
+ "type":"string",
+ "max":128,
+ "min":1,
+ "pattern":"[a-zA-Z0-9-]+"
+ },
+ "GameSessionQueueNameOrArn":{
"type":"string",
"max":256,
"min":1,
"pattern":"[a-zA-Z0-9-]+|^arn:.*:gamesessionqueue\\/[a-zA-Z0-9-]+"
},
- "GameSessionQueueNameList":{
+ "GameSessionQueueNameOrArnList":{
"type":"list",
- "member":{"shape":"GameSessionQueueName"}
+ "member":{"shape":"GameSessionQueueNameOrArn"}
},
"GameSessionStatus":{
"type":"string",
@@ -3605,7 +4318,7 @@
],
"members":{
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet that contains the instance you want access to. You can use either the fleet ID or ARN value. The fleet can be in any of the following statuses: ACTIVATING
, ACTIVE
, or ERROR
. Fleets with an ERROR
status may be accessible for a short time before they are deleted.
"
},
"InstanceId":{
@@ -3625,6 +4338,12 @@
},
"documentation":"Represents the returned data in response to a request action.
"
},
+ "IamRoleArn":{
+ "type":"string",
+ "max":256,
+ "min":1,
+ "pattern":"^arn:.*:role\\/[\\w+=,.@-]+"
+ },
"IdStringModel":{
"type":"string",
"max":48,
@@ -3718,6 +4437,27 @@
"documentation":"Set of credentials required to remotely access a fleet instance. Access credentials are requested by calling GetInstanceAccess and returned in an InstanceAccess object.
",
"sensitive":true
},
+ "InstanceDefinition":{
+ "type":"structure",
+ "required":["InstanceType"],
+ "members":{
+ "InstanceType":{
+ "shape":"GameServerGroupInstanceType",
+ "documentation":"An EC2 instance type designation.
"
+ },
+ "WeightedCapacity":{
+ "shape":"WeightedCapacity",
+ "documentation":"Instance weighting that indicates how much this instance type contributes to the total capacity of a game server group. Instance weights are used by GameLift FleetIQ to calculate the instance type's cost per unit hour and better identify the most cost-effective options. For detailed information on weighting instance capacity, see Instance Weighting in the Amazon EC2 Auto Scaling User Guide. Default value is \"1\".
"
+ }
+ },
+ "documentation":" This data type is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
An allowed instance type for your game server group. GameLift FleetIQ periodically evaluates each defined instance type for viability. It then updates the Auto Scaling group with the list of viable instance types.
"
+ },
+ "InstanceDefinitions":{
+ "type":"list",
+ "member":{"shape":"InstanceDefinition"},
+ "max":20,
+ "min":2
+ },
"InstanceId":{
"type":"string",
"pattern":"[a-zA-Z0-9\\.-]+"
@@ -3814,6 +4554,42 @@
"key":{"shape":"NonEmptyString"},
"value":{"shape":"PositiveInteger"}
},
+ "LaunchTemplateId":{
+ "type":"string",
+ "max":255,
+ "min":1,
+ "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]+"
+ },
+ "LaunchTemplateName":{
+ "type":"string",
+ "max":128,
+ "min":3,
+ "pattern":"[a-zA-Z0-9\\(\\)\\.\\-/_]+"
+ },
+ "LaunchTemplateSpecification":{
+ "type":"structure",
+ "members":{
+ "LaunchTemplateId":{
+ "shape":"LaunchTemplateId",
+ "documentation":"A unique identifier for an existing EC2 launch template.
"
+ },
+ "LaunchTemplateName":{
+ "shape":"LaunchTemplateName",
+ "documentation":"A readable identifier for an existing EC2 launch template.
"
+ },
+ "Version":{
+ "shape":"LaunchTemplateVersion",
+ "documentation":"The version of the EC2 launch template to use. If no version is specified, the default version will be used. EC2 allows you to specify a default version for a launch template, if none is set, the default is the first version created.
"
+ }
+ },
+ "documentation":" This data type is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
An EC2 launch template that contains configuration settings and game server code to be deployed to all instances in a game server group.
"
+ },
+ "LaunchTemplateVersion":{
+ "type":"string",
+ "max":128,
+ "min":1,
+ "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]+"
+ },
"LimitExceededException":{
"type":"structure",
"members":{
@@ -3881,7 +4657,7 @@
"members":{
"Builds":{
"shape":"BuildList",
- "documentation":"A collection of build records that match the request.
"
+ "documentation":"A collection of build resources that match the request.
"
},
"NextToken":{
"shape":"NonEmptyString",
@@ -3894,12 +4670,12 @@
"type":"structure",
"members":{
"BuildId":{
- "shape":"BuildId",
- "documentation":"A unique identifier for a build to return fleets for. Use this parameter to return only fleets using the specified build. Use either the build ID or ARN value.To retrieve all fleets, leave this parameter empty.
"
+ "shape":"BuildIdOrArn",
+ "documentation":"A unique identifier for a build to return fleets for. Use this parameter to return only fleets using a specified build. Use either the build ID or ARN value. To retrieve all fleets, do not include either a BuildId and ScriptID parameter.
"
},
"ScriptId":{
- "shape":"ScriptId",
- "documentation":"A unique identifier for a Realtime script to return fleets for. Use this parameter to return only fleets using the specified script. Use either the script ID or ARN value.To retrieve all fleets, leave this parameter empty.
"
+ "shape":"ScriptIdOrArn",
+ "documentation":"A unique identifier for a Realtime script to return fleets for. Use this parameter to return only fleets using a specified script. Use either the script ID or ARN value. To retrieve all fleets, leave this parameter empty.
"
},
"Limit":{
"shape":"PositiveInteger",
@@ -3926,6 +4702,67 @@
},
"documentation":"Represents the returned data in response to a request action.
"
},
+ "ListGameServerGroupsInput":{
+ "type":"structure",
+ "members":{
+ "Limit":{
+ "shape":"PositiveInteger",
+ "documentation":"The maximum number of results to return. Use this parameter with NextToken
to get results as a set of sequential pages.
"
+ },
+ "NextToken":{
+ "shape":"NonZeroAndMaxString",
+ "documentation":"A token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value.
"
+ }
+ }
+ },
+ "ListGameServerGroupsOutput":{
+ "type":"structure",
+ "members":{
+ "GameServerGroups":{
+ "shape":"GameServerGroups",
+ "documentation":"A collection of game server group objects that match the request.
"
+ },
+ "NextToken":{
+ "shape":"NonZeroAndMaxString",
+ "documentation":"A token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.
"
+ }
+ }
+ },
+ "ListGameServersInput":{
+ "type":"structure",
+ "required":["GameServerGroupName"],
+ "members":{
+ "GameServerGroupName":{
+ "shape":"GameServerGroupNameOrArn",
+ "documentation":"An identifier for the game server group for the game server you want to list. Use either the GameServerGroup name or ARN value.
"
+ },
+ "SortOrder":{
+ "shape":"SortOrder",
+ "documentation":"Indicates how to sort the returned data based on the game servers' custom key sort value. If this parameter is left empty, the list of game servers is returned in no particular order.
"
+ },
+ "Limit":{
+ "shape":"PositiveInteger",
+ "documentation":"The maximum number of results to return. Use this parameter with NextToken
to get results as a set of sequential pages.
"
+ },
+ "NextToken":{
+ "shape":"NonZeroAndMaxString",
+ "documentation":"A token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value.
"
+ }
+ }
+ },
+ "ListGameServersOutput":{
+ "type":"structure",
+ "members":{
+ "GameServers":{
+ "shape":"GameServers",
+ "documentation":"A collection of game server objects that match the request.
"
+ },
+ "NextToken":{
+ "shape":"NonZeroAndMaxString",
+ "documentation":"A token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.
"
+ }
+ }
+ },
"ListScriptsInput":{
"type":"structure",
"members":{
@@ -4258,6 +5095,10 @@
"type":"string",
"min":1
},
+ "NonNegativeDouble":{
+ "type":"double",
+ "min":0
+ },
"NonZeroAndMaxString":{
"type":"string",
"max":1024,
@@ -4279,6 +5120,14 @@
"AMAZON_LINUX_2"
]
},
+ "OutOfCapacityException":{
+ "type":"structure",
+ "members":{
+ "Message":{"shape":"NonEmptyString"}
+ },
+ "documentation":"The specified game server group has no available game servers to fulfill a ClaimGameServer
request. Clients can retry such requests immediately or after a waiting period.
",
+ "exception":true
+ },
"PlacedPlayerSession":{
"type":"structure",
"members":{
@@ -4404,7 +5253,7 @@
"documentation":"A unique identifier for a fleet that the player's game session is running on.
"
},
"FleetArn":{
- "shape":"ArnStringModel",
+ "shape":"FleetArn",
"documentation":" The Amazon Resource Name (ARN) associated with the GameLift fleet that the player's game session is running on.
"
},
"CreationTime":{
@@ -4502,7 +5351,7 @@
"documentation":"A descriptive label that is associated with a scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.
"
},
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to apply this policy to. You can use either the fleet ID or ARN value. The fleet cannot be in any of the following statuses: ERROR or DELETING.
"
},
"ScalingAdjustment":{
@@ -4554,12 +5403,59 @@
"type":"list",
"member":{"shape":"ArnStringModel"}
},
+ "RegisterGameServerInput":{
+ "type":"structure",
+ "required":[
+ "GameServerGroupName",
+ "GameServerId",
+ "InstanceId"
+ ],
+ "members":{
+ "GameServerGroupName":{
+ "shape":"GameServerGroupNameOrArn",
+ "documentation":"An identifier for the game server group where the game server is running. You can use either the GameServerGroup name or ARN value.
"
+ },
+ "GameServerId":{
+ "shape":"GameServerId",
+ "documentation":"A custom string that uniquely identifies the new game server. Game server IDs are developer-defined and must be unique across all game server groups in your AWS account.
"
+ },
+ "InstanceId":{
+ "shape":"GameServerInstanceId",
+ "documentation":"The unique identifier for the instance where the game server is running. This ID is available in the instance metadata.
"
+ },
+ "ConnectionInfo":{
+ "shape":"GameServerConnectionInfo",
+ "documentation":"Information needed to make inbound client connections to the game server. This might include IP address and port, DNS name, etc.
"
+ },
+ "GameServerData":{
+ "shape":"GameServerData",
+ "documentation":"A set of custom game server properties, formatted as a single string value. This data is passed to a game client or service when it requests information on a game servers using ListGameServers or ClaimGameServer.
"
+ },
+ "CustomSortKey":{
+ "shape":"GameServerSortKey",
+ "documentation":"A game server tag that can be used to request sorted lists of game servers using ListGameServers. Custom sort keys are developer-defined based on how you want to organize the retrieved game server information.
"
+ },
+ "Tags":{
+ "shape":"TagList",
+ "documentation":"A list of labels to assign to the new game server resource. Tags are developer-defined key-value pairs. Tagging AWS resources are useful for resource management, access management, and cost allocation. For more information, see Tagging AWS Resources in the AWS General Reference. Once the resource is created, you can use TagResource, UntagResource, and ListTagsForResource to add, remove, and view tags. The maximum tag limit may be lower than stated. See the AWS General Reference for actual tagging limits.
"
+ }
+ }
+ },
+ "RegisterGameServerOutput":{
+ "type":"structure",
+ "members":{
+ "GameServer":{
+ "shape":"GameServer",
+ "documentation":"Object that describes the newly created game server resource.
"
+ }
+ }
+ },
"RequestUploadCredentialsInput":{
"type":"structure",
"required":["BuildId"],
"members":{
"BuildId":{
- "shape":"BuildId",
+ "shape":"BuildIdOrArn",
"documentation":"A unique identifier for a build to get credentials for. You can use either the build ID or ARN value.
"
}
},
@@ -4584,7 +5480,7 @@
"required":["AliasId"],
"members":{
"AliasId":{
- "shape":"AliasId",
+ "shape":"AliasIdOrArn",
"documentation":"The unique identifier of the alias that you want to retrieve a fleet ID for. You can use either the alias ID or ARN value.
"
}
},
@@ -4598,7 +5494,7 @@
"documentation":"The fleet identifier that the alias is pointing to.
"
},
"FleetArn":{
- "shape":"ArnStringModel",
+ "shape":"FleetArn",
"documentation":" The Amazon Resource Name (ARN) associated with the GameLift fleet resource that this alias points to.
"
}
},
@@ -4618,6 +5514,32 @@
},
"documentation":"A policy that limits the number of game sessions a player can create on the same fleet. This optional policy gives game owners control over how players can consume available game server resources. A resource creation policy makes the following statement: \"An individual player can create a maximum number of new game sessions within a specified time period\".
The policy is evaluated when a player tries to create a new game session. For example: Assume you have a policy of 10 new game sessions and a time period of 60 minutes. On receiving a CreateGameSession
request, Amazon GameLift checks that the player (identified by CreatorId
) has created fewer than 10 game sessions in the past 60 minutes.
"
},
+ "ResumeGameServerGroupInput":{
+ "type":"structure",
+ "required":[
+ "GameServerGroupName",
+ "ResumeActions"
+ ],
+ "members":{
+ "GameServerGroupName":{
+ "shape":"GameServerGroupNameOrArn",
+ "documentation":"The unique identifier of the game server group to resume activity on. Use either the GameServerGroup name or ARN value.
"
+ },
+ "ResumeActions":{
+ "shape":"GameServerGroupActions",
+ "documentation":"The action to resume for this game server group.
"
+ }
+ }
+ },
+ "ResumeGameServerGroupOutput":{
+ "type":"structure",
+ "members":{
+ "GameServerGroup":{
+ "shape":"GameServerGroup",
+ "documentation":"An object that describes the game server group resource, with the SuspendedActions property updated to reflect the resumed activity.
"
+ }
+ }
+ },
"RoutingStrategy":{
"type":"structure",
"members":{
@@ -4669,14 +5591,14 @@
"documentation":"The maximum amount of time (in seconds) that a game session can remain in status ACTIVATING
. If the game session is not active before the timeout, activation is terminated and the game session status is changed to TERMINATED
.
"
}
},
- "documentation":"A collection of server process configurations that describe what processes to run on each instance in a fleet. Server processes run either a custom game build executable or a Realtime Servers script. Each instance in the fleet starts the specified server processes and continues to start new processes as existing processes end. Each instance regularly checks for an updated runtime configuration.
The runtime configuration enables the instances in a fleet to run multiple processes simultaneously. Learn more about Running Multiple Processes on a Fleet .
A Amazon GameLift instance is limited to 50 processes running simultaneously. To calculate the total number of processes in a runtime configuration, add the values of the ConcurrentExecutions
parameter for each ServerProcess object.
"
+ "documentation":"A collection of server process configurations that describe what processes to run on each instance in a fleet. Server processes run either a custom game build executable or a Realtime Servers script. Each instance in the fleet starts the specified server processes and continues to start new processes as existing processes end. Each instance regularly checks for an updated runtime configuration.
The runtime configuration enables the instances in a fleet to run multiple processes simultaneously. Learn more about Running Multiple Processes on a Fleet .
A Amazon GameLift instance is limited to 50 processes running simultaneously. To calculate the total number of processes in a runtime configuration, add the values of the ConcurrentExecutions
parameter for each ServerProcess object.
"
},
"S3Location":{
"type":"structure",
"members":{
"Bucket":{
"shape":"NonEmptyString",
- "documentation":"An Amazon S3 bucket identifier. This is the name of the S3 bucket.
"
+ "documentation":"An S3 bucket identifier. This is the name of the S3 bucket.
"
},
"Key":{
"shape":"NonEmptyString",
@@ -4691,7 +5613,7 @@
"documentation":"The version of the file, if object versioning is turned on for the bucket. Amazon GameLift uses this information when retrieving files from an S3 bucket that you own. Use this parameter to specify a specific version of the file. If not set, the latest version of the file is retrieved.
"
}
},
- "documentation":"The location in Amazon S3 where build or script files are stored for access by Amazon GameLift. This location is specified in CreateBuild, CreateScript, and UpdateScript requests.
"
+ "documentation":"The location in S3 where build or script files are stored for access by Amazon GameLift. This location is specified in CreateBuild, CreateScript, and UpdateScript requests.
"
},
"ScalingAdjustmentType":{
"type":"string",
@@ -4803,6 +5725,10 @@
"pattern":"^arn:.*:script\\/script-\\S+"
},
"ScriptId":{
+ "type":"string",
+ "pattern":"^script-\\S+"
+ },
+ "ScriptIdOrArn":{
"type":"string",
"pattern":"^script-\\S+|^arn:.*:script\\/script-\\S+"
},
@@ -4814,11 +5740,11 @@
"type":"structure",
"members":{
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to search for active game sessions. You can use either the fleet ID or ARN value. Each request must reference either a fleet ID or alias ID, but not both.
"
},
"AliasId":{
- "shape":"AliasId",
+ "shape":"AliasIdOrArn",
"documentation":"A unique identifier for an alias associated with the fleet to search for active game sessions. You can use either the alias ID or ARN value. Each request must reference either a fleet ID or alias ID, but not both.
"
},
"FilterExpression":{
@@ -4888,6 +5814,13 @@
"min":0,
"pattern":"[a-zA-Z0-9:_/-]*"
},
+ "SortOrder":{
+ "type":"string",
+ "enum":[
+ "ASCENDING",
+ "DESCENDING"
+ ]
+ },
"StartFleetActionsInput":{
"type":"structure",
"required":[
@@ -4896,7 +5829,7 @@
],
"members":{
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to start actions on. You can use either the fleet ID or ARN value.
"
},
"Actions":{
@@ -4923,8 +5856,8 @@
"documentation":"A unique identifier to assign to the new game session placement. This value is developer-defined. The value must be unique across all Regions and cannot be reused unless you are resubmitting a canceled or timed-out placement request.
"
},
"GameSessionQueueName":{
- "shape":"GameSessionQueueName",
- "documentation":"Name of the queue to use to place the new game session. You can use either the qieue name or ARN value.
"
+ "shape":"GameSessionQueueNameOrArn",
+ "documentation":"Name of the queue to use to place the new game session. You can use either the queue name or ARN value.
"
},
"GameProperties":{
"shape":"GamePropertyList",
@@ -5040,7 +5973,7 @@
],
"members":{
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to stop actions on. You can use either the fleet ID or ARN value.
"
},
"Actions":{
@@ -5101,6 +6034,32 @@
"member":{"shape":"NonZeroAndMaxString"}
},
"StringModel":{"type":"string"},
+ "SuspendGameServerGroupInput":{
+ "type":"structure",
+ "required":[
+ "GameServerGroupName",
+ "SuspendActions"
+ ],
+ "members":{
+ "GameServerGroupName":{
+ "shape":"GameServerGroupNameOrArn",
+ "documentation":"The unique identifier of the game server group to stop activity on. Use either the GameServerGroup name or ARN value.
"
+ },
+ "SuspendActions":{
+ "shape":"GameServerGroupActions",
+ "documentation":"The action to suspend for this game server group.
"
+ }
+ }
+ },
+ "SuspendGameServerGroupOutput":{
+ "type":"structure",
+ "members":{
+ "GameServerGroup":{
+ "shape":"GameServerGroup",
+ "documentation":"An object that describes the game server group resource, with the SuspendedActions property updated to reflect the suspended activity.
"
+ }
+ }
+ },
"Tag":{
"type":"structure",
"required":[
@@ -5182,6 +6141,17 @@
},
"documentation":"Settings for a target-based scaling policy (see ScalingPolicy. A target-based policy tracks a particular fleet metric specifies a target value for the metric. As player usage changes, the policy triggers Amazon GameLift to adjust capacity so that the metric returns to the target value. The target configuration specifies settings as needed for the target based policy, including the target value.
"
},
+ "TargetTrackingConfiguration":{
+ "type":"structure",
+ "required":["TargetValue"],
+ "members":{
+ "TargetValue":{
+ "shape":"NonNegativeDouble",
+ "documentation":"Desired value to use with a game server group target-based scaling policy.
"
+ }
+ },
+ "documentation":" This data type is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.
Settings for a target-based scaling policy applied to Auto Scaling group. These settings are used to create a target-based policy that tracks the GameLift FleetIQ metric \"PercentUtilizedGameServers\" and specifies a target value for the metric. As player usage changes, the policy triggers to adjust the game server group capacity so that the metric returns to the target value.
"
+ },
"TerminalRoutingStrategyException":{
"type":"structure",
"members":{
@@ -5216,11 +6186,11 @@
"members":{
"ResourceARN":{
"shape":"AmazonResourceName",
- "documentation":" The Amazon Resource Name (ARN) that is assigned to and uniquely identifies the GameLift resource that you want to remove tags from. GameLift resource ARNs are included in the data object for the resource, which can be retrieved by calling a List or Describe action for the resource type.
"
+ "documentation":"The Amazon Resource Name (ARN) that is assigned to and uniquely identifies the GameLift resource that you want to remove tags from. GameLift resource ARNs are included in the data object for the resource, which can be retrieved by calling a List or Describe action for the resource type.
"
},
"TagKeys":{
"shape":"TagKeyList",
- "documentation":"A list of one or more tags to remove from the specified GameLift resource. Tags are developer-defined and structured as key-value pairs.
"
+ "documentation":"A list of one or more tag keys to remove from the specified GameLift resource. An AWS resource can have only one tag with a specific tag key, so specifying the tag key identifies which tag to remove.
"
}
}
},
@@ -5234,7 +6204,7 @@
"required":["AliasId"],
"members":{
"AliasId":{
- "shape":"AliasId",
+ "shape":"AliasIdOrArn",
"documentation":"A unique identifier for the alias that you want to update. You can use either the alias ID or ARN value.
"
},
"Name":{
@@ -5267,7 +6237,7 @@
"required":["BuildId"],
"members":{
"BuildId":{
- "shape":"BuildId",
+ "shape":"BuildIdOrArn",
"documentation":"A unique identifier for a build to update. You can use either the build ID or ARN value.
"
},
"Name":{
@@ -5286,7 +6256,7 @@
"members":{
"Build":{
"shape":"Build",
- "documentation":"The updated build record.
"
+ "documentation":"The updated build resource.
"
}
},
"documentation":"Represents the returned data in response to a request action.
"
@@ -5296,7 +6266,7 @@
"required":["FleetId"],
"members":{
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to update attribute metadata for. You can use either the fleet ID or ARN value.
"
},
"Name":{
@@ -5337,7 +6307,7 @@
"required":["FleetId"],
"members":{
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to update capacity for. You can use either the fleet ID or ARN value.
"
},
"DesiredInstances":{
@@ -5370,16 +6340,16 @@
"required":["FleetId"],
"members":{
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to update port settings for. You can use either the fleet ID or ARN value.
"
},
"InboundPermissionAuthorizations":{
"shape":"IpPermissionsList",
- "documentation":"A collection of port settings to be added to the fleet record.
"
+ "documentation":"A collection of port settings to be added to the fleet resource.
"
},
"InboundPermissionRevocations":{
"shape":"IpPermissionsList",
- "documentation":"A collection of port settings to be removed from the fleet record.
"
+ "documentation":"A collection of port settings to be removed from the fleet resource.
"
}
},
"documentation":"Represents the input for a request action.
"
@@ -5394,6 +6364,83 @@
},
"documentation":"Represents the returned data in response to a request action.
"
},
+ "UpdateGameServerGroupInput":{
+ "type":"structure",
+ "required":["GameServerGroupName"],
+ "members":{
+ "GameServerGroupName":{
+ "shape":"GameServerGroupNameOrArn",
+ "documentation":"The unique identifier of the game server group to update. Use either the GameServerGroup name or ARN value.
"
+ },
+ "RoleArn":{
+ "shape":"IamRoleArn",
+ "documentation":"The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access your EC2 Auto Scaling groups. The submitted role is validated to ensure that it contains the necessary permissions for game server groups.
"
+ },
+ "InstanceDefinitions":{
+ "shape":"InstanceDefinitions",
+ "documentation":"An updated list of EC2 instance types to use when creating instances in the group. The instance definition must specify instance types that are supported by GameLift FleetIQ, and must include at least two instance types. This updated list replaces the entire current list of instance definitions for the game server group. For more information on instance types, see EC2 Instance Types in the Amazon EC2 User Guide..
"
+ },
+ "GameServerProtectionPolicy":{
+ "shape":"GameServerProtectionPolicy",
+ "documentation":"A flag that indicates whether instances in the game server group are protected from early termination. Unprotected instances that have active game servers running may by terminated during a scale-down event, causing players to be dropped from the game. Protected instances cannot be terminated while there are active game servers running. An exception to this is Spot Instances, which may be terminated by AWS regardless of protection status. This property is set to NO_PROTECTION by default.
"
+ },
+ "BalancingStrategy":{
+ "shape":"BalancingStrategy",
+ "documentation":"The fallback balancing method to use for the game server group when Spot instances in a Region become unavailable or are not viable for game hosting. Once triggered, this method remains active until Spot instances can once again be used. Method options include:
-
SPOT_ONLY -- If Spot instances are unavailable, the game server group provides no hosting capacity. No new instances are started, and the existing nonviable Spot instances are terminated (once current gameplay ends) and not replaced.
-
SPOT_PREFERRED -- If Spot instances are unavailable, the game server group continues to provide hosting capacity by using On-Demand instances. Existing nonviable Spot instances are terminated (once current gameplay ends) and replaced with new On-Demand instances.
"
+ }
+ }
+ },
+ "UpdateGameServerGroupOutput":{
+ "type":"structure",
+ "members":{
+ "GameServerGroup":{
+ "shape":"GameServerGroup",
+ "documentation":"An object that describes the game server group resource with updated properties.
"
+ }
+ }
+ },
+ "UpdateGameServerInput":{
+ "type":"structure",
+ "required":[
+ "GameServerGroupName",
+ "GameServerId"
+ ],
+ "members":{
+ "GameServerGroupName":{
+ "shape":"GameServerGroupNameOrArn",
+ "documentation":"An identifier for the game server group where the game server is running. Use either the GameServerGroup name or ARN value.
"
+ },
+ "GameServerId":{
+ "shape":"GameServerId",
+ "documentation":"The identifier for the game server to be updated.
"
+ },
+ "GameServerData":{
+ "shape":"GameServerData",
+ "documentation":"A set of custom game server properties, formatted as a single string value. This data is passed to a game client or service when it requests information on a game servers using DescribeGameServer or ClaimGameServer.
"
+ },
+ "CustomSortKey":{
+ "shape":"GameServerSortKey",
+ "documentation":"A game server tag that can be used to request sorted lists of game servers using ListGameServers. Custom sort keys are developer-defined based on how you want to organize the retrieved game server information.
"
+ },
+ "UtilizationStatus":{
+ "shape":"GameServerUtilizationStatus",
+ "documentation":"Indicates whether the game server is available or is currently hosting gameplay.
"
+ },
+ "HealthCheck":{
+ "shape":"GameServerHealthCheck",
+ "documentation":"Indicates health status of the game server. An update that explicitly includes this parameter updates the game server's LastHealthCheckTime time stamp.
"
+ }
+ }
+ },
+ "UpdateGameServerOutput":{
+ "type":"structure",
+ "members":{
+ "GameServer":{
+ "shape":"GameServer",
+ "documentation":"Object that describes the newly updated game server resource.
"
+ }
+ }
+ },
"UpdateGameSessionInput":{
"type":"structure",
"required":["GameSessionId"],
@@ -5436,7 +6483,7 @@
"required":["Name"],
"members":{
"Name":{
- "shape":"GameSessionQueueName",
+ "shape":"GameSessionQueueNameOrArn",
"documentation":"A descriptive label that is associated with game session queue. Queue names must be unique within each Region. You can use either the queue ID or ARN value.
"
},
"TimeoutInSeconds":{
@@ -5541,7 +6588,7 @@
],
"members":{
"FleetId":{
- "shape":"FleetId",
+ "shape":"FleetIdOrArn",
"documentation":"A unique identifier for a fleet to update runtime configuration for. You can use either the fleet ID or ARN value.
"
},
"RuntimeConfiguration":{
@@ -5566,7 +6613,7 @@
"required":["ScriptId"],
"members":{
"ScriptId":{
- "shape":"ScriptId",
+ "shape":"ScriptIdOrArn",
"documentation":"A unique identifier for a Realtime script to update. You can use either the script ID or ARN value.
"
},
"Name":{
@@ -5655,7 +6702,7 @@
"documentation":"A unique identifier for a fleet. This ID determines the ID of the Amazon GameLift VPC for your fleet.
"
},
"FleetArn":{
- "shape":"ArnStringModel",
+ "shape":"FleetArn",
"documentation":" The Amazon Resource Name (ARN) associated with the GameLift fleet resource for this connection.
"
},
"IpV4CidrBlock":{
@@ -5699,6 +6746,24 @@
},
"documentation":"Represents status information for a VPC peering connection. Status is associated with a VpcPeeringConnection object. Status codes and messages are provided from EC2 (see VpcPeeringConnectionStateReason). Connection status information is also communicated as a fleet Event.
"
},
+ "VpcSubnet":{
+ "type":"string",
+ "max":15,
+ "min":15,
+ "pattern":"^subnet-[0-9a-z]{8}$"
+ },
+ "VpcSubnets":{
+ "type":"list",
+ "member":{"shape":"VpcSubnet"},
+ "max":20,
+ "min":1
+ },
+ "WeightedCapacity":{
+ "type":"string",
+ "max":3,
+ "min":1,
+ "pattern":"^[\\u0031-\\u0039][\\u0030-\\u0039]{0,2}$"
+ },
"WholeNumber":{
"type":"integer",
"min":0
@@ -5708,5 +6773,5 @@
"max":5000000
}
},
- "documentation":"Amazon GameLift Service Amazon GameLift is a managed service for developers who need a scalable, dedicated server solution for their multiplayer games. Use Amazon GameLift for these tasks: (1) set up computing resources and deploy your game servers, (2) run game sessions and get players into games, (3) automatically scale your resources to meet player demand and manage costs, and (4) track in-depth metrics on game server performance and player usage.
When setting up hosting resources, you can deploy your custom game server or use the Amazon GameLift Realtime Servers. Realtime Servers gives you the ability to quickly stand up lightweight, efficient game servers with the core Amazon GameLift infrastructure already built in.
Get Amazon GameLift Tools and Resources
This reference guide describes the low-level service API for Amazon GameLift and provides links to language-specific SDK reference topics. See also Amazon GameLift Tools and Resources.
API Summary
The Amazon GameLift service API includes two key sets of actions:
-
Manage game sessions and player access -- Integrate this functionality into game client services in order to create new game sessions, retrieve information on existing game sessions; reserve a player slot in a game session, request matchmaking, etc.
-
Configure and manage game server resources -- Manage your Amazon GameLift hosting resources, including builds, scripts, fleets, queues, and aliases. Set up matchmakers, configure auto-scaling, retrieve game logs, and get hosting and game metrics.
Task-based list of API actions
"
+ "documentation":"Amazon GameLift Service Amazon GameLift provides a range of multiplayer game hosting solutions. As a fully managed service, GameLift helps you:
-
Set up EC2-based computing resources and use GameLift FleetIQ to and deploy your game servers on low-cost, reliable Spot instances.
-
Track game server availability and route players into game sessions to minimize latency.
-
Automatically scale your resources to meet player demand and manage costs
-
Optionally add FlexMatch matchmaking.
With GameLift as a managed service, you have the option to deploy your custom game server or use Amazon GameLift Realtime Servers to quickly stand up lightweight game servers for your game. Realtime Servers provides an efficient game server framework with core Amazon GameLift infrastructure already built in.
Now in Public Preview:
Use GameLift FleetIQ as a standalone feature with EC2 instances and Auto Scaling groups. GameLift FleetIQ provides optimizations that make low-cost Spot instances viable for game hosting. This extension of GameLift FleetIQ gives you access to these optimizations while managing your EC2 instances and Auto Scaling groups within your own AWS account.
Get Amazon GameLift Tools and Resources
This reference guide describes the low-level service API for Amazon GameLift and provides links to language-specific SDK reference topics. See also Amazon GameLift Tools and Resources.
API Summary
The Amazon GameLift service API includes two key sets of actions:
-
Manage game sessions and player access -- Integrate this functionality into game client services in order to create new game sessions, retrieve information on existing game sessions; reserve a player slot in a game session, request matchmaking, etc.
-
Configure and manage game server resources -- Manage your Amazon GameLift hosting resources, including builds, scripts, fleets, queues, and aliases. Set up matchmakers, configure auto-scaling, retrieve game logs, and get hosting and game metrics.
Task-based list of API actions
"
}
From 5241e6fd93ff7a8157276dbf9745bb3c31d981bb Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 2 Apr 2020 18:06:55 +0000
Subject: [PATCH 009/604] Updated endpoints.json.
---
.../feature-AWSSDKforJavav2-e97801d.json | 5 ++
.../regions/internal/region/endpoints.json | 61 +++++++++++++++++++
2 files changed, 66 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 c05987f7da3f..bc3b09a14664 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
@@ -1050,6 +1050,7 @@
"ap-southeast-2" : { },
"ca-central-1" : { },
"eu-central-1" : { },
+ "eu-north-1" : { },
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
@@ -2979,6 +2980,30 @@
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
+ "fips-us-east-1" : {
+ "credentialScope" : {
+ "region" : "us-east-1"
+ },
+ "hostname" : "monitoring-fips.us-east-1.amazonaws.com"
+ },
+ "fips-us-east-2" : {
+ "credentialScope" : {
+ "region" : "us-east-2"
+ },
+ "hostname" : "monitoring-fips.us-east-2.amazonaws.com"
+ },
+ "fips-us-west-1" : {
+ "credentialScope" : {
+ "region" : "us-west-1"
+ },
+ "hostname" : "monitoring-fips.us-west-1.amazonaws.com"
+ },
+ "fips-us-west-2" : {
+ "credentialScope" : {
+ "region" : "us-west-2"
+ },
+ "hostname" : "monitoring-fips.us-west-2.amazonaws.com"
+ },
"me-south-1" : { },
"sa-east-1" : { },
"us-east-1" : { },
@@ -4921,6 +4946,12 @@
},
"waf-regional" : {
"endpoints" : {
+ "ap-east-1" : {
+ "credentialScope" : {
+ "region" : "ap-east-1"
+ },
+ "hostname" : "waf-regional.ap-east-1.amazonaws.com"
+ },
"ap-northeast-1" : {
"credentialScope" : {
"region" : "ap-northeast-1"
@@ -4987,6 +5018,12 @@
},
"hostname" : "waf-regional.eu-west-3.amazonaws.com"
},
+ "fips-ap-east-1" : {
+ "credentialScope" : {
+ "region" : "ap-east-1"
+ },
+ "hostname" : "waf-regional-fips.ap-east-1.amazonaws.com"
+ },
"fips-ap-northeast-1" : {
"credentialScope" : {
"region" : "ap-northeast-1"
@@ -5053,6 +5090,12 @@
},
"hostname" : "waf-regional-fips.eu-west-3.amazonaws.com"
},
+ "fips-me-south-1" : {
+ "credentialScope" : {
+ "region" : "me-south-1"
+ },
+ "hostname" : "waf-regional-fips.me-south-1.amazonaws.com"
+ },
"fips-sa-east-1" : {
"credentialScope" : {
"region" : "sa-east-1"
@@ -5083,6 +5126,12 @@
},
"hostname" : "waf-regional-fips.us-west-2.amazonaws.com"
},
+ "me-south-1" : {
+ "credentialScope" : {
+ "region" : "me-south-1"
+ },
+ "hostname" : "waf-regional.me-south-1.amazonaws.com"
+ },
"sa-east-1" : {
"credentialScope" : {
"region" : "sa-east-1"
@@ -6313,6 +6362,18 @@
},
"monitoring" : {
"endpoints" : {
+ "fips-us-gov-east-1" : {
+ "credentialScope" : {
+ "region" : "us-gov-east-1"
+ },
+ "hostname" : "monitoring.us-gov-east-1.amazonaws.com"
+ },
+ "fips-us-gov-west-1" : {
+ "credentialScope" : {
+ "region" : "us-gov-west-1"
+ },
+ "hostname" : "monitoring.us-gov-west-1.amazonaws.com"
+ },
"us-gov-east-1" : { },
"us-gov-west-1" : { }
}
From 7ae9999c853e157f174a58d71c6e538183cc2203 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 2 Apr 2020 18:07:25 +0000
Subject: [PATCH 010/604] Release 2.11.8. Updated CHANGELOG.md, README.md and
all pom.xml.
---
.changes/2.11.8.json | 36 +++++++++++++++++++
...feature-AWSElementalMediaLive-90b523e.json | 5 ---
.../feature-AWSSDKforJavav2-e97801d.json | 5 ---
.../feature-AmazonCloudWatch-7e2dbb4.json | 5 ---
.../feature-AmazonGameLift-ec5ba1b.json | 5 ---
.../feature-AmazonRedshift-162d7e6.json | 5 ---
...azonRelationalDatabaseService-7fef438.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/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/netty-nio-client/pom.xml | 2 +-
http-clients/pom.xml | 2 +-
http-clients/url-connection-client/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/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/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/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/iam/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/iotthingsgraph/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/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/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/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/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/textract/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 +-
271 files changed, 327 insertions(+), 296 deletions(-)
create mode 100644 .changes/2.11.8.json
delete mode 100644 .changes/next-release/feature-AWSElementalMediaLive-90b523e.json
delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-e97801d.json
delete mode 100644 .changes/next-release/feature-AmazonCloudWatch-7e2dbb4.json
delete mode 100644 .changes/next-release/feature-AmazonGameLift-ec5ba1b.json
delete mode 100644 .changes/next-release/feature-AmazonRedshift-162d7e6.json
delete mode 100644 .changes/next-release/feature-AmazonRelationalDatabaseService-7fef438.json
diff --git a/.changes/2.11.8.json b/.changes/2.11.8.json
new file mode 100644
index 000000000000..edde3d1b2916
--- /dev/null
+++ b/.changes/2.11.8.json
@@ -0,0 +1,36 @@
+{
+ "version": "2.11.8",
+ "date": "2020-04-02",
+ "entries": [
+ {
+ "type": "feature",
+ "category": "Amazon GameLift",
+ "description": "Public preview of GameLift FleetIQ as a standalone feature. GameLift FleetIQ makes it possible to use low-cost Spot instances by limiting the chance of interruptions affecting game sessions. FleetIQ is a feature of the managed GameLift service, and can now be used with game hosting in EC2 Auto Scaling groups that you manage in your own account."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Redshift",
+ "description": "Documentation updates for redshift"
+ },
+ {
+ "type": "feature",
+ "category": "AWS SDK for Java v2",
+ "description": "Updated service endpoint metadata."
+ },
+ {
+ "type": "feature",
+ "category": "AWS Elemental MediaLive",
+ "description": "AWS Elemental MediaLive now supports Automatic Input Failover. This feature provides resiliency upstream of the channel, before ingest starts."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Relational Database Service",
+ "description": "Documentation updates for RDS: creating read replicas is now supported for SQL Server DB instances"
+ },
+ {
+ "type": "feature",
+ "category": "Amazon CloudWatch",
+ "description": "Amazon CloudWatch Contributor Insights adds support for tags and tagging on resource creation."
+ }
+ ]
+}
\ No newline at end of file
diff --git a/.changes/next-release/feature-AWSElementalMediaLive-90b523e.json b/.changes/next-release/feature-AWSElementalMediaLive-90b523e.json
deleted file mode 100644
index d5eb9dedb574..000000000000
--- a/.changes/next-release/feature-AWSElementalMediaLive-90b523e.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Elemental MediaLive",
- "description": "AWS Elemental MediaLive now supports Automatic Input Failover. This feature provides resiliency upstream of the channel, before ingest starts."
-}
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-AmazonCloudWatch-7e2dbb4.json b/.changes/next-release/feature-AmazonCloudWatch-7e2dbb4.json
deleted file mode 100644
index f2513694a2fa..000000000000
--- a/.changes/next-release/feature-AmazonCloudWatch-7e2dbb4.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon CloudWatch",
- "description": "Amazon CloudWatch Contributor Insights adds support for tags and tagging on resource creation."
-}
diff --git a/.changes/next-release/feature-AmazonGameLift-ec5ba1b.json b/.changes/next-release/feature-AmazonGameLift-ec5ba1b.json
deleted file mode 100644
index d4f9fc1f8b21..000000000000
--- a/.changes/next-release/feature-AmazonGameLift-ec5ba1b.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon GameLift",
- "description": "Public preview of GameLift FleetIQ as a standalone feature. GameLift FleetIQ makes it possible to use low-cost Spot instances by limiting the chance of interruptions affecting game sessions. FleetIQ is a feature of the managed GameLift service, and can now be used with game hosting in EC2 Auto Scaling groups that you manage in your own account."
-}
diff --git a/.changes/next-release/feature-AmazonRedshift-162d7e6.json b/.changes/next-release/feature-AmazonRedshift-162d7e6.json
deleted file mode 100644
index c9236b0f8734..000000000000
--- a/.changes/next-release/feature-AmazonRedshift-162d7e6.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Redshift",
- "description": "Documentation updates for redshift"
-}
diff --git a/.changes/next-release/feature-AmazonRelationalDatabaseService-7fef438.json b/.changes/next-release/feature-AmazonRelationalDatabaseService-7fef438.json
deleted file mode 100644
index 54ada6f44734..000000000000
--- a/.changes/next-release/feature-AmazonRelationalDatabaseService-7fef438.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Relational Database Service",
- "description": "Documentation updates for RDS: creating read replicas is now supported for SQL Server DB instances"
-}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4f30c0afcaf1..d1bca54c963b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,28 @@
+# __2.11.8__ __2020-04-02__
+## __AWS Elemental MediaLive__
+ - ### Features
+ - AWS Elemental MediaLive now supports Automatic Input Failover. This feature provides resiliency upstream of the channel, before ingest starts.
+
+## __AWS SDK for Java v2__
+ - ### Features
+ - Updated service endpoint metadata.
+
+## __Amazon CloudWatch__
+ - ### Features
+ - Amazon CloudWatch Contributor Insights adds support for tags and tagging on resource creation.
+
+## __Amazon GameLift__
+ - ### Features
+ - Public preview of GameLift FleetIQ as a standalone feature. GameLift FleetIQ makes it possible to use low-cost Spot instances by limiting the chance of interruptions affecting game sessions. FleetIQ is a feature of the managed GameLift service, and can now be used with game hosting in EC2 Auto Scaling groups that you manage in your own account.
+
+## __Amazon Redshift__
+ - ### Features
+ - Documentation updates for redshift
+
+## __Amazon Relational Database Service__
+ - ### Features
+ - Documentation updates for RDS: creating read replicas is now supported for SQL Server DB instances
+
# __2.11.7__ __2020-04-01__
## __AWS IoT__
- ### Features
diff --git a/README.md b/README.md
index 9eff33ae8e04..86066036e33e 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.11.7
+ 2.11.8
pom
import
@@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only:
software.amazon.awssdk
ec2
- 2.11.7
+ 2.11.8
software.amazon.awssdk
s3
- 2.11.7
+ 2.11.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.11.7
+ 2.11.8
```
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index c8dc4e8715e6..79e6287c6fdb 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
archetype-lambda
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index c0b3b6bc9e01..37623d36d233 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index 05f3c137f192..0eddd67b09c2 100644
--- a/aws-sdk-java/pom.xml
+++ b/aws-sdk-java/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8-SNAPSHOT
+ 2.11.8
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index d174d998a091..cc1f9e3e65fd 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index d0756c704b7d..facba5985c73 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8-SNAPSHOT
+ 2.11.8
../pom.xml
bom
diff --git a/bundle/pom.xml b/bundle/pom.xml
index 754b81f93d99..7a1c2a3ff2c6 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8-SNAPSHOT
+ 2.11.8
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 4dc1a66e81e8..256ee1a6e398 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.11.8-SNAPSHOT
+ 2.11.8
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index a0cb1447a45f..cf40c6775800 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8-SNAPSHOT
+ 2.11.8
codegen-lite
AWS Java SDK :: Code Generator Lite
diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml
index 0fad221360f8..7b52f02f0384 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.11.8-SNAPSHOT
+ 2.11.8
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index e399462cc313..de3a59d8bed3 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8-SNAPSHOT
+ 2.11.8
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index dc45bde62beb..b5dd24f5dc5a 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index 85bececede5c..d64713e4aac5 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index a3fdd347c4ec..c7598b2949c0 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.8-SNAPSHOT
+ 2.11.8
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index 911bb417db04..f633db090d4d 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.8-SNAPSHOT
+ 2.11.8
aws-core
diff --git a/core/pom.xml b/core/pom.xml
index 76a1bd7b08aa..ada9dd2798eb 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index d01d58e1cffa..a935dbfcdca2 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.8-SNAPSHOT
+ 2.11.8
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index 8e2baca4c320..c6e0af30fbe7 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.11.8-SNAPSHOT
+ 2.11.8
4.0.0
diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml
index e9be1f4696c2..780aa7bdca3c 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.11.8-SNAPSHOT
+ 2.11.8
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index d28646888042..d5f8bee5c834 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.11.8-SNAPSHOT
+ 2.11.8
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index fcb7686f5da5..c0405a2193d4 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.11.8-SNAPSHOT
+ 2.11.8
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index f5aec0f4d18c..642b992f12e1 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.11.8-SNAPSHOT
+ 2.11.8
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index 32aef73a8d12..28850d7e74e7 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index 8f5ab21658d2..fe16cbc90458 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index a3e46e116a6b..7f56274cc87f 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.8-SNAPSHOT
+ 2.11.8
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index b7aed7ff01f0..b794ac3acbc5 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.11.8-SNAPSHOT
+ 2.11.8
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index 8960b256bf26..f7c5d4447025 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.11.8-SNAPSHOT
+ 2.11.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 127b3cfdedf3..858b3bc06296 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.11.8-SNAPSHOT
+ 2.11.8
apache-client
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index 7dfe6f4049ad..5cb6c18e8a66 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.11.8-SNAPSHOT
+ 2.11.8
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index a7d6826b7507..4ff264850314 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index a3ec0329a75a..b8f5e00a849c 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.11.8-SNAPSHOT
+ 2.11.8
4.0.0
diff --git a/pom.xml b/pom.xml
index 73537783d376..d77654c5b490 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8-SNAPSHOT
+ 2.11.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 9ca2b59bd6c7..5c59f63c285e 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8-SNAPSHOT
+ 2.11.8
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index b84f276edaba..23ec5f6f4abb 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.11.8-SNAPSHOT
+ 2.11.8
dynamodb-enhanced
${awsjavasdk.version}-PREVIEW
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index 695a0425204a..be3bbf46d1b0 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8-SNAPSHOT
+ 2.11.8
services-custom
AWS Java SDK :: Custom Services
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index 1fea08d600de..95b71ddcf8d8 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 3430494dfa61..d28c79921f27 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index d364e0ea274e..fd72138b782e 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml
index 2c31428dec03..6fb5c73f95e8 100644
--- a/services/alexaforbusiness/pom.xml
+++ b/services/alexaforbusiness/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
alexaforbusiness
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index adf9cb4fe41b..c7f45034d56f 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index 036e8087959f..656dd0b95f20 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index 0db976a526b3..ae47d18110e5 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index a2052262e07d..19adf1d4245d 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index 942f15f4eac7..408fe642edee 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index 23502d714885..1546893bdce1 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index cd4710aab6a7..99508c3e5cf9 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index 1ea59661bb05..5ba11736d636 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index b5d271c50d72..00d56c45288a 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index 1ae1986247ad..8215982ef3f5 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index 01a12b515d39..e232d573b09f 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
appsync
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index 9eab66019763..008a68c18b86 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index abd618fc9e5a..a7a6a23089dc 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index da4101fdf0ed..7756d50e0173 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index ede48d850d48..722eea551b57 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index 008f451dfffd..d762185fc04a 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 76a79b345806..13633bc8165e 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index 556834880c05..829f628fcf3b 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index 027d8bbe996c..38e1d30bce1b 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
cloud9
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index aead307e22e2..4d5134351f6f 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index bcba9c1c9c6a..012c75adf1c2 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index ceb9407cce3b..dfc367f7869e 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index 335454f43a33..8a4efa1eff5e 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index 7ad8750fe0c1..314af12b2911 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index ba2d4aa52aaf..577474a1d835 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index 527dceeb14bb..a92a21f405d1 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index c2f22311e6d3..f286abaa487d 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index f20011ed726d..06cdcdaaa6e5 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index ed705fc3e36a..873d3812b3e5 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index e3ad775c6bf3..7c82d00f93c1 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index 77dd54a08cc8..cb12a313f43b 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index 3dce7c123c5f..17a69b3347fe 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index 86e99c8d9fee..4a2218ec9d95 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index 7e56369d83ee..fdc8a1a802fd 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index 9675d92d2892..661e267acce6 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index 765e8524ca62..378bd4eb7719 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index a6ec7eecbb6a..ddaca94ca9b0 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index 311b5f961f90..aea6263f6b25 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index db0a9534e2bf..339b8ce054ee 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index 08880413f140..dfd67b480ecc 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index 3507c10f9e91..4327d55ac014 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
cognitoidentityprovider
AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service
diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml
index 48bd9036deb0..7ead55ae6785 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index 5bb972e78bfb..14bf7159f57d 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index 7102c96c19c5..2e6955023b80 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index e1c7b44b95a0..9605398cba07 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index 3ede1cf0da4d..3d201bb4745f 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index 31f02da0bbf8..97b03669f849 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index 0d74d4e57c07..456565271e97 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index fcba43f2240b..1b5f4caee5b9 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
costandusagereport
AWS Java SDK :: Services :: AWS Cost and Usage Report
diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml
index f601e04efc17..5f16a24528c4 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
costexplorer
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index 732780100c4c..2145136fcc56 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index a687d0620e5a..2ee0ba8aa1ae 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index 6506b32038a1..b4c7f3df7af5 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index c3af15e129d8..c360e76914f9 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index e4c63c66fa63..b84cd4147640 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index 58e2bc4aadb3..ec6da624cae3 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index 598d6a3864d6..ee9b3b53a453 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index 89910c4f994e..31b7ac7119fd 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index 1ceb138a953b..aa424703e597 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index d7239c8a28ab..5fc78649501e 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index 91437f694adb..694dd6c960c5 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index 857a89f90acf..f04d47262a56 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index 1a62c1d09d88..529d6038e6c9 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 9220edd2b98f..4fb53b72530c 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index 35ad580c4d23..bfed2aa9e2b1 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index a72e16e2c36b..f844c688ca40 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index abed9f26db1f..a7fc5d0e3dd0 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index 9186a188c4e1..610466b908cc 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index 9ae62292257f..d13336dbcc7e 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index 7c44e6b86d83..b3f32ef41e90 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index cb1c88c8763f..03e185b9b34a 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index f607db29eb37..1d8122c40557 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index 61d2f5301b79..598f810a8a16 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index 1e53f152a57d..e9f4fe4eb998 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index c212cec9b8b9..50e6d42766df 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 813748b1ef59..9ae31d61ea86 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index eb98755cc4da..821721e74369 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index 4b4c60dd9d72..bc61dc3be796 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index 3dae8d3f41f4..72be8e192984 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index c5d1bae55689..aab61417ac69 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index 3b0b15de70f8..137b23a2e3b3 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index 5fa73209279e..1166a94b5c80 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index a0d8f08205f5..d3a17e6e10eb 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index 35d5c5767b33..f8fbac2985e9 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index cb869b2b7b8c..5cb3fa66f924 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index 1326e1202d25..2039ff6000b1 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index ef5c51813291..1323aa29d962 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index 4149748d6163..d1d47fa2ae72 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
glue
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index ab3aa8a08373..5eb48d482003 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index fdae2f01bca5..f50df1be1d45 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index fc3be6195fbe..26bbe601fa31 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index 61165e0dec15..1d1827fde5f6 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index 338c41c0d735..24c82c0273cd 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index 4955aa7bf204..4c092e6f2175 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 1fac9dd35030..2ec64d63024f 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index d455d51cfd06..93be200cfcf6 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index 3f6384a42db3..a1365bb5d89c 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index fbbdf83f8506..cc06fd984a75 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index 9eda5f52136a..326728f26fe9 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index 2f0b3ab5f977..f81c5b6ae5ec 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index fcbe0e01e59b..49f553536560 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 9361a0305ee9..dc80b2dbbeb3 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 508b3ebeb5dc..4a9e959af57c 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index 71412c0935f3..e2402a14207d 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index 81536ee4da43..a9966bce6d9b 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index 61624343088c..ed930311bd8a 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 1d612e145ac1..15ed68906a48 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index 425b533b1a49..953f122185bd 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index e01c46631d9e..16a221fde4fa 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index 8e5d70f5d652..f1af667c94f1 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index 75c2c6ae6f72..77d5fcbdf682 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index 07033c819537..328ca56b57f8 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index ff8263f9200b..97afebf4adb2 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index 11419292ae18..b752833315cc 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index 9114e045a9e7..4ca12d0724ee 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index ed8744417a04..53c1081a9c62 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index 17c02bee872f..c56c8b2daf92 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index a6f08df31d2b..a3d7dbfb5d99 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index f5044e84ce11..0bd74b4d6624 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index e367cf533e20..0ad1a535403c 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index 29a38f90bf7e..56da716ec6de 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index 6c37a44e7e60..fe5b597ffb29 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie/pom.xml b/services/macie/pom.xml
index 6a8d6b26d33c..d9ead2e20c4c 100644
--- a/services/macie/pom.xml
+++ b/services/macie/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
macie
AWS Java SDK :: Services :: Macie
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index fd43d59f2fc8..4f33baa772f9 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index 5e197e46d0a5..2fbfde975067 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 8620447f285b..84bdcc7d7da6 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index 60335e9142bc..ca2a628343dc 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index ab882af5af2f..15b089b23f2f 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index ca8ef51687d4..05ca2111e45f 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index 5319bf1471d1..8e6565d781e6 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index cee2cb31eff8..802738c73041 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index e8c4ce3eec4b..d4444930627e 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
mediapackage
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 8e96b9c09408..9541ccdca58d 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index d3d09389dc09..9cea4ad99ad6 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index 0ceb09656795..fca413d482b0 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 63d8f68b1204..491ad65a5750 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index b19b09fd2f48..1ac2ce8d7a1d 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index 59e96daa2eb7..db1647da3680 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index c0346127574c..054d795e85f2 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index 568159e34fb8..a0c49d8c2c88 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index 16afdb86ee23..9e639b43ef60 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index 14d1a1f74071..addcd40a3fdf 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index 4c1792b34131..15625cde492e 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index 26b4977b73e2..8fbd23f1a348 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index 8787cd2ec1db..0ea4a66ac89a 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
opsworkscm
AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate
diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml
index 3eebe2fd0685..9702b5bedd60 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index 5ff0d332be98..b6db781a7336 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index 631531f95053..f3e82b06bbd2 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index f513b9b76a5b..cbb9020aa6cb 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index f51b5fea8725..82aead78145d 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 28aedfc5d211..02e3c805fa17 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index 45df9bf1f7dd..03b88e8675f3 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index 0cc8a7d2eeb4..911e744d4cf3 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index ce3d5c91a00a..440304537f13 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index 66c4fc3d0021..a3fd0ad048bb 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index e7de375b8418..f52e4242f570 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8-SNAPSHOT
+ 2.11.8
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index 45e615f43b6c..4f46de98ddbc 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
pricing
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index 67fbb2d945bd..c52ec70d8bce 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index 427ff774bdc5..2f0eb86edcc8 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index 74bc015ed040..ff8adf26057c 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index 8e8c84bd2f29..f22c7a8d4b26 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 5d66186659a1..5c4be717f224 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index 9c20387bd003..85da366e24ff 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index 11b377e693ca..86f41c83e919 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index 2317f3b84e45..36cf0c3be69c 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index ef09bbc97b0c..5f829883646c 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index 1fec1b5cb7b4..179f69117574 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
resourcegroupstaggingapi
AWS Java SDK :: Services :: AWS Resource Groups Tagging API
diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml
index bff3e0355985..6dc17684ebdf 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index 449862aec5e3..7a20ff25c909 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index ddbb59896b20..348674857de5 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index b2563060e911..d40a73b175dd 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index d4764cbcf178..90a56cb8b9c2 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index 02cee30492be..6fddde9fc82e 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index 40f673163d12..1598d9fb55f5 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 31aedf41413b..44b24e02cef1 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index cb2db7011048..8686fc79ab79 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index 78c4f90dcebc..fa2631c1cbc6 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index 4b7b358eef5a..878ba450990b 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index b38acf0441e3..c2fe8a6096ef 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index d038682e7bdf..769bf384dffe 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index bdd25cbad1bf..3865caedba30 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 0403062d8559..922a448e16c7 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index 90e99f77c45d..3e8fb6aae6ba 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index 441c7beadbe9..c4b8408c0022 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index 3efa87c85801..4ae28fa67334 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index db977dc5f484..db9bf6637b88 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index e8f5feb0291c..4e3a247f7a4c 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index 3a3f5ca5e4a1..4f293d70d544 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index 0e679a824282..3418f7a47fde 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index 645644804c84..6543ce2aa895 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index 28ad4041c934..c10b7ea6d6e0 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 70ae9728a50d..47fae0d0ddd0 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index 05f018ae1b98..1c230cd931a8 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index 6aac23d1790f..66ef3cc46fe2 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
ssm
AWS Java SDK :: Services :: AWS Simple Systems Management (SSM)
diff --git a/services/sso/pom.xml b/services/sso/pom.xml
index 733955fde6a9..59806d3f6eed 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index 4ff0ccf65032..fedad86cfaae 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index 97282925f0d6..7cf32d323bd1 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index 3169f51bfee5..2792d1ed12fa 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/support/pom.xml b/services/support/pom.xml
index 5b740e18c449..af60174152ca 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 99d8f06fdabe..dae429ba36e2 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index 7e29b686c9b3..d430ff9773c9 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index d591d7e7a95e..964dfb049a4f 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index ece6203e26be..eb3be70e4ad8 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index 89e618fb722f..7bd35c4784bc 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index c6094474a60d..dc0b921b6826 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
translate
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index dd59a9c1dfed..aa99bc488216 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index 9a724742e7b4..3ec55ca15c94 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index 0f9b7247ce62..8dbed4ee5ac2 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index 9f975b00e8c6..c343c4c4ce41 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index ed9b1b110056..b208525e6ce2 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index 1449cb1f516e..9e0415c42365 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 591874223c81..81d77b75e44b 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.8
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index d1ddbdcf5df8..3efebe6d8c83 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8-SNAPSHOT
+ 2.11.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 815c6b4c8ba1..6b84aa809b86 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.11.8-SNAPSHOT
+ 2.11.8
../../pom.xml
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index c27a55cb6171..b552e7cd9812 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.11.8-SNAPSHOT
+ 2.11.8
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index c7d76a1c31e9..efb3bff1b257 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.11.8-SNAPSHOT
+ 2.11.8
../../pom.xml
4.0.0
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index 801d4f5fc3ef..66a6fdd5d39f 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.11.8-SNAPSHOT
+ 2.11.8
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 7d7815fc278e..0631cf1d32b2 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.11.8-SNAPSHOT
+ 2.11.8
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index 39100f47a0d1..ece0737457de 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.11.8-SNAPSHOT
+ 2.11.8
../../pom.xml
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index fbdbdc5d1a85..76ba6a5a48d6 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.11.8-SNAPSHOT
+ 2.11.8
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index d0fb2e2922ad..4c3d125f881c 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.11.8-SNAPSHOT
+ 2.11.8
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index 11a1d9288399..7b2f3123dfa6 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.11.8-SNAPSHOT
+ 2.11.8
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index a0c3bb2cc33c..a9a851d74462 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.11.8-SNAPSHOT
+ 2.11.8
../../pom.xml
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index 9bd146a01696..04f70eabcb3c 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.8-SNAPSHOT
+ 2.11.8
4.0.0
From 865fe38363f0a1d87710a380534e7a8204f6c529 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 2 Apr 2020 18:34:15 +0000
Subject: [PATCH 011/604] Update to next snapshot version: 2.11.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/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/netty-nio-client/pom.xml | 2 +-
http-clients/pom.xml | 2 +-
http-clients/url-connection-client/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/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/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/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/iam/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/iotthingsgraph/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/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/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/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/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/textract/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 +-
262 files changed, 262 insertions(+), 262 deletions(-)
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index 79e6287c6fdb..c39df2450184 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
archetype-lambda
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index 37623d36d233..61be97304b70 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index 0eddd67b09c2..091736b1aec5 100644
--- a/aws-sdk-java/pom.xml
+++ b/aws-sdk-java/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8
+ 2.11.9-SNAPSHOT
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index cc1f9e3e65fd..365695079f67 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index facba5985c73..7282de7af32f 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8
+ 2.11.9-SNAPSHOT
../pom.xml
bom
diff --git a/bundle/pom.xml b/bundle/pom.xml
index 7a1c2a3ff2c6..f3c29209e050 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8
+ 2.11.9-SNAPSHOT
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 256ee1a6e398..3d653c37afce 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.11.8
+ 2.11.9-SNAPSHOT
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index cf40c6775800..a40458f7c481 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8
+ 2.11.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 7b52f02f0384..8a571fc08a7c 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.11.8
+ 2.11.9-SNAPSHOT
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index de3a59d8bed3..584f9a254cdb 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8
+ 2.11.9-SNAPSHOT
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index b5dd24f5dc5a..b0f73efaf46e 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index d64713e4aac5..766d396b91eb 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index c7598b2949c0..59fc45875354 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.8
+ 2.11.9-SNAPSHOT
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index f633db090d4d..65fb77185095 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.8
+ 2.11.9-SNAPSHOT
aws-core
diff --git a/core/pom.xml b/core/pom.xml
index ada9dd2798eb..967d0aef9347 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index a935dbfcdca2..140c07b3d373 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.8
+ 2.11.9-SNAPSHOT
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index c6e0af30fbe7..0f0fba0ef142 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.11.8
+ 2.11.9-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml
index 780aa7bdca3c..ff695f99e975 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.11.8
+ 2.11.9-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index d5f8bee5c834..12e52c693c74 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.11.8
+ 2.11.9-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index c0405a2193d4..4153c9dc8fa6 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.11.8
+ 2.11.9-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index 642b992f12e1..87a937e0f705 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.11.8
+ 2.11.9-SNAPSHOT
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index 28850d7e74e7..2ec9d6d89cfc 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index fe16cbc90458..2b9bbce5bfbf 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index 7f56274cc87f..1a6d15b0320a 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.8
+ 2.11.9-SNAPSHOT
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index b794ac3acbc5..8c7c20f9e1ee 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.11.8
+ 2.11.9-SNAPSHOT
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index f7c5d4447025..4bd67c398607 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.11.8
+ 2.11.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 858b3bc06296..42c40744a40b 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.11.8
+ 2.11.9-SNAPSHOT
apache-client
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index 5cb6c18e8a66..bb9f68870c61 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.11.8
+ 2.11.9-SNAPSHOT
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index 4ff264850314..e2cfd7b76759 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index b8f5e00a849c..83ccba435a53 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.11.8
+ 2.11.9-SNAPSHOT
4.0.0
diff --git a/pom.xml b/pom.xml
index d77654c5b490..eb8e48db2e8c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8
+ 2.11.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 5c59f63c285e..368dfcc23ff1 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8
+ 2.11.9-SNAPSHOT
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index 23ec5f6f4abb..24295803dccf 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.11.8
+ 2.11.9-SNAPSHOT
dynamodb-enhanced
${awsjavasdk.version}-PREVIEW
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index be3bbf46d1b0..e5ff6da1bc46 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8
+ 2.11.9-SNAPSHOT
services-custom
AWS Java SDK :: Custom Services
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index 95b71ddcf8d8..93708b2c2fc2 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index d28c79921f27..0fd35bfb2514 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index fd72138b782e..e222d2fbc936 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml
index 6fb5c73f95e8..a6ec18a5118d 100644
--- a/services/alexaforbusiness/pom.xml
+++ b/services/alexaforbusiness/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
alexaforbusiness
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index c7f45034d56f..0fce614b3ecd 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index 656dd0b95f20..c68710d8eda6 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index ae47d18110e5..64f114690ae3 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index 19adf1d4245d..445a8e4ce48d 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index 408fe642edee..6577f6092dab 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index 1546893bdce1..102cd97c0f24 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 99508c3e5cf9..7ce0d16935fd 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index 5ba11736d636..d1d704d098d1 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index 00d56c45288a..4739a56da2a9 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index 8215982ef3f5..6d67905d5032 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index e232d573b09f..42549858d18a 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
appsync
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index 008a68c18b86..f30b460d92ac 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index a7a6a23089dc..8df9f5a980be 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index 7756d50e0173..937fc2c23e0e 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index 722eea551b57..85f349dd63a7 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index d762185fc04a..efcad0353054 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 13633bc8165e..84ac21c2eaa2 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index 829f628fcf3b..0e85496d80da 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index 38e1d30bce1b..a3b0fd9aeecd 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
cloud9
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index 4d5134351f6f..52c0cbcc50f3 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 012c75adf1c2..792b50ac80e7 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index dfc367f7869e..9b5bbe5137cf 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index 8a4efa1eff5e..6c4a899a2567 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index 314af12b2911..b81e5d64a33d 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index 577474a1d835..45e71266a442 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index a92a21f405d1..dd299de09689 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index f286abaa487d..5c0a3f444441 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index 06cdcdaaa6e5..b53200c9bb0e 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index 873d3812b3e5..b2736b6c19dd 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index 7c82d00f93c1..aea54b1952de 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index cb12a313f43b..f84525151a71 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index 17a69b3347fe..c0b78f61a514 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index 4a2218ec9d95..32946c757bb1 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index fdc8a1a802fd..31bbcb4e38ad 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index 661e267acce6..4d5ec0761430 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index 378bd4eb7719..b6bc773e7212 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index ddaca94ca9b0..333877abe986 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index aea6263f6b25..2a48d4751e9d 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index 339b8ce054ee..c4913d16a623 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index dfd67b480ecc..49de57639d8b 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index 4327d55ac014..ec77afdcdddc 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.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 7ead55ae6785..a555f8efb691 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index 14bf7159f57d..c7f5a08bc322 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index 2e6955023b80..aff040be37c0 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index 9605398cba07..62384423dccc 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index 3d201bb4745f..9f223b658cf6 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index 97b03669f849..9c65d683b3a1 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index 456565271e97..2f4f7be6d7be 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index 1b5f4caee5b9..3193d467413c 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.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 5f16a24528c4..7b62438a7d05 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
costexplorer
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index 2145136fcc56..f56f87b74d91 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index 2ee0ba8aa1ae..d09607dbadd5 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index b4c7f3df7af5..c274aa34d98f 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index c360e76914f9..933c853ffb61 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index b84cd4147640..b0869f4bcf6c 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index ec6da624cae3..e8e8dd6119e6 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index ee9b3b53a453..b40621b76c5a 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index 31b7ac7119fd..7cab865a02e3 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index aa424703e597..3715ee62c4bb 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index 5fc78649501e..1c17d4d1a445 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index 694dd6c960c5..e1a32cc59d1c 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index f04d47262a56..17cef298b63f 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index 529d6038e6c9..fff17fb6f84a 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 4fb53b72530c..62b4c5050a98 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index bfed2aa9e2b1..b1fd663db6ad 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index f844c688ca40..1f804fd6d650 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index a7fc5d0e3dd0..ec9c65b12b6a 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index 610466b908cc..0a01a2f76014 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index d13336dbcc7e..05620c87433c 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index b3f32ef41e90..c671651f9ea3 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index 03e185b9b34a..36f96730a937 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index 1d8122c40557..b91b75c1f10c 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index 598f810a8a16..c04843f49d47 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index e9f4fe4eb998..9cded7a75fd8 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index 50e6d42766df..09eebfa6ae1a 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 9ae31d61ea86..2635c75d571c 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index 821721e74369..785d73b198f1 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index bc61dc3be796..88f055bfc11a 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index 72be8e192984..f16c626eb629 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index aab61417ac69..e2e02c12771f 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index 137b23a2e3b3..880133f8658a 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index 1166a94b5c80..c2c721ecec12 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index d3a17e6e10eb..cee8766036a4 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index f8fbac2985e9..23b03b13f1e5 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index 5cb3fa66f924..9c668887bb36 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index 2039ff6000b1..aee125cc7eb4 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index 1323aa29d962..f2745824c821 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index d1d47fa2ae72..1d70e9558d76 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
glue
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index 5eb48d482003..ec2cbd4b6140 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index f50df1be1d45..b435d73b92d6 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index 26bbe601fa31..55ed00def794 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index 1d1827fde5f6..61638fbb05cd 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index 24c82c0273cd..969a62666b45 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index 4c092e6f2175..a1ab0dd10d26 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 2ec64d63024f..3d40eb704e09 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index 93be200cfcf6..73d5d4055d57 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index a1365bb5d89c..21d04a3e1b88 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index cc06fd984a75..d207a622ad70 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index 326728f26fe9..e90fa12e7fd5 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index f81c5b6ae5ec..6de9b07c4c48 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index 49f553536560..b2865c0a1abe 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index dc80b2dbbeb3..015079b74faf 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 4a9e959af57c..1d6f643bbc32 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index e2402a14207d..02470a4dde6a 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index a9966bce6d9b..b9f8bba4f067 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index ed930311bd8a..15370a03cdbb 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 15ed68906a48..2932c9bb9843 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index 953f122185bd..48d4d1f71908 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index 16a221fde4fa..cff4656e8263 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index f1af667c94f1..7f1d64582a87 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index 77d5fcbdf682..f6d6bd25427b 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index 328ca56b57f8..4d51199b8a42 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index 97afebf4adb2..320afed01f65 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index b752833315cc..1ad9979c9d4f 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index 4ca12d0724ee..6475e5e183d7 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index 53c1081a9c62..597b52888b53 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index c56c8b2daf92..b70dbe11d1b1 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index a3d7dbfb5d99..e22483f48e4a 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index 0bd74b4d6624..dc9b509e2c02 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index 0ad1a535403c..f2d6b01a0310 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index 56da716ec6de..05ae5f245405 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index fe5b597ffb29..c379e3457ebb 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie/pom.xml b/services/macie/pom.xml
index d9ead2e20c4c..e9f1c354875f 100644
--- a/services/macie/pom.xml
+++ b/services/macie/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
macie
AWS Java SDK :: Services :: Macie
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index 4f33baa772f9..65aca63c84e2 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index 2fbfde975067..29addd706b27 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 84bdcc7d7da6..3cd06f7d11cf 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index ca2a628343dc..1c1f5656b0ff 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index 15b089b23f2f..79c5d9fa3607 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 05ca2111e45f..9604a93d104c 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index 8e6565d781e6..bec68dc55bed 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 802738c73041..1e59470dd4fa 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index d4444930627e..ce85e96f4eef 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
mediapackage
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 9541ccdca58d..2572edb6f8ac 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index 9cea4ad99ad6..b3ce6310fa21 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index fca413d482b0..e682895f9159 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 491ad65a5750..d2e75b4672da 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index 1ac2ce8d7a1d..387c9388b980 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index db1647da3680..2fa5366a9bbe 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index 054d795e85f2..3ba245250391 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index a0c49d8c2c88..792a7d6a5f71 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index 9e639b43ef60..e47677897672 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index addcd40a3fdf..c845fa21124f 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index 15625cde492e..fa1269e4b56b 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index 8fbd23f1a348..66618a392aa9 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index 0ea4a66ac89a..fc30c8adbd76 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.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 9702b5bedd60..2b6e215382e3 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index b6db781a7336..d7a6c9bf2fc2 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index f3e82b06bbd2..65cc1f1c3e69 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index cbb9020aa6cb..61641bc07c9c 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 82aead78145d..5263be3124b0 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 02e3c805fa17..f83fbeee846a 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index 03b88e8675f3..cc735a574132 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index 911e744d4cf3..db9ff77372d0 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index 440304537f13..099c8998e1b8 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index a3fd0ad048bb..0071e3ca67c3 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index f52e4242f570..fb8fecaf3bab 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.8
+ 2.11.9-SNAPSHOT
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index 4f46de98ddbc..8d9effa6b91f 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
pricing
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index c52ec70d8bce..f846d3b7c465 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index 2f0eb86edcc8..ab0d9ca24d55 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index ff8adf26057c..80f154697f47 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index f22c7a8d4b26..4396d8ea9bbb 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 5c4be717f224..74f4d2d60c77 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index 85da366e24ff..7d6f0a6d4d17 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index 86f41c83e919..5e683432c190 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index 36cf0c3be69c..0a265698e8de 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index 5f829883646c..e9eee350b5f2 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index 179f69117574..801833f24f0f 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.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 6dc17684ebdf..0cd5800a6aab 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index 7a20ff25c909..14ce673b6fbd 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index 348674857de5..b254d8268192 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index d40a73b175dd..155b551d798a 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index 90a56cb8b9c2..2cd0aad47909 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index 6fddde9fc82e..e2b4dcdeafe6 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index 1598d9fb55f5..c1c655dcdaf2 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 44b24e02cef1..33dc3e878b44 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index 8686fc79ab79..4c2e05ed2d12 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index fa2631c1cbc6..0ac226db4be9 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index 878ba450990b..c01a1a616137 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index c2fe8a6096ef..e0a424951035 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index 769bf384dffe..411a57b41156 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index 3865caedba30..3f0d471f3c96 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 922a448e16c7..2090812fcea2 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index 3e8fb6aae6ba..4cd67ff0eed4 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index c4b8408c0022..8ea8e90c0f49 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index 4ae28fa67334..80ec75b317b0 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index db9bf6637b88..500e77ff6a2a 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index 4e3a247f7a4c..97510daf075a 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index 4f293d70d544..f47ef4ee58eb 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index 3418f7a47fde..5251aabcbbd2 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index 6543ce2aa895..84510abf186e 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index c10b7ea6d6e0..0c55e0079016 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 47fae0d0ddd0..7d0cda3d7fc6 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index 1c230cd931a8..fadd2f2d93be 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index 66ef3cc46fe2..394eda8166e8 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.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 59806d3f6eed..bb4f2312934b 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index fedad86cfaae..819e6167bab2 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index 7cf32d323bd1..7f29ac84219e 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index 2792d1ed12fa..ae248404df08 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/support/pom.xml b/services/support/pom.xml
index af60174152ca..e05014f96d6d 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index dae429ba36e2..4e8d07dd8396 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index d430ff9773c9..0cf40b7341fd 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index 964dfb049a4f..0248f2d7694f 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index eb3be70e4ad8..536d7d9bc10e 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index 7bd35c4784bc..2cd14af243cb 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index dc0b921b6826..582d86941d04 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
translate
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index aa99bc488216..a6e4eb14daf8 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index 3ec55ca15c94..84aa8500f8a5 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index 8dbed4ee5ac2..380d99afc46a 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index c343c4c4ce41..f58b1f92bbbe 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index b208525e6ce2..405594712710 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index 9e0415c42365..0a86e08b87c5 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 81d77b75e44b..7087d391bfdb 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.9-SNAPSHOT
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index 3efebe6d8c83..6e5effdbbac0 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.8
+ 2.11.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 6b84aa809b86..9d1eaf50633b 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.11.8
+ 2.11.9-SNAPSHOT
../../pom.xml
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index b552e7cd9812..5a71dee14ab0 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.11.8
+ 2.11.9-SNAPSHOT
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index efb3bff1b257..df9e37904880 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.11.8
+ 2.11.9-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index 66a6fdd5d39f..1b6737177c0f 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.11.8
+ 2.11.9-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 0631cf1d32b2..0f9d5fab13b1 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.11.8
+ 2.11.9-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index ece0737457de..d8b299880f65 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.11.8
+ 2.11.9-SNAPSHOT
../../pom.xml
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index 76ba6a5a48d6..0074d04f8583 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.11.8
+ 2.11.9-SNAPSHOT
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index 4c3d125f881c..426f9e070afa 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.11.8
+ 2.11.9-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index 7b2f3123dfa6..b63dc92d06f5 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.11.8
+ 2.11.9-SNAPSHOT
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index a9a851d74462..4c258562d1c4 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.11.8
+ 2.11.9-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index 04f70eabcb3c..576a13fd7866 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.8
+ 2.11.9-SNAPSHOT
4.0.0
From c2830437298526c7356112b0820f09e98abd1b2d Mon Sep 17 00:00:00 2001
From: Russell Scheerer
Date: Mon, 23 Mar 2020 13:22:03 -0400
Subject: [PATCH 012/604] Allow DefaultS3Presigner.Builder to take a custom
S3Configuration
---
.../next-release/feature-AWSS3-cc6ada4.json | 5 +
.../presigner/DefaultS3Presigner.java | 29 +++-
.../services/s3/presigner/S3Presigner.java | 11 ++
.../awssdk/services/s3/S3PresignerTest.java | 130 +++++++++++++++++-
4 files changed, 171 insertions(+), 4 deletions(-)
create mode 100644 .changes/next-release/feature-AWSS3-cc6ada4.json
diff --git a/.changes/next-release/feature-AWSS3-cc6ada4.json b/.changes/next-release/feature-AWSS3-cc6ada4.json
new file mode 100644
index 000000000000..596282918efd
--- /dev/null
+++ b/.changes/next-release/feature-AWSS3-cc6ada4.json
@@ -0,0 +1,5 @@
+{
+ "category": "AWS S3",
+ "type": "feature",
+ "description": "Allow DefaultS3Presigner.Builder to take a custom S3Configuration"
+}
diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/presigner/DefaultS3Presigner.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/presigner/DefaultS3Presigner.java
index 6df831bbbcc0..70f3725ef706 100644
--- a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/presigner/DefaultS3Presigner.java
+++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/presigner/DefaultS3Presigner.java
@@ -98,9 +98,13 @@
@SdkInternalApi
public final class DefaultS3Presigner extends DefaultSdkPresigner implements S3Presigner {
private static final AwsS3V4Signer DEFAULT_SIGNER = AwsS3V4Signer.create();
+ private static final S3Configuration DEFAULT_S3_CONFIGURATION = S3Configuration.builder()
+ .checksumValidationEnabled(false)
+ .build();
private static final String SERVICE_NAME = "s3";
private static final String SIGNING_NAME = "s3";
+ private final S3Configuration serviceConfiguration;
private final List clientInterceptors;
private final GetObjectRequestMarshaller getObjectRequestMarshaller;
private final PutObjectRequestMarshaller putObjectRequestMarshaller;
@@ -112,6 +116,8 @@ public final class DefaultS3Presigner extends DefaultSdkPresigner implements S3P
private DefaultS3Presigner(Builder b) {
super(b);
+ this.serviceConfiguration = b.serviceConfiguration != null ? b.serviceConfiguration : DEFAULT_S3_CONFIGURATION;
+
this.clientInterceptors = initializeInterceptors();
// Copied from DefaultS3Client#init
@@ -236,6 +242,10 @@ public PresignedAbortMultipartUploadRequest presignAbortMultipartUpload(AbortMul
.build();
}
+ protected S3Configuration serviceConfiguration() {
+ return serviceConfiguration;
+ }
+
/**
* Generate a {@link PresignedRequest} from a {@link PresignedRequest} and {@link SdkRequest}.
*/
@@ -289,9 +299,7 @@ private ExecutionContext createExecutionContext(PresignRequest presignRequest, S
.putAttribute(SdkExecutionAttribute.CLIENT_TYPE, ClientType.SYNC)
.putAttribute(SdkExecutionAttribute.SERVICE_NAME, SERVICE_NAME)
.putAttribute(SdkExecutionAttribute.OPERATION_NAME, operationName)
- .putAttribute(AwsSignerExecutionAttribute.SERVICE_CONFIG, S3Configuration.builder()
- .checksumValidationEnabled(false)
- .build())
+ .putAttribute(AwsSignerExecutionAttribute.SERVICE_CONFIG, serviceConfiguration())
.putAttribute(PRESIGNER_EXPIRATION, signatureExpiration);
ExecutionInterceptorChain executionInterceptorChain = new ExecutionInterceptorChain(clientInterceptors);
@@ -464,9 +472,24 @@ private void initializePresignedRequest(PresignedRequest.Builder presignedReques
public static final class Builder extends DefaultSdkPresigner.Builder
implements S3Presigner.Builder {
+ private S3Configuration serviceConfiguration;
+
private Builder() {
}
+ /**
+ * Allows providing a custom S3 serviceConfiguration by providing a {@link S3Configuration} object;
+ *
+ * Note: chunkedEncodingEnabled and checksumValidationEnabled do not apply to presigned requests.
+ *
+ * @param serviceConfiguration {@link S3Configuration}
+ * @return this Builder
+ */
+ public Builder serviceConfiguration(S3Configuration serviceConfiguration) {
+ this.serviceConfiguration = serviceConfiguration;
+ return this;
+ }
+
@Override
public S3Presigner build() {
return new DefaultS3Presigner(this);
diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/presigner/S3Presigner.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/presigner/S3Presigner.java
index a2a3510d632c..db462c5f8bec 100644
--- a/services/s3/src/main/java/software/amazon/awssdk/services/s3/presigner/S3Presigner.java
+++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/presigner/S3Presigner.java
@@ -30,6 +30,7 @@
import software.amazon.awssdk.http.SdkHttpClient;
import software.amazon.awssdk.regions.Region;
import software.amazon.awssdk.regions.providers.DefaultAwsRegionProviderChain;
+import software.amazon.awssdk.services.s3.S3Configuration;
import software.amazon.awssdk.services.s3.internal.presigner.DefaultS3Presigner;
import software.amazon.awssdk.services.s3.model.AbortMultipartUploadRequest;
import software.amazon.awssdk.services.s3.model.CompleteMultipartUploadRequest;
@@ -512,6 +513,16 @@ default PresignedAbortMultipartUploadRequest presignAbortMultipartUpload(
@SdkPublicApi
@NotThreadSafe
interface Builder extends SdkPresigner.Builder {
+ /**
+ * Allows providing a custom S3 serviceConfiguration by providing a {@link S3Configuration} object;
+ *
+ * Note: chunkedEncodingEnabled and checksumValidationEnabled do not apply to presigned requests.
+ *
+ * @param serviceConfiguration {@link S3Configuration}
+ * @return this Builder
+ */
+ Builder serviceConfiguration(S3Configuration serviceConfiguration);
+
@Override
Builder region(Region region);
diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/S3PresignerTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/S3PresignerTest.java
index 5cf3f215c607..7ac86abc0170 100644
--- a/services/s3/src/test/java/software/amazon/awssdk/services/s3/S3PresignerTest.java
+++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/S3PresignerTest.java
@@ -30,7 +30,6 @@
import software.amazon.awssdk.auth.credentials.AwsCredentials;
import software.amazon.awssdk.auth.signer.AwsS3V4Signer;
import software.amazon.awssdk.awscore.AwsRequestOverrideConfiguration;
-import software.amazon.awssdk.core.client.config.ClientOverrideConfiguration;
import software.amazon.awssdk.core.signer.NoOpSigner;
import software.amazon.awssdk.regions.Region;
import software.amazon.awssdk.services.s3.model.RequestPayer;
@@ -41,6 +40,7 @@
@RunWith(MockitoJUnitRunner.class)
public class S3PresignerTest {
private static final URI FAKE_URL;
+ private static final String BUCKET = "some-bucket";
private S3Presigner presigner;
@@ -64,8 +64,12 @@ private S3Presigner.Builder presignerBuilder() {
.credentialsProvider(() -> AwsBasicCredentials.create("x", "x"));
}
+
private S3Presigner generateMaximal() {
return S3Presigner.builder()
+ .serviceConfiguration(S3Configuration.builder()
+ .checksumValidationEnabled(false)
+ .build())
.credentialsProvider(() -> AwsBasicCredentials.create("x", "x"))
.region(Region.US_EAST_1)
.endpointOverride(FAKE_URL)
@@ -325,4 +329,128 @@ public void putObject_Sigv4PresignerHonorsSignatureDuration() {
assertThat(Integer.parseInt(expires)).isCloseTo(1234, Offset.offset(2));
});
}
+
+ @Test
+ public void getObject_S3ConfigurationCanBeOverriddenToLeverageTransferAcceleration() {
+ S3Presigner presigner = presignerBuilder().serviceConfiguration(S3Configuration.builder()
+ .accelerateModeEnabled(true)
+ .build())
+ .build();
+
+ PresignedGetObjectRequest presignedRequest =
+ presigner.presignGetObject(r -> r.signatureDuration(Duration.ofMinutes(5))
+ .getObjectRequest(go -> go.bucket("foo34343434")
+ .key("bar")));
+
+
+ System.out.println(presignedRequest.url());
+
+ assertThat(presignedRequest.httpRequest().host()).contains(".s3-accelerate.");
+ }
+
+
+ @Test
+ public void accelerateEnabled_UsesVirtualAddressingWithAccelerateEndpoint() {
+ S3Presigner presigner = presignerBuilder().serviceConfiguration(S3Configuration.builder()
+ .accelerateModeEnabled(true)
+ .build())
+ .build();
+
+ PresignedGetObjectRequest presignedRequest =
+ presigner.presignGetObject(r -> r.signatureDuration(Duration.ofMinutes(5))
+ .getObjectRequest(go -> go.bucket(BUCKET)
+ .key("bar")));
+
+ assertThat(presignedRequest.httpRequest().host()).isEqualTo(String.format("%s.s3-accelerate.amazonaws.com", BUCKET));
+ }
+
+ /**
+ * Dualstack uses regional endpoints that support virtual addressing.
+ */
+ @Test
+ public void dualstackEnabled_UsesVirtualAddressingWithDualstackEndpoint() throws Exception {
+ S3Presigner presigner = presignerBuilder().serviceConfiguration(S3Configuration.builder()
+ .dualstackEnabled(true)
+ .build())
+ .build();
+
+ PresignedGetObjectRequest presignedRequest =
+ presigner.presignGetObject(r -> r.signatureDuration(Duration.ofMinutes(5))
+ .getObjectRequest(go -> go.bucket(BUCKET)
+ .key("bar")));
+
+ assertThat(presignedRequest.httpRequest().host()).contains(String.format("%s.s3.dualstack.us-west-2.amazonaws.com", BUCKET));
+ }
+
+ /**
+ * Dualstack also supports path style endpoints just like the normal endpoints.
+ */
+ @Test
+ public void dualstackAndPathStyleEnabled_UsesPathStyleAddressingWithDualstackEndpoint() throws Exception {
+ S3Presigner presigner = presignerBuilder().serviceConfiguration(S3Configuration.builder()
+ .dualstackEnabled(true)
+ .pathStyleAccessEnabled(true)
+ .build())
+ .build();
+
+ PresignedGetObjectRequest presignedRequest =
+ presigner.presignGetObject(r -> r.signatureDuration(Duration.ofMinutes(5))
+ .getObjectRequest(go -> go.bucket(BUCKET)
+ .key("bar")));
+
+ assertThat(presignedRequest.httpRequest().host()).isEqualTo("s3.dualstack.us-west-2.amazonaws.com");
+ assertThat(presignedRequest.url().toString()).startsWith(String.format("https://s3.dualstack.us-west-2.amazonaws.com/%s/%s?", BUCKET, "bar"));
+ }
+
+ /**
+ * When dualstack and accelerate are both enabled there is a special, global dualstack endpoint we must use.
+ */
+ @Test
+ public void dualstackAndAccelerateEnabled_UsesDualstackAccelerateEndpoint() throws Exception {
+ S3Presigner presigner = presignerBuilder().serviceConfiguration(S3Configuration.builder()
+ .dualstackEnabled(true)
+ .accelerateModeEnabled(true)
+ .build())
+ .build();
+
+ PresignedGetObjectRequest presignedRequest =
+ presigner.presignGetObject(r -> r.signatureDuration(Duration.ofMinutes(5))
+ .getObjectRequest(go -> go.bucket(BUCKET)
+ .key("bar")));
+
+ assertThat(presignedRequest.httpRequest().host()).isEqualTo(String.format("%s.s3-accelerate.dualstack.amazonaws.com", BUCKET));
+ }
+
+ @Test
+ public void accessPointArn_differentRegion_useArnRegionTrue() throws Exception {
+ String customEndpoint = "https://foobar-12345678910.s3-accesspoint.us-west-2.amazonaws.com";
+ String accessPointArn = "arn:aws:s3:us-west-2:12345678910:accesspoint:foobar";
+
+ S3Presigner presigner = presignerBuilder().serviceConfiguration(S3Configuration.builder()
+ .useArnRegionEnabled(true)
+ .build())
+ .build();
+
+ PresignedGetObjectRequest presignedRequest =
+ presigner.presignGetObject(r -> r.signatureDuration(Duration.ofMinutes(5))
+ .getObjectRequest(go -> go.bucket(accessPointArn)
+ .key("bar")));
+
+ assertThat(presignedRequest.url().toString()).startsWith(customEndpoint);
+ }
+
+ @Test
+ public void accessPointArn_differentRegion_useArnRegionFalse_throwsIllegalArgumentException() throws Exception {
+ String accessPointArn = "arn:aws:s3:us-east-1:12345678910:accesspoint:foobar";
+
+ S3Presigner presigner = presignerBuilder().serviceConfiguration(S3Configuration.builder()
+ .useArnRegionEnabled(false)
+ .build())
+ .build();
+
+ assertThatThrownBy(() -> presigner.presignGetObject(r -> r.signatureDuration(Duration.ofMinutes(5))
+ .getObjectRequest(go -> go.bucket(accessPointArn).key("bar"))))
+ .isInstanceOf(IllegalArgumentException.class)
+ .hasMessageContaining("region");
+ }
}
\ No newline at end of file
From 689b91f09318bd89ac108b2f10e74ea5b2005e63 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 3 Apr 2020 18:05:02 +0000
Subject: [PATCH 013/604] Amazon Personalize Runtime Update: Amazon
Personalize: Add new response field "score" to each item returned by
GetRecommendations and GetPersonalizedRanking (HRNN-based recipes only)
---
.../feature-AmazonPersonalizeRuntime-b780836.json | 5 +++++
.../src/main/resources/codegen-resources/service-2.json | 9 +++++++--
2 files changed, 12 insertions(+), 2 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonPersonalizeRuntime-b780836.json
diff --git a/.changes/next-release/feature-AmazonPersonalizeRuntime-b780836.json b/.changes/next-release/feature-AmazonPersonalizeRuntime-b780836.json
new file mode 100644
index 000000000000..e202b706c73e
--- /dev/null
+++ b/.changes/next-release/feature-AmazonPersonalizeRuntime-b780836.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon Personalize Runtime",
+ "description": "Amazon Personalize: Add new response field \"score\" to each item returned by GetRecommendations and GetPersonalizedRanking (HRNN-based recipes only)"
+}
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 bee262699de9..6e9b32c4f3ac 100644
--- a/services/personalizeruntime/src/main/resources/codegen-resources/service-2.json
+++ b/services/personalizeruntime/src/main/resources/codegen-resources/service-2.json
@@ -88,7 +88,7 @@
},
"context":{
"shape":"Context",
- "documentation":"The contextual metadata to use when getting recommendations. Contextual metadata includes any interaction information that might be relevant when getting a user's recommendations, such as the user's current location or device type. For more information, see Contextual Metadata.
"
+ "documentation":"The contextual metadata to use when getting recommendations. Contextual metadata includes any interaction information that might be relevant when getting a user's recommendations, such as the user's current location or device type.
"
}
}
},
@@ -123,7 +123,7 @@
},
"context":{
"shape":"Context",
- "documentation":"The contextual metadata to use when getting recommendations. Contextual metadata includes any interaction information that might be relevant when getting a user's recommendations, such as the user's current location or device type. For more information, see Contextual Metadata.
"
+ "documentation":"The contextual metadata to use when getting recommendations. Contextual metadata includes any interaction information that might be relevant when getting a user's recommendations, such as the user's current location or device type.
"
}
}
},
@@ -167,6 +167,10 @@
"itemId":{
"shape":"ItemID",
"documentation":"The recommended item ID.
"
+ },
+ "score":{
+ "shape":"Score",
+ "documentation":"A numeric representation of the model's certainty in the item's suitability. For more information on scoring logic, see how-scores-work.
"
}
},
"documentation":"An object that identifies an item.
The and APIs return a list of PredictedItem
s.
"
@@ -180,6 +184,7 @@
"error":{"httpStatusCode":404},
"exception":true
},
+ "Score":{"type":"double"},
"UserID":{
"type":"string",
"max":256
From b0de4344072f64e06989be45b3efdd2097b3dc11 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 3 Apr 2020 18:05:08 +0000
Subject: [PATCH 014/604] AWS RoboMaker Update: Added support for limiting
simulation unit usage, giving more predictable control over simulation cost
---
.../feature-AWSRoboMaker-c261470.json | 5 +++
.../codegen-resources/service-2.json | 45 +++++++++++++++++++
2 files changed, 50 insertions(+)
create mode 100644 .changes/next-release/feature-AWSRoboMaker-c261470.json
diff --git a/.changes/next-release/feature-AWSRoboMaker-c261470.json b/.changes/next-release/feature-AWSRoboMaker-c261470.json
new file mode 100644
index 000000000000..dcd0bdd295f6
--- /dev/null
+++ b/.changes/next-release/feature-AWSRoboMaker-c261470.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "AWS RoboMaker",
+ "description": "Added support for limiting simulation unit usage, giving more predictable control over simulation cost"
+}
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 bde7e0e5d485..0bac97f4d804 100644
--- a/services/robomaker/src/main/resources/codegen-resources/service-2.json
+++ b/services/robomaker/src/main/resources/codegen-resources/service-2.json
@@ -783,6 +783,26 @@
"min":1,
"pattern":"[a-zA-Z0-9_.\\-]*"
},
+ "Compute":{
+ "type":"structure",
+ "members":{
+ "simulationUnitLimit":{
+ "shape":"SimulationUnit",
+ "documentation":"The simulation unit limit. Your simulation is allocated CPU and memory proportional to the supplied simulation unit limit. A simulation unit is 1 vcpu and 2GB of memory. You are only billed for the SU utilization you consume up to the maximim value provided.
"
+ }
+ },
+ "documentation":"Compute information for the simulation job.
"
+ },
+ "ComputeResponse":{
+ "type":"structure",
+ "members":{
+ "simulationUnitLimit":{
+ "shape":"SimulationUnit",
+ "documentation":"The simulation unit limit. Your simulation is allocated CPU and memory proportional to the supplied simulation unit limit. A simulation unit is 1 vcpu and 2GB of memory. You are only billed for the SU utilization you consume up to the maximim value provided.
"
+ }
+ },
+ "documentation":"Compute information for the simulation job
"
+ },
"ConcurrentDeploymentException":{
"type":"structure",
"members":{
@@ -1250,6 +1270,10 @@
"vpcConfig":{
"shape":"VPCConfig",
"documentation":"If your simulation job accesses resources in a VPC, you provide this parameter identifying the list of security group IDs and subnet IDs. These must belong to the same VPC. You must provide at least one security group and one subnet ID.
"
+ },
+ "compute":{
+ "shape":"Compute",
+ "documentation":"Compute information for the simulation job.
"
}
}
},
@@ -1328,6 +1352,10 @@
"vpcConfig":{
"shape":"VPCConfigResponse",
"documentation":"Information about the vpc configuration.
"
+ },
+ "compute":{
+ "shape":"ComputeResponse",
+ "documentation":"Compute information for the simulation job.
"
}
}
},
@@ -2075,6 +2103,10 @@
"networkInterface":{
"shape":"NetworkInterface",
"documentation":"The network interface information for the simulation job.
"
+ },
+ "compute":{
+ "shape":"ComputeResponse",
+ "documentation":"Compute information for the simulation job.
"
}
}
},
@@ -3191,6 +3223,10 @@
"networkInterface":{
"shape":"NetworkInterface",
"documentation":"Information about a network interface.
"
+ },
+ "compute":{
+ "shape":"ComputeResponse",
+ "documentation":"Compute information for the simulation job
"
}
},
"documentation":"Information about a simulation job.
"
@@ -3318,6 +3354,10 @@
"documentation":"Specify data sources to mount read-only files from S3 into your simulation. These files are available under /opt/robomaker/datasources/data_source_name
.
There is a limit of 100 files and a combined size of 25GB for all DataSourceConfig
objects.
"
},
"vpcConfig":{"shape":"VPCConfig"},
+ "compute":{
+ "shape":"Compute",
+ "documentation":"Compute information for the simulation job
"
+ },
"tags":{
"shape":"TagMap",
"documentation":"A map that contains tag keys and tag values that are attached to the simulation job request.
"
@@ -3412,6 +3452,11 @@
"pattern":"7|9|Kinetic|Melodic|Dashing"
},
"SimulationTimeMillis":{"type":"long"},
+ "SimulationUnit":{
+ "type":"integer",
+ "max":15,
+ "min":1
+ },
"Source":{
"type":"structure",
"members":{
From 9564943289d472b81dc2dd05c9f715be0e5ea761 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 3 Apr 2020 18:06:03 +0000
Subject: [PATCH 015/604] Updated endpoints.json.
---
.../feature-AWSSDKforJavav2-e97801d.json | 5 ++
.../regions/internal/region/endpoints.json | 49 +++++++++++++++++++
2 files changed, 54 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 bc3b09a14664..fe1c1dae25bf 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
@@ -2290,6 +2290,7 @@
},
"groundstation" : {
"endpoints" : {
+ "ap-southeast-2" : { },
"eu-north-1" : { },
"me-south-1" : { },
"us-east-2" : { },
@@ -2758,6 +2759,30 @@
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
+ "fips-us-east-1" : {
+ "credentialScope" : {
+ "region" : "us-east-1"
+ },
+ "hostname" : "license-manager-fips.us-east-1.amazonaws.com"
+ },
+ "fips-us-east-2" : {
+ "credentialScope" : {
+ "region" : "us-east-2"
+ },
+ "hostname" : "license-manager-fips.us-east-2.amazonaws.com"
+ },
+ "fips-us-west-1" : {
+ "credentialScope" : {
+ "region" : "us-west-1"
+ },
+ "hostname" : "license-manager-fips.us-west-1.amazonaws.com"
+ },
+ "fips-us-west-2" : {
+ "credentialScope" : {
+ "region" : "us-west-2"
+ },
+ "hostname" : "license-manager-fips.us-west-2.amazonaws.com"
+ },
"me-south-1" : { },
"sa-east-1" : { },
"us-east-1" : { },
@@ -5170,6 +5195,18 @@
"ap-southeast-1" : { },
"ap-southeast-2" : { },
"eu-west-1" : { },
+ "fips-us-east-1" : {
+ "credentialScope" : {
+ "region" : "us-east-1"
+ },
+ "hostname" : "workdocs-fips.us-east-1.amazonaws.com"
+ },
+ "fips-us-west-2" : {
+ "credentialScope" : {
+ "region" : "us-west-2"
+ },
+ "hostname" : "workdocs-fips.us-west-2.amazonaws.com"
+ },
"us-east-1" : { },
"us-west-2" : { }
}
@@ -6334,6 +6371,18 @@
},
"license-manager" : {
"endpoints" : {
+ "fips-us-gov-east-1" : {
+ "credentialScope" : {
+ "region" : "us-gov-east-1"
+ },
+ "hostname" : "license-manager-fips.us-gov-east-1.amazonaws.com"
+ },
+ "fips-us-gov-west-1" : {
+ "credentialScope" : {
+ "region" : "us-gov-west-1"
+ },
+ "hostname" : "license-manager-fips.us-gov-west-1.amazonaws.com"
+ },
"us-gov-east-1" : { },
"us-gov-west-1" : { }
}
From 4a4c01673349a117b4bb6e2d2c663f92f0f4820b Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 3 Apr 2020 18:06:40 +0000
Subject: [PATCH 016/604] Release 2.11.9. Updated CHANGELOG.md, README.md and
all pom.xml.
---
.changes/2.11.9.json | 26 +++++++++++++++++++
.../feature-AWSRoboMaker-c261470.json | 5 ----
.../next-release/feature-AWSS3-cc6ada4.json | 5 ----
.../feature-AWSSDKforJavav2-e97801d.json | 5 ----
...ture-AmazonPersonalizeRuntime-b780836.json | 5 ----
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/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/netty-nio-client/pom.xml | 2 +-
http-clients/pom.xml | 2 +-
http-clients/url-connection-client/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/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/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/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/iam/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/iotthingsgraph/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/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/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/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/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/textract/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 +-
269 files changed, 309 insertions(+), 286 deletions(-)
create mode 100644 .changes/2.11.9.json
delete mode 100644 .changes/next-release/feature-AWSRoboMaker-c261470.json
delete mode 100644 .changes/next-release/feature-AWSS3-cc6ada4.json
delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-e97801d.json
delete mode 100644 .changes/next-release/feature-AmazonPersonalizeRuntime-b780836.json
diff --git a/.changes/2.11.9.json b/.changes/2.11.9.json
new file mode 100644
index 000000000000..fda913d4e111
--- /dev/null
+++ b/.changes/2.11.9.json
@@ -0,0 +1,26 @@
+{
+ "version": "2.11.9",
+ "date": "2020-04-03",
+ "entries": [
+ {
+ "type": "feature",
+ "category": "AWS SDK for Java v2",
+ "description": "Updated service endpoint metadata."
+ },
+ {
+ "type": "feature",
+ "category": "AWS RoboMaker",
+ "description": "Added support for limiting simulation unit usage, giving more predictable control over simulation cost"
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Personalize Runtime",
+ "description": "Amazon Personalize: Add new response field \"score\" to each item returned by GetRecommendations and GetPersonalizedRanking (HRNN-based recipes only)"
+ },
+ {
+ "type": "feature",
+ "category": "AWS S3",
+ "description": "Allow DefaultS3Presigner.Builder to take a custom S3Configuration"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/.changes/next-release/feature-AWSRoboMaker-c261470.json b/.changes/next-release/feature-AWSRoboMaker-c261470.json
deleted file mode 100644
index dcd0bdd295f6..000000000000
--- a/.changes/next-release/feature-AWSRoboMaker-c261470.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "AWS RoboMaker",
- "description": "Added support for limiting simulation unit usage, giving more predictable control over simulation cost"
-}
diff --git a/.changes/next-release/feature-AWSS3-cc6ada4.json b/.changes/next-release/feature-AWSS3-cc6ada4.json
deleted file mode 100644
index 596282918efd..000000000000
--- a/.changes/next-release/feature-AWSS3-cc6ada4.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "category": "AWS S3",
- "type": "feature",
- "description": "Allow DefaultS3Presigner.Builder to take a custom S3Configuration"
-}
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-AmazonPersonalizeRuntime-b780836.json b/.changes/next-release/feature-AmazonPersonalizeRuntime-b780836.json
deleted file mode 100644
index e202b706c73e..000000000000
--- a/.changes/next-release/feature-AmazonPersonalizeRuntime-b780836.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Personalize Runtime",
- "description": "Amazon Personalize: Add new response field \"score\" to each item returned by GetRecommendations and GetPersonalizedRanking (HRNN-based recipes only)"
-}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d1bca54c963b..f5dd8aade370 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,20 @@
+# __2.11.9__ __2020-04-03__
+## __AWS RoboMaker__
+ - ### Features
+ - Added support for limiting simulation unit usage, giving more predictable control over simulation cost
+
+## __AWS S3__
+ - ### Features
+ - Allow DefaultS3Presigner.Builder to take a custom S3Configuration
+
+## __AWS SDK for Java v2__
+ - ### Features
+ - Updated service endpoint metadata.
+
+## __Amazon Personalize Runtime__
+ - ### Features
+ - Amazon Personalize: Add new response field "score" to each item returned by GetRecommendations and GetPersonalizedRanking (HRNN-based recipes only)
+
# __2.11.8__ __2020-04-02__
## __AWS Elemental MediaLive__
- ### Features
diff --git a/README.md b/README.md
index 86066036e33e..ce441d93e9f6 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.11.8
+ 2.11.9
pom
import
@@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only:
software.amazon.awssdk
ec2
- 2.11.8
+ 2.11.9
software.amazon.awssdk
s3
- 2.11.8
+ 2.11.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.11.8
+ 2.11.9
```
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index c39df2450184..b37d451bbf3a 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
archetype-lambda
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index 61be97304b70..416c60e304a2 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index 091736b1aec5..fe601965f688 100644
--- a/aws-sdk-java/pom.xml
+++ b/aws-sdk-java/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9-SNAPSHOT
+ 2.11.9
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index 365695079f67..8cc0d6c5b8c0 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index 7282de7af32f..02ff27adcf48 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9-SNAPSHOT
+ 2.11.9
../pom.xml
bom
diff --git a/bundle/pom.xml b/bundle/pom.xml
index f3c29209e050..cc308b5239b6 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9-SNAPSHOT
+ 2.11.9
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 3d653c37afce..d96402b47ee7 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.11.9-SNAPSHOT
+ 2.11.9
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index a40458f7c481..4ceb2c5b7e4f 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9-SNAPSHOT
+ 2.11.9
codegen-lite
AWS Java SDK :: Code Generator Lite
diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml
index 8a571fc08a7c..b0a39fb7d905 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.11.9-SNAPSHOT
+ 2.11.9
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index 584f9a254cdb..5e2b1d28e1fe 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9-SNAPSHOT
+ 2.11.9
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index b0f73efaf46e..ef8eeff293a7 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index 766d396b91eb..3f312cd94771 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index 59fc45875354..4fb87dff9d4c 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.9-SNAPSHOT
+ 2.11.9
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index 65fb77185095..140786c82269 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.9-SNAPSHOT
+ 2.11.9
aws-core
diff --git a/core/pom.xml b/core/pom.xml
index 967d0aef9347..3e64330fb737 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index 140c07b3d373..e27a5e8e0668 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.9-SNAPSHOT
+ 2.11.9
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index 0f0fba0ef142..6b4f8b7bfee1 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.11.9-SNAPSHOT
+ 2.11.9
4.0.0
diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml
index ff695f99e975..dec95c2967b6 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.11.9-SNAPSHOT
+ 2.11.9
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index 12e52c693c74..964a8a3dbdbf 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.11.9-SNAPSHOT
+ 2.11.9
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index 4153c9dc8fa6..9237c61719b3 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.11.9-SNAPSHOT
+ 2.11.9
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index 87a937e0f705..d909c744ac54 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.11.9-SNAPSHOT
+ 2.11.9
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index 2ec9d6d89cfc..d427406c3f74 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index 2b9bbce5bfbf..5ad7291aceb1 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index 1a6d15b0320a..10ea6eaca8a5 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.9-SNAPSHOT
+ 2.11.9
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index 8c7c20f9e1ee..923df2df531b 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.11.9-SNAPSHOT
+ 2.11.9
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index 4bd67c398607..d5502404ea33 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.11.9-SNAPSHOT
+ 2.11.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 42c40744a40b..d933c456d38a 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.11.9-SNAPSHOT
+ 2.11.9
apache-client
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index bb9f68870c61..2d33609f097c 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.11.9-SNAPSHOT
+ 2.11.9
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index e2cfd7b76759..4e8326c2b3a1 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index 83ccba435a53..c25750b2106b 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.11.9-SNAPSHOT
+ 2.11.9
4.0.0
diff --git a/pom.xml b/pom.xml
index eb8e48db2e8c..99cdd78ea6f3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9-SNAPSHOT
+ 2.11.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 368dfcc23ff1..d35b94c55ce1 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9-SNAPSHOT
+ 2.11.9
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index 24295803dccf..6c3122ea3666 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.11.9-SNAPSHOT
+ 2.11.9
dynamodb-enhanced
${awsjavasdk.version}-PREVIEW
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index e5ff6da1bc46..d48f7b73a693 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9-SNAPSHOT
+ 2.11.9
services-custom
AWS Java SDK :: Custom Services
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index 93708b2c2fc2..5e7d684a1112 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 0fd35bfb2514..33a83db7b055 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index e222d2fbc936..f2b6baa9f2d7 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml
index a6ec18a5118d..b92548a4af51 100644
--- a/services/alexaforbusiness/pom.xml
+++ b/services/alexaforbusiness/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
alexaforbusiness
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index 0fce614b3ecd..1ebf9a228c8c 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index c68710d8eda6..e2e796a86f33 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index 64f114690ae3..5fac7c3078bf 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index 445a8e4ce48d..da71ce9a72ce 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index 6577f6092dab..2add8f278fe2 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index 102cd97c0f24..43ba399c7bc5 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 7ce0d16935fd..70852ba324b7 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index d1d704d098d1..2183e514f036 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index 4739a56da2a9..12a9dc186466 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index 6d67905d5032..19955fff3c34 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index 42549858d18a..aa1bf5f86404 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
appsync
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index f30b460d92ac..7a535e15d253 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index 8df9f5a980be..e56b0b2603e7 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index 937fc2c23e0e..1f69760f08cc 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index 85f349dd63a7..f36be927af2f 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index efcad0353054..c5d0ce45ea58 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 84ac21c2eaa2..20826b1aba83 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index 0e85496d80da..9035bdac036e 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index a3b0fd9aeecd..c81cb9e59200 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
cloud9
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index 52c0cbcc50f3..f7c95f72cba6 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 792b50ac80e7..6588f02b13e3 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index 9b5bbe5137cf..a6e422c617bb 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index 6c4a899a2567..a99e2583e6c8 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index b81e5d64a33d..dba52da8d0b1 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index 45e71266a442..40a306e532a0 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index dd299de09689..e966416d5d76 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index 5c0a3f444441..eb5a013c5979 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index b53200c9bb0e..f1b49ec4e86b 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index b2736b6c19dd..89c525c21abb 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index aea54b1952de..31c692273777 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index f84525151a71..2f089d84c536 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index c0b78f61a514..875abfcda41f 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index 32946c757bb1..aa9a6f7ebca4 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index 31bbcb4e38ad..10477681b4a9 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index 4d5ec0761430..ee927a4853d3 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index b6bc773e7212..4db73451a87d 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index 333877abe986..0fceb62808ce 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index 2a48d4751e9d..b383fa7cd303 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index c4913d16a623..855b0048a4e3 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index 49de57639d8b..545aa065744c 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index ec77afdcdddc..ef5b2b7f4b90 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
cognitoidentityprovider
AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service
diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml
index a555f8efb691..5f0538e3c653 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index c7f5a08bc322..d040f3864a58 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index aff040be37c0..bd2fdf06d063 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index 62384423dccc..f72b38b3a73a 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index 9f223b658cf6..3424aa165a01 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index 9c65d683b3a1..8ffffeb98b2f 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index 2f4f7be6d7be..ba55c9ad8d7f 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index 3193d467413c..31e909f16082 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
costandusagereport
AWS Java SDK :: Services :: AWS Cost and Usage Report
diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml
index 7b62438a7d05..e30ed073dec8 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
costexplorer
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index f56f87b74d91..45e7b4b40fe2 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index d09607dbadd5..ec220758f1ce 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index c274aa34d98f..3ecc56853ff0 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index 933c853ffb61..20dbbb8f021f 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index b0869f4bcf6c..82bd00e5616d 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index e8e8dd6119e6..704b8bd14a6c 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index b40621b76c5a..ca5318a9df2e 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index 7cab865a02e3..e326550a5d2b 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index 3715ee62c4bb..7ee78f107d89 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index 1c17d4d1a445..1ba0f265da31 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index e1a32cc59d1c..3dcc33f75ebb 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index 17cef298b63f..b9224dd9386e 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index fff17fb6f84a..0f0f2af458d8 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 62b4c5050a98..64b819508914 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index b1fd663db6ad..0d8aea7733ee 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index 1f804fd6d650..b13f8dd9349d 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index ec9c65b12b6a..0cb33d1a31a9 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index 0a01a2f76014..a0118a9cc63c 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index 05620c87433c..42d0d23c6aff 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index c671651f9ea3..8afdedbffe7d 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index 36f96730a937..2f3b62331bfa 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index b91b75c1f10c..5cb48710198a 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index c04843f49d47..ad137b01195b 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index 9cded7a75fd8..aab5820a4621 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index 09eebfa6ae1a..4059ef585d80 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 2635c75d571c..f2df82d745fa 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index 785d73b198f1..dbd0be5c36eb 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index 88f055bfc11a..ecbe96926a53 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index f16c626eb629..24ad9ac24b0e 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index e2e02c12771f..9a4cd4e4f61f 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index 880133f8658a..e3be387b0301 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index c2c721ecec12..8e430977529a 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index cee8766036a4..4eadfc9ec755 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index 23b03b13f1e5..8fb036d31bd3 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index 9c668887bb36..a78c89cf912a 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index aee125cc7eb4..76fe583d0580 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index f2745824c821..3783b5de45cd 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index 1d70e9558d76..56eafdd6dab4 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
glue
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index ec2cbd4b6140..566e6cddccfe 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index b435d73b92d6..079ec6e5c2ca 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index 55ed00def794..1a9db24dd056 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index 61638fbb05cd..cb1a8dfb1f9e 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index 969a62666b45..90fe4e9f6008 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index a1ab0dd10d26..561b22765582 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 3d40eb704e09..15e0225882f9 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index 73d5d4055d57..c0bea106db26 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index 21d04a3e1b88..2f2cf897c33b 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index d207a622ad70..0907b06d5d32 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index e90fa12e7fd5..69b3cbbeed4a 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index 6de9b07c4c48..af8c83753256 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index b2865c0a1abe..596337365d72 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 015079b74faf..83584fe7f87c 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 1d6f643bbc32..475e4141eb54 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index 02470a4dde6a..6f20bbb169f5 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index b9f8bba4f067..63de4bd2e933 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index 15370a03cdbb..7b29312e9dcf 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 2932c9bb9843..01aec9f9ca1a 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index 48d4d1f71908..c47f57442628 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index cff4656e8263..b90769997627 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index 7f1d64582a87..31f2b24e929b 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index f6d6bd25427b..d86430c37c7d 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index 4d51199b8a42..1961e775d6df 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index 320afed01f65..fe49f7a8d889 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index 1ad9979c9d4f..41017d76ba74 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index 6475e5e183d7..ea6fc9b6f5b4 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index 597b52888b53..c0b681a29bad 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index b70dbe11d1b1..8ee1b67569e9 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index e22483f48e4a..cd115bdb16f9 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index dc9b509e2c02..8ee9d36d01d3 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index f2d6b01a0310..815ea29f5c1e 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index 05ae5f245405..19e4bf43947b 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index c379e3457ebb..5d1b1ded3e7c 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie/pom.xml b/services/macie/pom.xml
index e9f1c354875f..ec915820909f 100644
--- a/services/macie/pom.xml
+++ b/services/macie/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
macie
AWS Java SDK :: Services :: Macie
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index 65aca63c84e2..4c0b332f5281 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index 29addd706b27..620a61d40e30 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 3cd06f7d11cf..63c6aaf48a31 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index 1c1f5656b0ff..9bc317874542 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index 79c5d9fa3607..abd9f896edbc 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 9604a93d104c..73c484734777 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index bec68dc55bed..8b95047da837 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 1e59470dd4fa..8c85fd96c38a 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index ce85e96f4eef..ca14be3ab75f 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
mediapackage
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 2572edb6f8ac..fab7be5b3237 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index b3ce6310fa21..12728e9db1b8 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index e682895f9159..0d67f4024d92 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index d2e75b4672da..31c348e2d2ab 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index 387c9388b980..cf0fb0d29368 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index 2fa5366a9bbe..1bfaa573eb84 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index 3ba245250391..db45b1e8a191 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index 792a7d6a5f71..348f1cad575b 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index e47677897672..98f3ffffc96d 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index c845fa21124f..a481a3b0b4d9 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index fa1269e4b56b..36593b6dddcd 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index 66618a392aa9..77707d29e0ea 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index fc30c8adbd76..7d2d02db73fc 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
opsworkscm
AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate
diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml
index 2b6e215382e3..944e859c90a1 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index d7a6c9bf2fc2..1a36698c6627 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index 65cc1f1c3e69..10c19ead91d7 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index 61641bc07c9c..9f58c5e67423 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 5263be3124b0..0fb4b0c2b444 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index f83fbeee846a..bf9049323c34 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index cc735a574132..0871b2b58143 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index db9ff77372d0..1a972ececad2 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index 099c8998e1b8..f1a4d5a20528 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index 0071e3ca67c3..2d77a0645704 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index fb8fecaf3bab..2dd685ded262 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9-SNAPSHOT
+ 2.11.9
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index 8d9effa6b91f..883ee4d10380 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
pricing
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index f846d3b7c465..7e03b4df89da 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index ab0d9ca24d55..41048153822b 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index 80f154697f47..81cf4710f505 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index 4396d8ea9bbb..a4051a1c4bb1 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 74f4d2d60c77..364979749e18 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index 7d6f0a6d4d17..3feb51bfa4cb 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index 5e683432c190..ded033750d7d 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index 0a265698e8de..94129e67b362 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index e9eee350b5f2..fb88014c381f 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index 801833f24f0f..8a7b28bfdaa4 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
resourcegroupstaggingapi
AWS Java SDK :: Services :: AWS Resource Groups Tagging API
diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml
index 0cd5800a6aab..925ac55815bf 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index 14ce673b6fbd..8ee71cd29b5d 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index b254d8268192..4c8ed93e5aa9 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index 155b551d798a..eedf95eb7a5c 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index 2cd0aad47909..e2e55b58eca1 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index e2b4dcdeafe6..d170014a0b18 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index c1c655dcdaf2..3302058ed92c 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 33dc3e878b44..47d3a43c82bd 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index 4c2e05ed2d12..0eaf7fb1b472 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index 0ac226db4be9..09afa5b2b8f9 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index c01a1a616137..2876018082d3 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index e0a424951035..7cd954c3610f 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index 411a57b41156..a27bd2af876f 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index 3f0d471f3c96..a564432cfd16 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 2090812fcea2..35fbb4d29d24 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index 4cd67ff0eed4..23883ae13bc2 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index 8ea8e90c0f49..465eac809192 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index 80ec75b317b0..d160933c9b63 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index 500e77ff6a2a..0339c7e0a171 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index 97510daf075a..d92b5d2f5dd6 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index f47ef4ee58eb..86bceb8d6eaf 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index 5251aabcbbd2..6cd8316a0908 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index 84510abf186e..360c8b6e64a1 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index 0c55e0079016..f32519016e1d 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 7d0cda3d7fc6..9913ac0e4198 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index fadd2f2d93be..aec441f51bca 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index 394eda8166e8..664f58ec1c8c 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
ssm
AWS Java SDK :: Services :: AWS Simple Systems Management (SSM)
diff --git a/services/sso/pom.xml b/services/sso/pom.xml
index bb4f2312934b..24bae123a33e 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index 819e6167bab2..fcd3f7e6a0b4 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index 7f29ac84219e..bfaf96567d42 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index ae248404df08..770ca405334d 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/support/pom.xml b/services/support/pom.xml
index e05014f96d6d..cbd0ca60d6f2 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 4e8d07dd8396..79ebc1ba17d5 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index 0cf40b7341fd..3827d7854cad 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index 0248f2d7694f..ea159e458b16 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index 536d7d9bc10e..5b47db33c76b 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index 2cd14af243cb..43f65db78799 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index 582d86941d04..7be0e5d7d3f8 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
translate
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index a6e4eb14daf8..b00d0a16326f 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index 84aa8500f8a5..ccf1af69330a 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index 380d99afc46a..88b1551f5203 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index f58b1f92bbbe..094eda5cc2e0 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index 405594712710..af479c9a9d82 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index 0a86e08b87c5..2b98429e6a6c 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 7087d391bfdb..ea4b99260108 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.9
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index 6e5effdbbac0..a343cb156ee3 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9-SNAPSHOT
+ 2.11.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 9d1eaf50633b..872648ac9c0e 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.11.9-SNAPSHOT
+ 2.11.9
../../pom.xml
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index 5a71dee14ab0..0daf86efec27 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.11.9-SNAPSHOT
+ 2.11.9
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index df9e37904880..29c211310bfb 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.11.9-SNAPSHOT
+ 2.11.9
../../pom.xml
4.0.0
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index 1b6737177c0f..254075498819 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.11.9-SNAPSHOT
+ 2.11.9
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 0f9d5fab13b1..21731976623e 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.11.9-SNAPSHOT
+ 2.11.9
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index d8b299880f65..a58102414bf9 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.11.9-SNAPSHOT
+ 2.11.9
../../pom.xml
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index 0074d04f8583..cd55ac4dacb1 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.11.9-SNAPSHOT
+ 2.11.9
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index 426f9e070afa..f14d02c8ccdd 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.11.9-SNAPSHOT
+ 2.11.9
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index b63dc92d06f5..f07502670bc6 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.11.9-SNAPSHOT
+ 2.11.9
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index 4c258562d1c4..538039e6aa52 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.11.9-SNAPSHOT
+ 2.11.9
../../pom.xml
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index 576a13fd7866..a2b8f56b7854 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.9-SNAPSHOT
+ 2.11.9
4.0.0
From 5b867a0f76d2d51cafba2bbcc8b4d43ee6f9c7c9 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 3 Apr 2020 18:31:25 +0000
Subject: [PATCH 017/604] Update to next snapshot version: 2.11.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/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/netty-nio-client/pom.xml | 2 +-
http-clients/pom.xml | 2 +-
http-clients/url-connection-client/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/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/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/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/iam/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/iotthingsgraph/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/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/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/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/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/textract/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 +-
262 files changed, 262 insertions(+), 262 deletions(-)
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index b37d451bbf3a..50270073b50e 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
archetype-lambda
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index 416c60e304a2..78f2fe5e460f 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index fe601965f688..79def6a3de16 100644
--- a/aws-sdk-java/pom.xml
+++ b/aws-sdk-java/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9
+ 2.11.10-SNAPSHOT
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index 8cc0d6c5b8c0..e8e90e5593e0 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index 02ff27adcf48..b30a8ccd0303 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9
+ 2.11.10-SNAPSHOT
../pom.xml
bom
diff --git a/bundle/pom.xml b/bundle/pom.xml
index cc308b5239b6..1d9c6192d149 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9
+ 2.11.10-SNAPSHOT
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index d96402b47ee7..24665f825316 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.11.9
+ 2.11.10-SNAPSHOT
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index 4ceb2c5b7e4f..d4c022ca609f 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9
+ 2.11.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 b0a39fb7d905..ab45ce3dd0a3 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.11.9
+ 2.11.10-SNAPSHOT
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index 5e2b1d28e1fe..72967530fb39 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9
+ 2.11.10-SNAPSHOT
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index ef8eeff293a7..6b15a291832f 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index 3f312cd94771..a80b4d4f4bf6 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index 4fb87dff9d4c..da5e025f22ae 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.9
+ 2.11.10-SNAPSHOT
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index 140786c82269..75d3e04fbf17 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.9
+ 2.11.10-SNAPSHOT
aws-core
diff --git a/core/pom.xml b/core/pom.xml
index 3e64330fb737..326e79c699da 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index e27a5e8e0668..cc5fadd34ba6 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.9
+ 2.11.10-SNAPSHOT
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index 6b4f8b7bfee1..b6a6096377e9 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.11.9
+ 2.11.10-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml
index dec95c2967b6..c48578f07ca6 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.11.9
+ 2.11.10-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index 964a8a3dbdbf..3f9cb9787c86 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.11.9
+ 2.11.10-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index 9237c61719b3..15a799121d38 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.11.9
+ 2.11.10-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index d909c744ac54..2516c6dd9736 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.11.9
+ 2.11.10-SNAPSHOT
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index d427406c3f74..296422c5e4af 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index 5ad7291aceb1..2ac5423ed18d 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index 10ea6eaca8a5..da9834bd5088 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.9
+ 2.11.10-SNAPSHOT
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index 923df2df531b..2dcc0737b3b4 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.11.9
+ 2.11.10-SNAPSHOT
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index d5502404ea33..409c565627c3 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.11.9
+ 2.11.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 d933c456d38a..ed0ebc76a300 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.11.9
+ 2.11.10-SNAPSHOT
apache-client
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index 2d33609f097c..cb80c3770dd8 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.11.9
+ 2.11.10-SNAPSHOT
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index 4e8326c2b3a1..0d2f89c3ae26 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index c25750b2106b..a0f468bc1bf0 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.11.9
+ 2.11.10-SNAPSHOT
4.0.0
diff --git a/pom.xml b/pom.xml
index 99cdd78ea6f3..d12d6c726f7c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9
+ 2.11.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 d35b94c55ce1..6241090db9bd 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9
+ 2.11.10-SNAPSHOT
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index 6c3122ea3666..27ec0ac7b462 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.11.9
+ 2.11.10-SNAPSHOT
dynamodb-enhanced
${awsjavasdk.version}-PREVIEW
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index d48f7b73a693..4daefc5f92a9 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9
+ 2.11.10-SNAPSHOT
services-custom
AWS Java SDK :: Custom Services
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index 5e7d684a1112..faa98a22baa5 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 33a83db7b055..757c043f6d21 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index f2b6baa9f2d7..72b062d912da 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml
index b92548a4af51..defd1cd8dd56 100644
--- a/services/alexaforbusiness/pom.xml
+++ b/services/alexaforbusiness/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
alexaforbusiness
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index 1ebf9a228c8c..20492fb2d9fa 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index e2e796a86f33..06e8b5e60545 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index 5fac7c3078bf..d4df0486ca5d 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index da71ce9a72ce..7534a83f133c 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index 2add8f278fe2..18ed47e82ddb 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index 43ba399c7bc5..72feb9c83449 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 70852ba324b7..f40272afd7d1 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index 2183e514f036..58efcdbf5d55 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index 12a9dc186466..f15d51a21183 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index 19955fff3c34..b8905318db54 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index aa1bf5f86404..efa737a2b77c 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
appsync
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index 7a535e15d253..c08e7758bb9f 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index e56b0b2603e7..eb4314e83066 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index 1f69760f08cc..a00490ec5ba2 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index f36be927af2f..075d86b66130 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index c5d0ce45ea58..59a261ad31bb 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 20826b1aba83..d2cf7713001b 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index 9035bdac036e..69cc02c3b6a9 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index c81cb9e59200..3982c2eeb77a 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
cloud9
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index f7c95f72cba6..b06ac7dd7d1a 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 6588f02b13e3..145790019161 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index a6e422c617bb..2ff5ea9890a6 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index a99e2583e6c8..7fa1b05c3f23 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index dba52da8d0b1..66bdde61f39c 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index 40a306e532a0..e144e2313d63 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index e966416d5d76..1c928a5ee753 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index eb5a013c5979..e3bea42b3a6c 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index f1b49ec4e86b..4ec50f285278 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index 89c525c21abb..c1ae3af1e770 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index 31c692273777..4aafc9109b6c 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index 2f089d84c536..79beaa741434 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index 875abfcda41f..a7b4075a3a00 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index aa9a6f7ebca4..a44fdd0ff6d3 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index 10477681b4a9..b3a99bdf27b4 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index ee927a4853d3..9393b68145d2 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index 4db73451a87d..b7052d945d47 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index 0fceb62808ce..c187c73d601c 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index b383fa7cd303..818136916137 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index 855b0048a4e3..2cfd650f2f30 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index 545aa065744c..9a3e4e1aa85e 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index ef5b2b7f4b90..394a39f2f4cd 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.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 5f0538e3c653..e3fa3f851596 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index d040f3864a58..a903a45b8af3 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index bd2fdf06d063..c909534dffb4 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index f72b38b3a73a..9c48b000da3f 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index 3424aa165a01..af72642f63d9 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index 8ffffeb98b2f..e99bedac6bfa 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index ba55c9ad8d7f..9dbe7373c838 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index 31e909f16082..e15c7df2ff0c 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.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 e30ed073dec8..c332be54c011 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
costexplorer
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index 45e7b4b40fe2..24a94ee505f9 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index ec220758f1ce..b9b9a54777fc 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index 3ecc56853ff0..93b693b78a06 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index 20dbbb8f021f..21e15b9d26bc 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index 82bd00e5616d..bd151e76b09a 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index 704b8bd14a6c..da912f928128 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index ca5318a9df2e..6bbfb395de29 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index e326550a5d2b..69dfbe98a5f7 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index 7ee78f107d89..79a1056ae364 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index 1ba0f265da31..e1de330889de 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index 3dcc33f75ebb..133dbeac4773 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index b9224dd9386e..e26e5e711843 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index 0f0f2af458d8..5c0ac453f2c5 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 64b819508914..59ad1d9675f1 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index 0d8aea7733ee..53d04c73066f 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index b13f8dd9349d..17fd313458cd 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index 0cb33d1a31a9..a5013a4b7752 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index a0118a9cc63c..49bdeb80e4e0 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index 42d0d23c6aff..a341e9553c5e 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index 8afdedbffe7d..0f0b21a502af 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index 2f3b62331bfa..dd71ecf636ca 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index 5cb48710198a..075afbc94322 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index ad137b01195b..2ba6f649483f 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index aab5820a4621..19ad502a0178 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index 4059ef585d80..31d00eec700f 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index f2df82d745fa..d88d427398ed 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index dbd0be5c36eb..1f9fe8e23e98 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index ecbe96926a53..39f208f64917 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index 24ad9ac24b0e..aae0a4329ad3 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index 9a4cd4e4f61f..32576b10b061 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index e3be387b0301..4cd57999df3f 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index 8e430977529a..dd0d607f2263 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index 4eadfc9ec755..f399a015f441 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index 8fb036d31bd3..8bd70a323ce9 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index a78c89cf912a..6f55d2b01e9a 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index 76fe583d0580..a692e3e4b17b 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index 3783b5de45cd..ba2ad8a741c8 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index 56eafdd6dab4..1c7e9b65fa2a 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
glue
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index 566e6cddccfe..936022a7a96c 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index 079ec6e5c2ca..06416c22bde4 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index 1a9db24dd056..f1a45862ccf0 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index cb1a8dfb1f9e..e6bad89b0a82 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index 90fe4e9f6008..b365e539e69d 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index 561b22765582..d60b51d838ba 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 15e0225882f9..3b932073ee2a 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index c0bea106db26..f811e0e9f278 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index 2f2cf897c33b..0f3c2916af8e 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index 0907b06d5d32..8cb01636c612 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index 69b3cbbeed4a..8f5287854888 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index af8c83753256..226776806b0c 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index 596337365d72..35b45c5f604a 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 83584fe7f87c..3d51898c0354 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 475e4141eb54..9b690037da34 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index 6f20bbb169f5..530c97b626e0 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index 63de4bd2e933..7160a4b43c40 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index 7b29312e9dcf..6444aeeab472 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 01aec9f9ca1a..54dd584e7429 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index c47f57442628..785cfe3c60a9 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index b90769997627..963de55ecc31 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index 31f2b24e929b..e0a8e51aeb0f 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index d86430c37c7d..af3b10c368c2 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index 1961e775d6df..cda160295f83 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index fe49f7a8d889..90137027d098 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index 41017d76ba74..77604e4aa9fd 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index ea6fc9b6f5b4..e843dc6aa362 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index c0b681a29bad..be5a8447dc31 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index 8ee1b67569e9..a7fa7258ad63 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index cd115bdb16f9..1754197c29dd 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index 8ee9d36d01d3..6cf502986973 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index 815ea29f5c1e..85774856f337 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index 19e4bf43947b..8ba91d353e3b 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index 5d1b1ded3e7c..4374d18ad10f 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie/pom.xml b/services/macie/pom.xml
index ec915820909f..40b0e9707001 100644
--- a/services/macie/pom.xml
+++ b/services/macie/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
macie
AWS Java SDK :: Services :: Macie
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index 4c0b332f5281..8b41a044a9ac 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index 620a61d40e30..9b2c22ed05f9 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 63c6aaf48a31..09e078daa7d4 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index 9bc317874542..fc7c14361adf 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index abd9f896edbc..89c1d79d98b7 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 73c484734777..6a5d1c700041 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index 8b95047da837..d666d00e9a21 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 8c85fd96c38a..1fb1086ee64f 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index ca14be3ab75f..7c08008a2660 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
mediapackage
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index fab7be5b3237..4cc7e11aa168 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index 12728e9db1b8..6b859a91a355 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index 0d67f4024d92..292ffd55017e 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 31c348e2d2ab..11baafab98d6 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index cf0fb0d29368..22c39c7eafcc 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index 1bfaa573eb84..8a4734ee65dd 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index db45b1e8a191..737f85adcbd1 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index 348f1cad575b..ff044299be81 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index 98f3ffffc96d..3e26e203d187 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index a481a3b0b4d9..1fff7732106c 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index 36593b6dddcd..e2f4942f9e00 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index 77707d29e0ea..6924426c38fb 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index 7d2d02db73fc..4f9e71526250 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.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 944e859c90a1..6863ff8f9900 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index 1a36698c6627..bae414597186 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index 10c19ead91d7..cad9b0851971 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index 9f58c5e67423..9ff861177cfd 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 0fb4b0c2b444..9b0ae28d40dc 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index bf9049323c34..410f96fe9a01 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index 0871b2b58143..d212359a11a8 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index 1a972ececad2..0b92facebd68 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index f1a4d5a20528..a74be46c06c9 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index 2d77a0645704..3dc51ec84ec1 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index 2dd685ded262..94960ede92d5 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.9
+ 2.11.10-SNAPSHOT
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index 883ee4d10380..9ba92d678651 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
pricing
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index 7e03b4df89da..7ac92cd3bd91 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index 41048153822b..fb5a070641a6 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index 81cf4710f505..c4612f81be06 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index a4051a1c4bb1..9c044f6b8f4d 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 364979749e18..3e613981c7c6 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index 3feb51bfa4cb..81b8a6e4ca39 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index ded033750d7d..bec62d599b95 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index 94129e67b362..64c4129a8adf 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index fb88014c381f..cf47aa2ca750 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index 8a7b28bfdaa4..793d007e4f63 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.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 925ac55815bf..ec84fc40efb9 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index 8ee71cd29b5d..c929540d8d50 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index 4c8ed93e5aa9..dddb70641b85 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index eedf95eb7a5c..100d1de6beb0 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index e2e55b58eca1..0a87e42929c3 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index d170014a0b18..b79d6f40dfaf 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index 3302058ed92c..a284a89d3ed2 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 47d3a43c82bd..45664e7137bd 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index 0eaf7fb1b472..7434a5023fcb 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index 09afa5b2b8f9..c0f5f734a216 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index 2876018082d3..2faebd97f193 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index 7cd954c3610f..984f758a4823 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index a27bd2af876f..87b3be27cba2 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index a564432cfd16..d2e1a756cebb 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 35fbb4d29d24..1c8928d72134 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index 23883ae13bc2..984b448a5712 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index 465eac809192..a9ba95393b8b 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index d160933c9b63..7fbd577e63e5 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index 0339c7e0a171..bbba54bb7682 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index d92b5d2f5dd6..1b62b29c108b 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index 86bceb8d6eaf..b2adea6f4b1a 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index 6cd8316a0908..b6629ef71af3 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index 360c8b6e64a1..02acb341c2f0 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index f32519016e1d..362ed6ba9189 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 9913ac0e4198..52bc4aadc0d5 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index aec441f51bca..c25d519df298 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index 664f58ec1c8c..473c9bdc78e6 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.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 24bae123a33e..50f06b929ab0 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index fcd3f7e6a0b4..16d90548b1ce 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index bfaf96567d42..f779a05dcb7d 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index 770ca405334d..cbacffa52c91 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/support/pom.xml b/services/support/pom.xml
index cbd0ca60d6f2..1cf5ae66b405 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 79ebc1ba17d5..055c73aec139 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index 3827d7854cad..2cd5ddd25f0c 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index ea159e458b16..39f810f6b82b 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index 5b47db33c76b..9285d174b1cb 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index 43f65db78799..abe5aede6f2a 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index 7be0e5d7d3f8..421e17573bb5 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
translate
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index b00d0a16326f..5cc748709a1b 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index ccf1af69330a..2d21275ecdd3 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index 88b1551f5203..b83befa7e98c 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index 094eda5cc2e0..af40b30cd7c0 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index af479c9a9d82..99089b72f166 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index 2b98429e6a6c..cfc39b8b39fe 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index ea4b99260108..49abc3d05634 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.10-SNAPSHOT
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index a343cb156ee3..e65c0bfa5f71 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.9
+ 2.11.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 872648ac9c0e..9554f61549c0 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.11.9
+ 2.11.10-SNAPSHOT
../../pom.xml
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index 0daf86efec27..77fc2c57c793 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.11.9
+ 2.11.10-SNAPSHOT
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index 29c211310bfb..3bad6666a0be 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.11.9
+ 2.11.10-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index 254075498819..81100e2d1bb1 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.11.9
+ 2.11.10-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 21731976623e..5565df2c3f56 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.11.9
+ 2.11.10-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index a58102414bf9..b5f936edfb46 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.11.9
+ 2.11.10-SNAPSHOT
../../pom.xml
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index cd55ac4dacb1..7144f38f242b 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.11.9
+ 2.11.10-SNAPSHOT
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index f14d02c8ccdd..c3f03f8bdd51 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.11.9
+ 2.11.10-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index f07502670bc6..2b9ec776a132 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.11.9
+ 2.11.10-SNAPSHOT
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index 538039e6aa52..825e5215f426 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.11.9
+ 2.11.10-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index a2b8f56b7854..a58e4ebeadd7 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.9
+ 2.11.10-SNAPSHOT
4.0.0
From 8b85f34e829b5774aae758352818ab570cfc45f5 Mon Sep 17 00:00:00 2001
From: Vladimir Orany
Date: Sat, 4 Apr 2020 05:59:47 +0200
Subject: [PATCH 018/604] DDB Enhanced: Added support for projection expression
added new property attributesToProject to QueryEnhancedRequest and ScanEnhancedRequest which enables to fetch
only partial results to save the bandwidth of the queries.
---
CHANGELOG.md | 6 ++
.../internal/operations/QueryOperation.java | 24 ++++-
.../internal/operations/ScanOperation.java | 41 +++++++-
.../dynamodb/model/QueryEnhancedRequest.java | 94 ++++++++++++++++++-
.../dynamodb/model/ScanEnhancedRequest.java | 94 ++++++++++++++++++-
.../functionaltests/BasicQueryTest.java | 56 +++++++++++
.../functionaltests/BasicScanTest.java | 51 ++++++++++
.../operations/QueryOperationTest.java | 17 ++++
.../operations/ScanOperationTest.java | 25 +++++
.../model/QueryEnhancedRequestTest.java | 12 +++
.../model/ScanEnhancedRequestTest.java | 12 +++
11 files changed, 425 insertions(+), 7 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f5dd8aade370..b116c3058985 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+# __2.11.10__
+
+## __Amazon DynamoDB Enhanced Client [Preview]__
+ - ### Features
+ - The enhanced DDB query and scan request now supports projections.
+
# __2.11.9__ __2020-04-03__
## __AWS RoboMaker__
- ### Features
diff --git a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/QueryOperation.java b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/QueryOperation.java
index bd02191e02a0..9c8e04ce3708 100644
--- a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/QueryOperation.java
+++ b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/QueryOperation.java
@@ -15,8 +15,14 @@
package software.amazon.awssdk.enhanced.dynamodb.internal.operations;
+import static software.amazon.awssdk.enhanced.dynamodb.internal.EnhancedClientUtils.cleanAttributeName;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
import java.util.Map;
import java.util.function.Function;
+import java.util.function.UnaryOperator;
import software.amazon.awssdk.annotations.SdkInternalApi;
import software.amazon.awssdk.core.async.SdkPublisher;
import software.amazon.awssdk.core.pagination.sync.SdkIterable;
@@ -37,6 +43,8 @@
public class QueryOperation implements PaginatedTableOperation,
PaginatedIndexOperation {
+ private static final UnaryOperator PROJECTION_EXPRESSION_KEY_MAPPER = k -> "#AMZN_MAPPED_" + cleanAttributeName(k);
+
private final QueryEnhancedRequest request;
private QueryOperation(QueryEnhancedRequest request) {
@@ -60,6 +68,19 @@ public QueryRequest generateRequest(TableSchema tableSchema,
expressionNames = Expression.joinNames(expressionNames, this.request.filterExpression().expressionNames());
}
+ String projectionExpression = null;
+ if (this.request.attributesToProject() != null) {
+ List placeholders = new ArrayList<>();
+ Map projectionPlaceholders = new HashMap<>();
+ this.request.attributesToProject().forEach(attr -> {
+ String placeholder = PROJECTION_EXPRESSION_KEY_MAPPER.apply(attr);
+ placeholders.add(placeholder);
+ projectionPlaceholders.put(placeholder, attr);
+ });
+ projectionExpression = String.join(",", placeholders);
+ expressionNames = Expression.joinNames(expressionNames, projectionPlaceholders);
+ }
+
QueryRequest.Builder queryRequest = QueryRequest.builder()
.tableName(operationContext.tableName())
.keyConditionExpression(queryExpression.expression())
@@ -68,7 +89,8 @@ public QueryRequest generateRequest(TableSchema tableSchema,
.scanIndexForward(this.request.scanIndexForward())
.limit(this.request.limit())
.exclusiveStartKey(this.request.exclusiveStartKey())
- .consistentRead(this.request.consistentRead());
+ .consistentRead(this.request.consistentRead())
+ .projectionExpression(projectionExpression);
if (!TableMetadata.primaryIndexName().equals(operationContext.indexName())) {
queryRequest = queryRequest.indexName(operationContext.indexName());
diff --git a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/ScanOperation.java b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/ScanOperation.java
index daa0901f646b..af729eeaf823 100644
--- a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/ScanOperation.java
+++ b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/ScanOperation.java
@@ -15,11 +15,19 @@
package software.amazon.awssdk.enhanced.dynamodb.internal.operations;
+import static software.amazon.awssdk.enhanced.dynamodb.internal.EnhancedClientUtils.cleanAttributeName;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
import java.util.function.Function;
+import java.util.function.UnaryOperator;
import software.amazon.awssdk.annotations.SdkInternalApi;
import software.amazon.awssdk.core.async.SdkPublisher;
import software.amazon.awssdk.core.pagination.sync.SdkIterable;
import software.amazon.awssdk.enhanced.dynamodb.DynamoDbEnhancedClientExtension;
+import software.amazon.awssdk.enhanced.dynamodb.Expression;
import software.amazon.awssdk.enhanced.dynamodb.TableMetadata;
import software.amazon.awssdk.enhanced.dynamodb.TableSchema;
import software.amazon.awssdk.enhanced.dynamodb.internal.EnhancedClientUtils;
@@ -27,6 +35,7 @@
import software.amazon.awssdk.enhanced.dynamodb.model.ScanEnhancedRequest;
import software.amazon.awssdk.services.dynamodb.DynamoDbAsyncClient;
import software.amazon.awssdk.services.dynamodb.DynamoDbClient;
+import software.amazon.awssdk.services.dynamodb.model.AttributeValue;
import software.amazon.awssdk.services.dynamodb.model.ScanRequest;
import software.amazon.awssdk.services.dynamodb.model.ScanResponse;
@@ -34,6 +43,8 @@
public class ScanOperation implements PaginatedTableOperation,
PaginatedIndexOperation {
+ private static final UnaryOperator PROJECTION_EXPRESSION_KEY_MAPPER = k -> "#AMZN_MAPPED_" + cleanAttributeName(k);
+
private final ScanEnhancedRequest request;
private ScanOperation(ScanEnhancedRequest request) {
@@ -48,20 +59,42 @@ public static ScanOperation create(ScanEnhancedRequest request) {
public ScanRequest generateRequest(TableSchema tableSchema,
OperationContext operationContext,
DynamoDbEnhancedClientExtension extension) {
+ Map expressionValues = null;
+ Map expressionNames = null;
+
+ if (this.request.filterExpression() != null) {
+ expressionValues = this.request.filterExpression().expressionValues();
+ expressionNames = this.request.filterExpression().expressionNames();
+ }
+
+ String projectionExpression = null;
+ if (this.request.attributesToProject() != null) {
+ List placeholders = new ArrayList<>();
+ Map projectionPlaceholders = new HashMap<>();
+ this.request.attributesToProject().forEach(attr -> {
+ String placeholder = PROJECTION_EXPRESSION_KEY_MAPPER.apply(attr);
+ placeholders.add(placeholder);
+ projectionPlaceholders.put(placeholder, attr);
+ });
+ projectionExpression = String.join(",", placeholders);
+ expressionNames = Expression.joinNames(expressionNames, projectionPlaceholders);
+ }
+
ScanRequest.Builder scanRequest = ScanRequest.builder()
.tableName(operationContext.tableName())
.limit(this.request.limit())
.exclusiveStartKey(this.request.exclusiveStartKey())
- .consistentRead(this.request.consistentRead());
+ .consistentRead(this.request.consistentRead())
+ .expressionAttributeValues(expressionValues)
+ .expressionAttributeNames(expressionNames)
+ .projectionExpression(projectionExpression);
if (!TableMetadata.primaryIndexName().equals(operationContext.indexName())) {
scanRequest = scanRequest.indexName(operationContext.indexName());
}
if (this.request.filterExpression() != null) {
- scanRequest = scanRequest.filterExpression(this.request.filterExpression().expression())
- .expressionAttributeValues(this.request.filterExpression().expressionValues())
- .expressionAttributeNames(this.request.filterExpression().expressionNames());
+ scanRequest = scanRequest.filterExpression(this.request.filterExpression().expression());
}
return scanRequest.build();
diff --git a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/model/QueryEnhancedRequest.java b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/model/QueryEnhancedRequest.java
index b90745a69eba..f944e770639c 100644
--- a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/model/QueryEnhancedRequest.java
+++ b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/model/QueryEnhancedRequest.java
@@ -15,7 +15,12 @@
package software.amazon.awssdk.enhanced.dynamodb.model;
+import java.util.ArrayList;
+import java.util.Arrays;
+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.SdkPublicApi;
import software.amazon.awssdk.enhanced.dynamodb.DynamoDbAsyncIndex;
@@ -41,6 +46,7 @@ public final class QueryEnhancedRequest {
private final Integer limit;
private final Boolean consistentRead;
private final Expression filterExpression;
+ private final List attributesToProject;
private QueryEnhancedRequest(Builder builder) {
this.queryConditional = builder.queryConditional;
@@ -49,6 +55,9 @@ private QueryEnhancedRequest(Builder builder) {
this.limit = builder.limit;
this.consistentRead = builder.consistentRead;
this.filterExpression = builder.filterExpression;
+ this.attributesToProject = builder.attributesToProject != null
+ ? Collections.unmodifiableList(builder.attributesToProject)
+ : null;
}
/**
@@ -67,7 +76,8 @@ public Builder toBuilder() {
.scanIndexForward(scanIndexForward)
.limit(limit)
.consistentRead(consistentRead)
- .filterExpression(filterExpression);
+ .filterExpression(filterExpression)
+ .attributesToProject(attributesToProject);
}
/**
@@ -113,6 +123,13 @@ public Expression filterExpression() {
return filterExpression;
}
+ /**
+ * Returns the list of projected attributes on this request object, or an null if no projection is specified.
+ */
+ public List attributesToProject() {
+ return attributesToProject;
+ }
+
@Override
public boolean equals(Object o) {
if (this == o) {
@@ -142,6 +159,12 @@ public boolean equals(Object o) {
if (consistentRead != null ? ! consistentRead.equals(query.consistentRead) : query.consistentRead != null) {
return false;
}
+ if (attributesToProject != null
+ ? ! attributesToProject.equals(query.attributesToProject)
+ : query.attributesToProject != null
+ ) {
+ return false;
+ }
return filterExpression != null ? filterExpression.equals(query.filterExpression) : query.filterExpression == null;
}
@@ -153,6 +176,7 @@ public int hashCode() {
result = 31 * result + (limit != null ? limit.hashCode() : 0);
result = 31 * result + (consistentRead != null ? consistentRead.hashCode() : 0);
result = 31 * result + (filterExpression != null ? filterExpression.hashCode() : 0);
+ result = 31 * result + (attributesToProject != null ? attributesToProject.hashCode() : 0);
return result;
}
@@ -168,6 +192,7 @@ public static final class Builder {
private Integer limit;
private Boolean consistentRead;
private Expression filterExpression;
+ private List attributesToProject;
private Builder() {
}
@@ -255,6 +280,73 @@ public Builder filterExpression(Expression filterExpression) {
return this;
}
+ /**
+ *
+ * Sets a collection of the attribute names to be retrieved from the database. These attributes can include
+ * scalars, sets, or elements of a JSON document.
+ *
+ *
+ * If no attribute names are specified, then all attributes will be returned. If any of the requested attributes
+ * are not found, they will not appear in the result.
+ *
+ *
+ * For more information, see Accessing Item Attributes in the Amazon DynamoDB Developer Guide.
+ *
+ * @param attributesToProject
+ * A collection of the attributes names to be retrieved from the database.
+ * @return Returns a reference to this object so that method calls can be chained together.
+ */
+ public Builder attributesToProject(Collection attributesToProject) {
+ this.attributesToProject = attributesToProject != null ? new ArrayList<>(attributesToProject) : null;
+ return this;
+ }
+
+ /**
+ *
+ * Sets one or more attribute names to be retrieved from the database. These attributes can include
+ * scalars, sets, or elements of a JSON document.
+ *
+ *
+ * If no attribute names are specified, then all attributes will be returned. If any of the requested attributes
+ * are not found, they will not appear in the result.
+ *
+ *
+ * For more information, see Accessing Item Attributes in the Amazon DynamoDB Developer Guide.
+ *
+ * @param attributesToProject
+ * One or more attributes names to be retrieved from the database.
+ * @return Returns a reference to this object so that method calls can be chained together.
+ */
+ public Builder attributesToProject(String... attributesToProject) {
+ return attributesToProject(Arrays.asList(attributesToProject));
+ }
+
+ /**
+ *
+ * Adds a single attribute name to be retrieved from the database. This attribute can include
+ * scalars, sets, or elements of a JSON document.
+ *
+ *
+ * For more information, see Accessing Item Attributes in the Amazon DynamoDB Developer Guide.
+ *
+ * @param attributeToProject
+ * An additional single attribute name to be retrieved from the database.
+ * @return Returns a reference to this object so that method calls can be chained together.
+ */
+ public Builder addAttributeToProject(String attributeToProject) {
+ if (attributesToProject == null) {
+ attributesToProject = new ArrayList<>();
+ }
+ attributesToProject.add(attributeToProject);
+ return this;
+ }
+
public QueryEnhancedRequest build() {
return new QueryEnhancedRequest(this);
}
diff --git a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/model/ScanEnhancedRequest.java b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/model/ScanEnhancedRequest.java
index 02e91c7728c9..1ec797d6512d 100644
--- a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/model/ScanEnhancedRequest.java
+++ b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/model/ScanEnhancedRequest.java
@@ -15,7 +15,12 @@
package software.amazon.awssdk.enhanced.dynamodb.model;
+import java.util.ArrayList;
+import java.util.Arrays;
+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.SdkPublicApi;
import software.amazon.awssdk.enhanced.dynamodb.DynamoDbTable;
@@ -35,12 +40,16 @@ public final class ScanEnhancedRequest {
private final Integer limit;
private final Boolean consistentRead;
private final Expression filterExpression;
+ private final List attributesToProject;
private ScanEnhancedRequest(Builder builder) {
this.exclusiveStartKey = builder.exclusiveStartKey;
this.limit = builder.limit;
this.consistentRead = builder.consistentRead;
this.filterExpression = builder.filterExpression;
+ this.attributesToProject = builder.attributesToProject != null
+ ? Collections.unmodifiableList(builder.attributesToProject)
+ : null;
}
/**
@@ -57,7 +66,8 @@ public Builder toBuilder() {
return builder().exclusiveStartKey(exclusiveStartKey)
.limit(limit)
.consistentRead(consistentRead)
- .filterExpression(filterExpression);
+ .filterExpression(filterExpression)
+ .attributesToProject(attributesToProject);
}
/**
@@ -88,6 +98,13 @@ public Expression filterExpression() {
return filterExpression;
}
+ /**
+ * Returns the list of projected attributes on this request object, or null if no projection is specified.
+ */
+ public List attributesToProject() {
+ return attributesToProject;
+ }
+
@Override
public boolean equals(Object o) {
if (this == o) {
@@ -109,6 +126,12 @@ public boolean equals(Object o) {
if (consistentRead != null ? ! consistentRead.equals(scan.consistentRead) : scan.consistentRead != null) {
return false;
}
+ if (attributesToProject != null
+ ? ! attributesToProject.equals(scan.attributesToProject)
+ : scan.attributesToProject != null
+ ) {
+ return false;
+ }
return filterExpression != null ? filterExpression.equals(scan.filterExpression) : scan.filterExpression == null;
}
@@ -118,6 +141,7 @@ public int hashCode() {
result = 31 * result + (limit != null ? limit.hashCode() : 0);
result = 31 * result + (consistentRead != null ? consistentRead.hashCode() : 0);
result = 31 * result + (filterExpression != null ? filterExpression.hashCode() : 0);
+ result = 31 * result + (attributesToProject != null ? attributesToProject.hashCode() : 0);
return result;
}
@@ -129,6 +153,7 @@ public static final class Builder {
private Integer limit;
private Boolean consistentRead;
private Expression filterExpression;
+ private List attributesToProject;
private Builder() {
}
@@ -192,6 +217,73 @@ public Builder filterExpression(Expression filterExpression) {
return this;
}
+ /**
+ *
+ * Sets a collection of the attribute names to be retrieved from the database. These attributes can include
+ * scalars, sets, or elements of a JSON document.
+ *
+ *
+ * If no attribute names are specified, then all attributes will be returned. If any of the requested attributes
+ * are not found, they will not appear in the result.
+ *
+ *
+ * For more information, see Accessing Item Attributes in the Amazon DynamoDB Developer Guide.
+ *
+ * @param attributesToProject
+ * A collection of the attributes names to be retrieved from the database.
+ * @return Returns a reference to this object so that method calls can be chained together.
+ */
+ public Builder attributesToProject(Collection attributesToProject) {
+ this.attributesToProject = attributesToProject != null ? new ArrayList<>(attributesToProject) : null;
+ return this;
+ }
+
+ /**
+ *
+ * Sets one or more attribute names to be retrieved from the database. These attributes can include
+ * scalars, sets, or elements of a JSON document.
+ *
+ *
+ * If no attribute names are specified, then all attributes will be returned. If any of the requested attributes
+ * are not found, they will not appear in the result.
+ *
+ *
+ * For more information, see Accessing Item Attributes in the Amazon DynamoDB Developer Guide.
+ *
+ * @param attributesToProject
+ * One or more attributes names to be retrieved from the database.
+ * @return Returns a reference to this object so that method calls can be chained together.
+ */
+ public Builder attributesToProject(String... attributesToProject) {
+ return attributesToProject(Arrays.asList(attributesToProject));
+ }
+
+ /**
+ *
+ * Adds a single attribute name to be retrieved from the database. This attribute can include
+ * scalars, sets, or elements of a JSON document.
+ *
+ *
+ * For more information, see Accessing Item Attributes in the Amazon DynamoDB Developer Guide.
+ *
+ * @param attributeToProject
+ * An additional single attribute name to be retrieved from the database.
+ * @return Returns a reference to this object so that method calls can be chained together.
+ */
+ public Builder addAttributeToProject(String attributeToProject) {
+ if (attributesToProject == null) {
+ attributesToProject = new ArrayList<>();
+ }
+ attributesToProject.add(attributeToProject);
+ return this;
+ }
+
public ScanEnhancedRequest build() {
return new ScanEnhancedRequest(this);
}
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/BasicQueryTest.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/BasicQueryTest.java
index 96f87123a89c..b60efcdc870f 100644
--- a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/BasicQueryTest.java
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/BasicQueryTest.java
@@ -17,6 +17,7 @@
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.empty;
+import static org.hamcrest.Matchers.hasSize;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.nullValue;
import static software.amazon.awssdk.enhanced.dynamodb.internal.AttributeValues.numberValue;
@@ -157,6 +158,28 @@ public void queryAllRecordsDefaultSettings_shortcutForm() {
assertThat(page.lastEvaluatedKey(), is(nullValue()));
}
+ @Test
+ public void queryAllRecordsDefaultSettings_withProjection() {
+ insertRecords();
+
+ Iterator> results =
+ mappedTable.query(b -> b
+ .queryConditional(keyEqualTo(k -> k.partitionValue("id-value")))
+ .attributesToProject("value")
+ ).iterator();
+
+ assertThat(results.hasNext(), is(true));
+ Page page = results.next();
+ assertThat(results.hasNext(), is(false));
+
+ assertThat(page.items().size(), is(RECORDS.size()));
+
+ Record firstRecord = page.items().get(0);
+ assertThat(firstRecord.id, is(nullValue()));
+ assertThat(firstRecord.sort, is(nullValue()));
+ assertThat(firstRecord.value, is(0));
+ }
+
@Test
public void queryAllRecordsDefaultSettings_shortcutForm_viaItems() {
insertRecords();
@@ -195,6 +218,39 @@ public void queryAllRecordsWithFilter() {
assertThat(page.lastEvaluatedKey(), is(nullValue()));
}
+ @Test
+ public void queryAllRecordsWithFilterAndProjection() {
+ insertRecords();
+ Map expressionValues = new HashMap<>();
+ expressionValues.put(":min_value", numberValue(3));
+ expressionValues.put(":max_value", numberValue(5));
+ Expression expression = Expression.builder()
+ .expression("#value >= :min_value AND #value <= :max_value")
+ .expressionValues(expressionValues)
+ .expressionNames(Collections.singletonMap("#value", "value"))
+ .build();
+
+ Iterator> results =
+ mappedTable.query(QueryEnhancedRequest.builder()
+ .queryConditional(keyEqualTo(k -> k.partitionValue("id-value")))
+ .filterExpression(expression)
+ .attributesToProject("value")
+ .build())
+ .iterator();
+
+ assertThat(results.hasNext(), is(true));
+ Page page = results.next();
+ assertThat(results.hasNext(), is(false));
+
+ assertThat(page.items(), hasSize(3));
+ assertThat(page.lastEvaluatedKey(), is(nullValue()));
+
+ Record record = page.items().get(0);
+ assertThat(record.id, nullValue());
+ assertThat(record.sort, nullValue());
+ assertThat(record.value, is(3));
+ }
+
@Test
public void queryBetween() {
insertRecords();
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/BasicScanTest.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/BasicScanTest.java
index e4a88653aea1..caa6e855ed18 100644
--- a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/BasicScanTest.java
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/BasicScanTest.java
@@ -17,6 +17,7 @@
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.empty;
+import static org.hamcrest.Matchers.hasSize;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.nullValue;
import static software.amazon.awssdk.enhanced.dynamodb.internal.AttributeValues.numberValue;
@@ -140,6 +141,24 @@ public void scanAllRecordsDefaultSettings() {
assertThat(page.lastEvaluatedKey(), is(nullValue()));
}
+ @Test
+ public void queryAllRecordsDefaultSettings_withProjection() {
+ insertRecords();
+
+ Iterator> results =
+ mappedTable.scan(b -> b.attributesToProject("sort")).iterator();
+
+ assertThat(results.hasNext(), is(true));
+ Page page = results.next();
+ assertThat(results.hasNext(), is(false));
+
+ assertThat(page.items().size(), is(RECORDS.size()));
+
+ Record firstRecord = page.items().get(0);
+ assertThat(firstRecord.id, is(nullValue()));
+ assertThat(firstRecord.sort, is(0));
+ }
+
@Test
public void scanAllRecordsDefaultSettings_viaItems() {
insertRecords();
@@ -171,6 +190,38 @@ public void scanAllRecordsWithFilter() {
assertThat(page.lastEvaluatedKey(), is(nullValue()));
}
+ @Test
+ public void scanAllRecordsWithFilterAndProjection() {
+ insertRecords();
+ Map expressionValues = new HashMap<>();
+ expressionValues.put(":min_value", numberValue(3));
+ expressionValues.put(":max_value", numberValue(5));
+ Expression expression = Expression.builder()
+ .expression("#sort >= :min_value AND #sort <= :max_value")
+ .expressionValues(expressionValues)
+ .putExpressionName("#sort", "sort")
+ .build();
+
+ Iterator> results =
+ mappedTable.scan(
+ ScanEnhancedRequest.builder()
+ .attributesToProject("sort")
+ .filterExpression(expression)
+ .build()
+ ).iterator();
+
+ assertThat(results.hasNext(), is(true));
+ Page page = results.next();
+ assertThat(results.hasNext(), is(false));
+
+ assertThat(page.items(), hasSize(3));
+
+ Record record = page.items().get(0);
+
+ assertThat(record.id, is(nullValue()));
+ assertThat(record.sort, is(3));
+ }
+
@Test
public void scanLimit() {
insertRecords();
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/QueryOperationTest.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/QueryOperationTest.java
index 020e41c83a84..eaea25ebd7d5 100644
--- a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/QueryOperationTest.java
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/QueryOperationTest.java
@@ -272,6 +272,23 @@ public void generateRequest_consistentRead() {
assertThat(queryRequest.consistentRead(), is(true));
}
+ @Test
+ public void generateRequest_projectionExpression() {
+ QueryOperation queryToTest =
+ QueryOperation.create(QueryEnhancedRequest.builder()
+ .queryConditional(keyEqualTo(k -> k.partitionValue(keyItem.getId())))
+ .attributesToProject("id")
+ .addAttributeToProject("version")
+ .build());
+ QueryRequest queryRequest = queryToTest.generateRequest(FakeItem.getTableSchema(),
+ PRIMARY_CONTEXT,
+ null);
+
+ assertThat(queryRequest.projectionExpression(), is("#AMZN_MAPPED_id,#AMZN_MAPPED_version"));
+ assertThat(queryRequest.expressionAttributeNames().get("#AMZN_MAPPED_id"), is ("id"));
+ assertThat(queryRequest.expressionAttributeNames().get("#AMZN_MAPPED_version"), is ("version"));
+ }
+
@Test
public void generateRequest_hashKeyOnly_withExclusiveStartKey() {
FakeItem exclusiveStartKey = createUniqueFakeItem();
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/ScanOperationTest.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/ScanOperationTest.java
index 176ce174adba..d0cd887f1cb2 100644
--- a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/ScanOperationTest.java
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/ScanOperationTest.java
@@ -30,6 +30,7 @@
import static software.amazon.awssdk.enhanced.dynamodb.internal.AttributeValues.stringValue;
import java.util.Arrays;
+import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
@@ -188,6 +189,30 @@ public void generateRequest_consistentRead() {
assertThat(request, is(expectedRequest));
}
+ @Test
+ public void generateRequest_projectionExpression() {
+ ScanOperation operation = ScanOperation.create(
+ ScanEnhancedRequest.builder()
+ .attributesToProject("id")
+ .addAttributeToProject("version")
+ .build()
+ );
+ ScanRequest request = operation.generateRequest(FakeItem.getTableSchema(),
+ PRIMARY_CONTEXT,
+ null);
+
+ Map expectedExpressionAttributeNames = new HashMap<>();
+ expectedExpressionAttributeNames.put("#AMZN_MAPPED_id", "id");
+ expectedExpressionAttributeNames.put("#AMZN_MAPPED_version", "version");
+
+ ScanRequest expectedRequest = ScanRequest.builder()
+ .tableName(TABLE_NAME)
+ .projectionExpression("#AMZN_MAPPED_id,#AMZN_MAPPED_version")
+ .expressionAttributeNames(expectedExpressionAttributeNames)
+ .build();
+ assertThat(request, is(expectedRequest));
+ }
+
@Test
public void generateRequest_hashKeyOnly_exclusiveStartKey() {
FakeItem exclusiveStartKey = createUniqueFakeItem();
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/model/QueryEnhancedRequestTest.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/model/QueryEnhancedRequestTest.java
index 24b1bc710e16..2b146cf3f194 100644
--- a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/model/QueryEnhancedRequestTest.java
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/model/QueryEnhancedRequestTest.java
@@ -23,7 +23,10 @@
import static software.amazon.awssdk.enhanced.dynamodb.internal.AttributeValues.stringValue;
import static software.amazon.awssdk.enhanced.dynamodb.model.QueryConditional.keyEqualTo;
+import java.util.ArrayList;
+import java.util.Arrays;
import java.util.HashMap;
+import java.util.List;
import java.util.Map;
import org.junit.Test;
import org.junit.runner.RunWith;
@@ -44,6 +47,7 @@ public void builder_minimal() {
assertThat(builtObject.limit(), is(nullValue()));
assertThat(builtObject.queryConditional(), is(nullValue()));
assertThat(builtObject.scanIndexForward(), is(nullValue()));
+ assertThat(builtObject.attributesToProject(), is(nullValue()));
}
@Test
@@ -60,6 +64,11 @@ public void builder_maximal() {
QueryConditional queryConditional = keyEqualTo(k -> k.partitionValue("id-value"));
+ String[] attributesToProjectArray = {"one", "two"};
+ String additionalElement = "three";
+ List attributesToProject = new ArrayList<>(Arrays.asList(attributesToProjectArray));
+ attributesToProject.add(additionalElement);
+
QueryEnhancedRequest builtObject = QueryEnhancedRequest.builder()
.exclusiveStartKey(exclusiveStartKey)
.consistentRead(false)
@@ -67,6 +76,8 @@ public void builder_maximal() {
.limit(3)
.queryConditional(queryConditional)
.scanIndexForward(true)
+ .attributesToProject(attributesToProjectArray)
+ .addAttributeToProject(additionalElement)
.build();
assertThat(builtObject.exclusiveStartKey(), is(exclusiveStartKey));
@@ -75,6 +86,7 @@ public void builder_maximal() {
assertThat(builtObject.limit(), is(3));
assertThat(builtObject.queryConditional(), is(queryConditional));
assertThat(builtObject.scanIndexForward(), is(true));
+ assertThat(builtObject.attributesToProject(), is(attributesToProject));
}
@Test
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/model/ScanEnhancedRequestTest.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/model/ScanEnhancedRequestTest.java
index 862e5f7ec8e5..ce2a86f443c6 100644
--- a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/model/ScanEnhancedRequestTest.java
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/model/ScanEnhancedRequestTest.java
@@ -22,7 +22,10 @@
import static software.amazon.awssdk.enhanced.dynamodb.internal.AttributeValues.numberValue;
import static software.amazon.awssdk.enhanced.dynamodb.internal.AttributeValues.stringValue;
+import java.util.ArrayList;
+import java.util.Arrays;
import java.util.HashMap;
+import java.util.List;
import java.util.Map;
import org.junit.Test;
import org.junit.runner.RunWith;
@@ -40,6 +43,7 @@ public void builder_minimal() {
assertThat(builtObject.exclusiveStartKey(), is(nullValue()));
assertThat(builtObject.consistentRead(), is(nullValue()));
assertThat(builtObject.filterExpression(), is(nullValue()));
+ assertThat(builtObject.attributesToProject(), is(nullValue()));
assertThat(builtObject.limit(), is(nullValue()));
}
@@ -55,16 +59,24 @@ public void builder_maximal() {
.expressionValues(expressionValues)
.build();
+ String[] attributesToProjectArray = {"one", "two"};
+ String additionalElement = "three";
+ List attributesToProject = new ArrayList<>(Arrays.asList(attributesToProjectArray));
+ attributesToProject.add(additionalElement);
+
ScanEnhancedRequest builtObject = ScanEnhancedRequest.builder()
.exclusiveStartKey(exclusiveStartKey)
.consistentRead(false)
.filterExpression(filterExpression)
+ .attributesToProject(attributesToProjectArray)
+ .addAttributeToProject(additionalElement)
.limit(3)
.build();
assertThat(builtObject.exclusiveStartKey(), is(exclusiveStartKey));
assertThat(builtObject.consistentRead(), is(false));
assertThat(builtObject.filterExpression(), is(filterExpression));
+ assertThat(builtObject.attributesToProject(), is(attributesToProject));
assertThat(builtObject.limit(), is(3));
}
From ad34931159266f26a38651bebda3cd34bd61045d Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Mon, 6 Apr 2020 18:07:06 +0000
Subject: [PATCH 019/604] AWS Elastic Beanstalk Update: This release adds a new
action, ListPlatformBranches, and updates two actions, ListPlatformVersions
and DescribePlatformVersion, to support the concept of Elastic Beanstalk
platform branches.
---
.../feature-AWSElasticBeanstalk-88bc7d2.json | 5 +
.../codegen-resources/paginators-1.json | 5 +
.../codegen-resources/service-2.json | 304 +++++++++++++-----
3 files changed, 231 insertions(+), 83 deletions(-)
create mode 100644 .changes/next-release/feature-AWSElasticBeanstalk-88bc7d2.json
diff --git a/.changes/next-release/feature-AWSElasticBeanstalk-88bc7d2.json b/.changes/next-release/feature-AWSElasticBeanstalk-88bc7d2.json
new file mode 100644
index 000000000000..2fa8c45d29e9
--- /dev/null
+++ b/.changes/next-release/feature-AWSElasticBeanstalk-88bc7d2.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "AWS Elastic Beanstalk",
+ "description": "This release adds a new action, ListPlatformBranches, and updates two actions, ListPlatformVersions and DescribePlatformVersion, to support the concept of Elastic Beanstalk platform branches."
+}
diff --git a/services/elasticbeanstalk/src/main/resources/codegen-resources/paginators-1.json b/services/elasticbeanstalk/src/main/resources/codegen-resources/paginators-1.json
index b4e93b3d8cb1..874292e01c66 100755
--- a/services/elasticbeanstalk/src/main/resources/codegen-resources/paginators-1.json
+++ b/services/elasticbeanstalk/src/main/resources/codegen-resources/paginators-1.json
@@ -20,6 +20,11 @@
},
"ListAvailableSolutionStacks": {
"result_key": "SolutionStacks"
+ },
+ "ListPlatformBranches": {
+ "input_token": "NextToken",
+ "limit_key": "MaxRecords",
+ "output_token": "NextToken"
}
}
}
\ No newline at end of file
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 b66e5eab2f14..6d71f2fafc9c 100755
--- a/services/elasticbeanstalk/src/main/resources/codegen-resources/service-2.json
+++ b/services/elasticbeanstalk/src/main/resources/codegen-resources/service-2.json
@@ -85,7 +85,7 @@
"errors":[
{"shape":"TooManyApplicationsException"}
],
- "documentation":" Creates an application that has one configuration template named default
and no application versions.
"
+ "documentation":"Creates an application that has one configuration template named default
and no application versions.
"
},
"CreateApplicationVersion":{
"name":"CreateApplicationVersion",
@@ -105,7 +105,7 @@
{"shape":"S3LocationNotInServiceRegionException"},
{"shape":"CodeBuildNotInServiceRegionException"}
],
- "documentation":"Creates an application version for the specified application. You can create an application version from a source bundle in Amazon S3, a commit in AWS CodeCommit, or the output of an AWS CodeBuild build as follows:
Specify a commit in an AWS CodeCommit repository with SourceBuildInformation
.
Specify a build in an AWS CodeBuild with SourceBuildInformation
and BuildConfiguration
.
Specify a source bundle in S3 with SourceBundle
Omit both SourceBuildInformation
and SourceBundle
to use the default sample application.
Once you create an application version with a specified Amazon S3 bucket and key location, you cannot change that Amazon S3 location. If you change the Amazon S3 location, you receive an exception when you attempt to launch an environment from the application version.
"
+ "documentation":"Creates an application version for the specified application. You can create an application version from a source bundle in Amazon S3, a commit in AWS CodeCommit, or the output of an AWS CodeBuild build as follows:
Specify a commit in an AWS CodeCommit repository with SourceBuildInformation
.
Specify a build in an AWS CodeBuild with SourceBuildInformation
and BuildConfiguration
.
Specify a source bundle in S3 with SourceBundle
Omit both SourceBuildInformation
and SourceBundle
to use the default sample application.
After you create an application version with a specified Amazon S3 bucket and key location, you can't change that Amazon S3 location. If you change the Amazon S3 location, you receive an exception when you attempt to launch an environment from the application version.
"
},
"CreateConfigurationTemplate":{
"name":"CreateConfigurationTemplate",
@@ -123,7 +123,7 @@
{"shape":"TooManyBucketsException"},
{"shape":"TooManyConfigurationTemplatesException"}
],
- "documentation":"Creates a configuration template. Templates are associated with a specific application and are used to deploy different versions of the application with the same configuration settings.
Templates aren't associated with any environment. The EnvironmentName
response element is always null
.
Related Topics
"
+ "documentation":"Creates an AWS Elastic Beanstalk configuration template, associated with a specific Elastic Beanstalk application. You define application configuration settings in a configuration template. You can then use the configuration template to deploy different versions of the application with the same configuration settings.
Templates aren't associated with any environment. The EnvironmentName
response element is always null
.
Related Topics
"
},
"CreateEnvironment":{
"name":"CreateEnvironment",
@@ -140,7 +140,7 @@
{"shape":"TooManyEnvironmentsException"},
{"shape":"InsufficientPrivilegesException"}
],
- "documentation":"Launches an environment for the specified application using the specified configuration.
"
+ "documentation":"Launches an AWS Elastic Beanstalk environment for the specified application using the specified configuration.
"
},
"CreatePlatformVersion":{
"name":"CreatePlatformVersion",
@@ -440,7 +440,7 @@
{"shape":"InsufficientPrivilegesException"},
{"shape":"ElasticBeanstalkServiceException"}
],
- "documentation":"Describes the version of the platform.
"
+ "documentation":"Describes a platform version. Provides full details. Compare to ListPlatformVersions, which provides summary information about a list of platform versions.
For definitions of platform version and other platform-related terms, see AWS Elastic Beanstalk Platforms Glossary.
"
},
"ListAvailableSolutionStacks":{
"name":"ListAvailableSolutionStacks",
@@ -454,6 +454,19 @@
},
"documentation":"Returns a list of the available solution stack names, with the public version first and then in reverse chronological order.
"
},
+ "ListPlatformBranches":{
+ "name":"ListPlatformBranches",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"ListPlatformBranchesRequest"},
+ "output":{
+ "shape":"ListPlatformBranchesResult",
+ "resultWrapper":"ListPlatformBranchesResult"
+ },
+ "documentation":"Lists the platform branches available for your account in an AWS Region. Provides summary information about each platform branch.
For definitions of platform branch and other platform-related terms, see AWS Elastic Beanstalk Platforms Glossary.
"
+ },
"ListPlatformVersions":{
"name":"ListPlatformVersions",
"http":{
@@ -469,7 +482,7 @@
{"shape":"InsufficientPrivilegesException"},
{"shape":"ElasticBeanstalkServiceException"}
],
- "documentation":"Lists the available platforms.
"
+ "documentation":"Lists the platform versions available for your account in an AWS Region. Provides summary information about each platform version. Compare to DescribePlatformVersion, which provides full details about a single platform version.
For definitions of platform version and other platform-related terms, see AWS Elastic Beanstalk Platforms Glossary.
"
},
"ListTagsForResource":{
"name":"ListTagsForResource",
@@ -487,7 +500,7 @@
{"shape":"ResourceNotFoundException"},
{"shape":"ResourceTypeNotSupportedException"}
],
- "documentation":"Returns the tags applied to an AWS Elastic Beanstalk resource. The response contains a list of tag key-value pairs.
Currently, Elastic Beanstalk only supports tagging of Elastic Beanstalk environments. For details about environment tagging, see Tagging Resources in Your Elastic Beanstalk Environment.
"
+ "documentation":"Return the tags applied to an AWS Elastic Beanstalk resource. The response contains a list of tag key-value pairs.
Elastic Beanstalk supports tagging of all of its resources. For details about resource tagging, see Tagging Application Resources.
"
},
"RebuildEnvironment":{
"name":"RebuildEnvironment",
@@ -647,7 +660,7 @@
{"shape":"ResourceNotFoundException"},
{"shape":"ResourceTypeNotSupportedException"}
],
- "documentation":"Update the list of tags applied to an AWS Elastic Beanstalk resource. Two lists can be passed: TagsToAdd
for tags to add or update, and TagsToRemove
.
Currently, Elastic Beanstalk only supports tagging of Elastic Beanstalk environments. For details about environment tagging, see Tagging Resources in Your Elastic Beanstalk Environment.
If you create a custom IAM user policy to control permission to this operation, specify one of the following two virtual actions (or both) instead of the API operation name:
- elasticbeanstalk:AddTags
-
Controls permission to call UpdateTagsForResource
and pass a list of tags to add in the TagsToAdd
parameter.
- elasticbeanstalk:RemoveTags
-
Controls permission to call UpdateTagsForResource
and pass a list of tag keys to remove in the TagsToRemove
parameter.
For details about creating a custom user policy, see Creating a Custom User Policy.
"
+ "documentation":"Update the list of tags applied to an AWS Elastic Beanstalk resource. Two lists can be passed: TagsToAdd
for tags to add or update, and TagsToRemove
.
Elastic Beanstalk supports tagging of all of its resources. For details about resource tagging, see Tagging Application Resources.
If you create a custom IAM user policy to control permission to this operation, specify one of the following two virtual actions (or both) instead of the API operation name:
- elasticbeanstalk:AddTags
-
Controls permission to call UpdateTagsForResource
and pass a list of tags to add in the TagsToAdd
parameter.
- elasticbeanstalk:RemoveTags
-
Controls permission to call UpdateTagsForResource
and pass a list of tag keys to remove in the TagsToRemove
parameter.
For details about creating a custom user policy, see Creating a Custom User Policy.
"
},
"ValidateConfigurationSettings":{
"name":"ValidateConfigurationSettings",
@@ -812,10 +825,10 @@
},
"VersionLifecycleConfig":{
"shape":"ApplicationVersionLifecycleConfig",
- "documentation":"The application version lifecycle configuration.
"
+ "documentation":"Defines lifecycle settings for application versions.
"
}
},
- "documentation":"The resource lifecycle configuration for an application. Defines lifecycle settings for resources that belong to the application, and the service role that Elastic Beanstalk assumes in order to apply lifecycle settings. The version lifecycle configuration defines lifecycle settings for application versions.
"
+ "documentation":"The resource lifecycle configuration for an application. Defines lifecycle settings for resources that belong to the application, and the service role that AWS Elastic Beanstalk assumes in order to apply lifecycle settings. The version lifecycle configuration defines lifecycle settings for application versions.
"
},
"ApplicationResourceLifecycleDescriptionMessage":{
"type":"structure",
@@ -996,6 +1009,8 @@
},
"BoxedBoolean":{"type":"boolean"},
"BoxedInt":{"type":"integer"},
+ "BranchName":{"type":"string"},
+ "BranchOrder":{"type":"integer"},
"BuildConfiguration":{
"type":"structure",
"required":[
@@ -1221,11 +1236,11 @@
"members":{
"ResourceName":{
"shape":"ResourceName",
- "documentation":"A unique resource name for a time-based scaling configuration option.
"
+ "documentation":"A unique resource name for the option setting. Use it for a time–based scaling configuration option.
"
},
"Namespace":{
"shape":"OptionNamespace",
- "documentation":"A unique namespace identifying the option's associated AWS resource.
"
+ "documentation":"A unique namespace that identifies the option's associated AWS resource.
"
},
"OptionName":{
"shape":"ConfigurationOptionName",
@@ -1236,7 +1251,7 @@
"documentation":"The current value for the configuration option.
"
}
},
- "documentation":" A specification identifying an individual configuration option along with its current value. For a list of possible option values, go to Option Values in the AWS Elastic Beanstalk Developer Guide.
"
+ "documentation":"A specification identifying an individual configuration option along with its current value. For a list of possible namespaces and option values, see Option Values in the AWS Elastic Beanstalk Developer Guide.
"
},
"ConfigurationOptionSettingsList":{
"type":"list",
@@ -1260,7 +1275,7 @@
},
"PlatformArn":{
"shape":"PlatformArn",
- "documentation":"The ARN of the platform.
"
+ "documentation":"The ARN of the platform version.
"
},
"Options":{
"shape":"ConfigurationOptionDescriptionsList",
@@ -1278,7 +1293,7 @@
},
"PlatformArn":{
"shape":"PlatformArn",
- "documentation":"The ARN of the platform.
"
+ "documentation":"The ARN of the platform version.
"
},
"ApplicationName":{
"shape":"ApplicationName",
@@ -1354,15 +1369,15 @@
"members":{
"ApplicationName":{
"shape":"ApplicationName",
- "documentation":"The name of the application.
Constraint: This name must be unique within your account. If the specified name already exists, the action returns an InvalidParameterValue
error.
"
+ "documentation":"The name of the application. Must be unique within your account.
"
},
"Description":{
"shape":"Description",
- "documentation":"Describes the application.
"
+ "documentation":"Your description of the application.
"
},
"ResourceLifecycleConfig":{
"shape":"ApplicationResourceLifecycleConfig",
- "documentation":"Specify an application resource lifecycle configuration to prevent your application from accumulating too many versions.
"
+ "documentation":"Specifies an application resource lifecycle configuration to prevent your application from accumulating too many versions.
"
},
"Tags":{
"shape":"Tags",
@@ -1388,7 +1403,7 @@
},
"Description":{
"shape":"Description",
- "documentation":"Describes this version.
"
+ "documentation":"A description of this application version.
"
},
"SourceBuildInformation":{
"shape":"SourceBuildInformation",
@@ -1426,35 +1441,35 @@
"members":{
"ApplicationName":{
"shape":"ApplicationName",
- "documentation":"The name of the application to associate with this configuration template. If no application is found with this name, AWS Elastic Beanstalk returns an InvalidParameterValue
error.
"
+ "documentation":"The name of the Elastic Beanstalk application to associate with this configuration template.
"
},
"TemplateName":{
"shape":"ConfigurationTemplateName",
- "documentation":"The name of the configuration template.
Constraint: This name must be unique per application.
Default: If a configuration template already exists with this name, AWS Elastic Beanstalk returns an InvalidParameterValue
error.
"
+ "documentation":"The name of the configuration template.
Constraint: This name must be unique per application.
"
},
"SolutionStackName":{
"shape":"SolutionStackName",
- "documentation":"The name of the solution stack used by this configuration. The solution stack specifies the operating system, architecture, and application server for a configuration template. It determines the set of configuration options as well as the possible and default values.
Use ListAvailableSolutionStacks to obtain a list of available solution stacks.
A solution stack name or a source configuration parameter must be specified, otherwise AWS Elastic Beanstalk returns an InvalidParameterValue
error.
If a solution stack name is not specified and the source configuration parameter is specified, AWS Elastic Beanstalk uses the same solution stack as the source configuration template.
"
+ "documentation":"The name of an Elastic Beanstalk solution stack (platform version) that this configuration uses. For example, 64bit Amazon Linux 2013.09 running Tomcat 7 Java 7
. A solution stack specifies the operating system, runtime, and application server for a configuration template. It also determines the set of configuration options as well as the possible and default values. For more information, see Supported Platforms in the AWS Elastic Beanstalk Developer Guide.
You must specify SolutionStackName
if you don't specify PlatformArn
, EnvironmentId
, or SourceConfiguration
.
Use the ListAvailableSolutionStacks
API to obtain a list of available solution stacks.
"
},
"PlatformArn":{
"shape":"PlatformArn",
- "documentation":"The ARN of the custom platform.
"
+ "documentation":"The Amazon Resource Name (ARN) of the custom platform. For more information, see Custom Platforms in the AWS Elastic Beanstalk Developer Guide.
If you specify PlatformArn
, then don't specify SolutionStackName
.
"
},
"SourceConfiguration":{
"shape":"SourceConfiguration",
- "documentation":"If specified, AWS Elastic Beanstalk uses the configuration values from the specified configuration template to create a new configuration.
Values specified in the OptionSettings
parameter of this call overrides any values obtained from the SourceConfiguration
.
If no configuration template is found, returns an InvalidParameterValue
error.
Constraint: If both the solution stack name parameter and the source configuration parameters are specified, the solution stack of the source configuration template must match the specified solution stack name or else AWS Elastic Beanstalk returns an InvalidParameterCombination
error.
"
+ "documentation":"An Elastic Beanstalk configuration template to base this one on. If specified, Elastic Beanstalk uses the configuration values from the specified configuration template to create a new configuration.
Values specified in OptionSettings
override any values obtained from the SourceConfiguration
.
You must specify SourceConfiguration
if you don't specify PlatformArn
, EnvironmentId
, or SolutionStackName
.
Constraint: If both solution stack name and source configuration are specified, the solution stack of the source configuration template must match the specified solution stack name.
"
},
"EnvironmentId":{
"shape":"EnvironmentId",
- "documentation":"The ID of the environment used with this configuration template.
"
+ "documentation":"The ID of an environment whose settings you want to use to create the configuration template. You must specify EnvironmentId
if you don't specify PlatformArn
, SolutionStackName
, or SourceConfiguration
.
"
},
"Description":{
"shape":"Description",
- "documentation":"Describes this configuration.
"
+ "documentation":"An optional description for this configuration.
"
},
"OptionSettings":{
"shape":"ConfigurationOptionSettingsList",
- "documentation":"If specified, AWS Elastic Beanstalk sets the specified configuration option to the requested value. The new value overrides the value obtained from the solution stack or the source configuration template.
"
+ "documentation":"Option values for the Elastic Beanstalk configuration, such as the instance type. If specified, these values override the values obtained from the solution stack or the source configuration template. For a complete list of Elastic Beanstalk configuration options, see Option Values in the AWS Elastic Beanstalk Developer Guide.
"
},
"Tags":{
"shape":"Tags",
@@ -1469,11 +1484,11 @@
"members":{
"ApplicationName":{
"shape":"ApplicationName",
- "documentation":"The name of the application that contains the version to be deployed.
If no application is found with this name, CreateEnvironment
returns an InvalidParameterValue
error.
"
+ "documentation":"The name of the application that is associated with this environment.
"
},
"EnvironmentName":{
"shape":"EnvironmentName",
- "documentation":"A unique name for the deployment environment. Used in the application URL.
Constraint: Must be from 4 to 40 characters in length. The name can contain only letters, numbers, and hyphens. It cannot start or end with a hyphen. This name must be unique within a region in your account. If the specified name already exists in the region, AWS Elastic Beanstalk returns an InvalidParameterValue
error.
Default: If the CNAME parameter is not specified, the environment name becomes part of the CNAME, and therefore part of the visible URL for your application.
"
+ "documentation":"A unique name for the environment.
Constraint: Must be from 4 to 40 characters in length. The name can contain only letters, numbers, and hyphens. It can't start or end with a hyphen. This name must be unique within a region in your account. If the specified name already exists in the region, Elastic Beanstalk returns an InvalidParameterValue
error.
If you don't specify the CNAMEPrefix
parameter, the environment name becomes part of the CNAME, and therefore part of the visible URL for your application.
"
},
"GroupName":{
"shape":"GroupName",
@@ -1481,15 +1496,15 @@
},
"Description":{
"shape":"Description",
- "documentation":"Describes this environment.
"
+ "documentation":"Your description for this environment.
"
},
"CNAMEPrefix":{
"shape":"DNSCnamePrefix",
- "documentation":"If specified, the environment attempts to use this value as the prefix for the CNAME. If not specified, the CNAME is generated automatically by appending a random alphanumeric string to the environment name.
"
+ "documentation":"If specified, the environment attempts to use this value as the prefix for the CNAME in your Elastic Beanstalk environment URL. If not specified, the CNAME is generated automatically by appending a random alphanumeric string to the environment name.
"
},
"Tier":{
"shape":"EnvironmentTier",
- "documentation":"This specifies the tier to use for creating this environment.
"
+ "documentation":"Specifies the tier to use in creating this environment. The environment tier that you choose determines whether Elastic Beanstalk provisions resources to support a web application that handles HTTP(S) requests or a web application that handles background-processing tasks.
"
},
"Tags":{
"shape":"Tags",
@@ -1497,19 +1512,19 @@
},
"VersionLabel":{
"shape":"VersionLabel",
- "documentation":"The name of the application version to deploy.
If the specified application has no associated application versions, AWS Elastic Beanstalk UpdateEnvironment
returns an InvalidParameterValue
error.
Default: If not specified, AWS Elastic Beanstalk attempts to launch the sample application in the container.
"
+ "documentation":"The name of the application version to deploy.
Default: If not specified, Elastic Beanstalk attempts to deploy the sample application.
"
},
"TemplateName":{
"shape":"ConfigurationTemplateName",
- "documentation":" The name of the configuration template to use in deployment. If no configuration template is found with this name, AWS Elastic Beanstalk returns an InvalidParameterValue
error.
"
+ "documentation":"The name of the Elastic Beanstalk configuration template to use with the environment.
If you specify TemplateName
, then don't specify SolutionStackName
.
"
},
"SolutionStackName":{
"shape":"SolutionStackName",
- "documentation":"This is an alternative to specifying a template name. If specified, AWS Elastic Beanstalk sets the configuration values to the default values associated with the specified solution stack.
For a list of current solution stacks, see Elastic Beanstalk Supported Platforms.
"
+ "documentation":"The name of an Elastic Beanstalk solution stack (platform version) to use with the environment. If specified, Elastic Beanstalk sets the configuration values to the default values associated with the specified solution stack. For a list of current solution stacks, see Elastic Beanstalk Supported Platforms in the AWS Elastic Beanstalk Platforms guide.
If you specify SolutionStackName
, don't specify PlatformArn
or TemplateName
.
"
},
"PlatformArn":{
"shape":"PlatformArn",
- "documentation":"The ARN of the platform.
"
+ "documentation":"The Amazon Resource Name (ARN) of the custom platform to use with the environment. For more information, see Custom Platforms in the AWS Elastic Beanstalk Developer Guide.
If you specify PlatformArn
, don't specify SolutionStackName
.
"
},
"OptionSettings":{
"shape":"ConfigurationOptionSettingsList",
@@ -2011,7 +2026,7 @@
},
"PlatformArn":{
"shape":"PlatformArn",
- "documentation":"The ARN of the version of the custom platform.
"
+ "documentation":"The ARN of a custom platform version. If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this custom platform version.
"
},
"RequestId":{
"shape":"RequestId",
@@ -2085,7 +2100,7 @@
"members":{
"PlatformArn":{
"shape":"PlatformArn",
- "documentation":"The ARN of the version of the platform.
"
+ "documentation":"The ARN of the platform version.
"
}
}
},
@@ -2094,7 +2109,7 @@
"members":{
"PlatformDescription":{
"shape":"PlatformDescription",
- "documentation":"Detailed information about the version of the platform.
"
+ "documentation":"Detailed information about the platform version.
"
}
}
},
@@ -2141,7 +2156,7 @@
},
"PlatformArn":{
"shape":"PlatformArn",
- "documentation":"The ARN of the platform.
"
+ "documentation":"The ARN of the platform version.
"
},
"TemplateName":{
"shape":"ConfigurationTemplateName",
@@ -2441,7 +2456,7 @@
},
"PlatformArn":{
"shape":"PlatformArn",
- "documentation":"The ARN of the platform.
"
+ "documentation":"The ARN of the platform version.
"
},
"RequestId":{
"shape":"RequestId",
@@ -2698,20 +2713,50 @@
},
"documentation":"A list of available AWS Elastic Beanstalk solution stacks.
"
},
+ "ListPlatformBranchesRequest":{
+ "type":"structure",
+ "members":{
+ "Filters":{
+ "shape":"SearchFilters",
+ "documentation":"Criteria for restricting the resulting list of platform branches. The filter is evaluated as a logical conjunction (AND) of the separate SearchFilter
terms.
The following list shows valid attribute values for each of the SearchFilter
terms. Most operators take a single value. The in
and not_in
operators can take multiple values.
Array size: limited to 10 SearchFilter
objects.
Within each SearchFilter
item, the Values
array is limited to 10 items.
"
+ },
+ "MaxRecords":{
+ "shape":"PlatformBranchMaxRecords",
+ "documentation":"The maximum number of platform branch values returned in one call.
"
+ },
+ "NextToken":{
+ "shape":"Token",
+ "documentation":"For a paginated request. Specify a token from a previous response page to retrieve the next response page. All other parameter values must be identical to the ones specified in the initial request.
If no NextToken
is specified, the first page is retrieved.
"
+ }
+ }
+ },
+ "ListPlatformBranchesResult":{
+ "type":"structure",
+ "members":{
+ "PlatformBranchSummaryList":{
+ "shape":"PlatformBranchSummaryList",
+ "documentation":"Summary information about the platform branches.
"
+ },
+ "NextToken":{
+ "shape":"Token",
+ "documentation":"In a paginated request, if this value isn't null
, it's the token that you can pass in a subsequent request to get the next response page.
"
+ }
+ }
+ },
"ListPlatformVersionsRequest":{
"type":"structure",
"members":{
"Filters":{
"shape":"PlatformFilters",
- "documentation":"List only the platforms where the platform member value relates to one of the supplied values.
"
+ "documentation":"Criteria for restricting the resulting list of platform versions. The filter is interpreted as a logical conjunction (AND) of the separate PlatformFilter
terms.
"
},
"MaxRecords":{
"shape":"PlatformMaxRecords",
- "documentation":"The maximum number of platform values returned in one call.
"
+ "documentation":"The maximum number of platform version values returned in one call.
"
},
"NextToken":{
"shape":"Token",
- "documentation":"The starting index into the remaining list of platforms. Use the NextToken
value from a previous ListPlatformVersion
call.
"
+ "documentation":"For a paginated request. Specify a token from a previous response page to retrieve the next response page. All other parameter values must be identical to the ones specified in the initial request.
If no NextToken
is specified, the first page is retrieved.
"
}
}
},
@@ -2720,11 +2765,11 @@
"members":{
"PlatformSummaryList":{
"shape":"PlatformSummaryList",
- "documentation":"Detailed information about the platforms.
"
+ "documentation":"Summary information about the platform versions.
"
},
"NextToken":{
"shape":"Token",
- "documentation":"The starting index into the remaining list of platforms. if this value is not null
, you can use it in a subsequent ListPlatformVersion
call.
"
+ "documentation":"In a paginated request, if this value isn't null
, it's the token that you can pass in a subsequent request to get the next response page.
"
}
}
},
@@ -2734,7 +2779,7 @@
"members":{
"ResourceArn":{
"shape":"ResourceArn",
- "documentation":"The Amazon Resource Name (ARN) of the resouce for which a tag list is requested.
Must be the ARN of an Elastic Beanstalk environment.
"
+ "documentation":"The Amazon Resource Name (ARN) of the resouce for which a tag list is requested.
Must be the ARN of an Elastic Beanstalk resource.
"
}
}
},
@@ -2993,102 +3038,149 @@
"member":{"shape":"OptionSpecification"}
},
"PlatformArn":{"type":"string"},
+ "PlatformBranchLifecycleState":{"type":"string"},
+ "PlatformBranchMaxRecords":{
+ "type":"integer",
+ "min":1
+ },
+ "PlatformBranchSummary":{
+ "type":"structure",
+ "members":{
+ "PlatformName":{
+ "shape":"PlatformName",
+ "documentation":"The name of the platform to which this platform branch belongs.
"
+ },
+ "BranchName":{
+ "shape":"BranchName",
+ "documentation":"The name of the platform branch.
"
+ },
+ "LifecycleState":{
+ "shape":"PlatformBranchLifecycleState",
+ "documentation":"The support life cycle state of the platform branch.
Possible values: beta
| supported
| deprecated
| retired
"
+ },
+ "BranchOrder":{
+ "shape":"BranchOrder",
+ "documentation":"An ordinal number that designates the order in which platform branches have been added to a platform. This can be helpful, for example, if your code calls the ListPlatformBranches
action and then displays a list of platform branches.
A larger BranchOrder
value designates a newer platform branch within the platform.
"
+ },
+ "SupportedTierList":{
+ "shape":"SupportedTierList",
+ "documentation":"The environment tiers that platform versions in this branch support.
Possible values: WebServer/Standard
| Worker/SQS/HTTP
"
+ }
+ },
+ "documentation":"Summary information about a platform branch.
"
+ },
+ "PlatformBranchSummaryList":{
+ "type":"list",
+ "member":{"shape":"PlatformBranchSummary"}
+ },
"PlatformCategory":{"type":"string"},
"PlatformDescription":{
"type":"structure",
"members":{
"PlatformArn":{
"shape":"PlatformArn",
- "documentation":"The ARN of the platform.
"
+ "documentation":"The ARN of the platform version.
"
},
"PlatformOwner":{
"shape":"PlatformOwner",
- "documentation":"The AWS account ID of the person who created the platform.
"
+ "documentation":"The AWS account ID of the person who created the platform version.
"
},
"PlatformName":{
"shape":"PlatformName",
- "documentation":"The name of the platform.
"
+ "documentation":"The name of the platform version.
"
},
"PlatformVersion":{
"shape":"PlatformVersion",
- "documentation":"The version of the platform.
"
+ "documentation":"The version of the platform version.
"
},
"SolutionStackName":{
"shape":"SolutionStackName",
- "documentation":"The name of the solution stack used by the platform.
"
+ "documentation":"The name of the solution stack used by the platform version.
"
},
"PlatformStatus":{
"shape":"PlatformStatus",
- "documentation":"The status of the platform.
"
+ "documentation":"The status of the platform version.
"
},
"DateCreated":{
"shape":"CreationDate",
- "documentation":"The date when the platform was created.
"
+ "documentation":"The date when the platform version was created.
"
},
"DateUpdated":{
"shape":"UpdateDate",
- "documentation":"The date when the platform was last updated.
"
+ "documentation":"The date when the platform version was last updated.
"
},
"PlatformCategory":{
"shape":"PlatformCategory",
- "documentation":"The category of the platform.
"
+ "documentation":"The category of the platform version.
"
},
"Description":{
"shape":"Description",
- "documentation":"The description of the platform.
"
+ "documentation":"The description of the platform version.
"
},
"Maintainer":{
"shape":"Maintainer",
- "documentation":"Information about the maintainer of the platform.
"
+ "documentation":"Information about the maintainer of the platform version.
"
},
"OperatingSystemName":{
"shape":"OperatingSystemName",
- "documentation":"The operating system used by the platform.
"
+ "documentation":"The operating system used by the platform version.
"
},
"OperatingSystemVersion":{
"shape":"OperatingSystemVersion",
- "documentation":"The version of the operating system used by the platform.
"
+ "documentation":"The version of the operating system used by the platform version.
"
},
"ProgrammingLanguages":{
"shape":"PlatformProgrammingLanguages",
- "documentation":"The programming languages supported by the platform.
"
+ "documentation":"The programming languages supported by the platform version.
"
},
"Frameworks":{
"shape":"PlatformFrameworks",
- "documentation":"The frameworks supported by the platform.
"
+ "documentation":"The frameworks supported by the platform version.
"
},
"CustomAmiList":{
"shape":"CustomAmiList",
- "documentation":"The custom AMIs supported by the platform.
"
+ "documentation":"The custom AMIs supported by the platform version.
"
},
"SupportedTierList":{
"shape":"SupportedTierList",
- "documentation":"The tiers supported by the platform.
"
+ "documentation":"The tiers supported by the platform version.
"
},
"SupportedAddonList":{
"shape":"SupportedAddonList",
- "documentation":"The additions supported by the platform.
"
+ "documentation":"The additions supported by the platform version.
"
+ },
+ "PlatformLifecycleState":{
+ "shape":"PlatformLifecycleState",
+ "documentation":"The state of the platform version in its lifecycle.
Possible values: Recommended
| null
If a null value is returned, the platform version isn't the recommended one for its branch. Each platform branch has a single recommended platform version, typically the most recent one.
"
+ },
+ "PlatformBranchName":{
+ "shape":"BranchName",
+ "documentation":"The platform branch to which the platform version belongs.
"
+ },
+ "PlatformBranchLifecycleState":{
+ "shape":"PlatformBranchLifecycleState",
+ "documentation":"The state of the platform version's branch in its lifecycle.
Possible values: Beta
| Supported
| Deprecated
| Retired
"
}
},
- "documentation":"Detailed information about a platform.
"
+ "documentation":"Detailed information about a platform version.
"
},
"PlatformFilter":{
"type":"structure",
"members":{
"Type":{
"shape":"PlatformFilterType",
- "documentation":"The custom platform attribute to which the filter values are applied.
Valid Values: PlatformName
| PlatformVersion
| PlatformStatus
| PlatformOwner
"
+ "documentation":"The platform version attribute to which the filter values are applied.
Valid values: PlatformName
| PlatformVersion
| PlatformStatus
| PlatformBranchName
| PlatformLifecycleState
| PlatformOwner
| SupportedTier
| SupportedAddon
| ProgrammingLanguageName
| OperatingSystemName
"
},
"Operator":{
"shape":"PlatformFilterOperator",
- "documentation":"The operator to apply to the Type
with each of the Values
.
Valid Values: =
(equal to) | !=
(not equal to) | <
(less than) | <=
(less than or equal to) | >
(greater than) | >=
(greater than or equal to) | contains
| begins_with
| ends_with
"
+ "documentation":"The operator to apply to the Type
with each of the Values
.
Valid values: =
| !=
| <
| <=
| >
| >=
| contains
| begins_with
| ends_with
"
},
"Values":{
"shape":"PlatformFilterValueList",
- "documentation":"The list of values applied to the custom platform attribute.
"
+ "documentation":"The list of values applied to the filtering platform version attribute. Only one value is supported for all current operators.
The following list shows valid filter values for some filter attributes.
-
PlatformStatus
: Creating
| Failed
| Ready
| Deleting
| Deleted
-
PlatformLifecycleState
: recommended
-
SupportedTier
: WebServer/Standard
| Worker/SQS/HTTP
-
SupportedAddon
: Log/S3
| Monitoring/Healthd
| WorkerDaemon/SQSD
"
}
},
- "documentation":"Specify criteria to restrict the results when listing custom platforms.
The filter is evaluated as the expression:
Type
Operator
Values[i]
"
+ "documentation":"Describes criteria to restrict the results when listing platform versions.
The filter is evaluated as follows: Type Operator Values[1]
"
},
"PlatformFilterOperator":{"type":"string"},
"PlatformFilterType":{"type":"string"},
@@ -3113,12 +3205,13 @@
"documentation":"The version of the framework.
"
}
},
- "documentation":"A framework supported by the custom platform.
"
+ "documentation":"A framework supported by the platform.
"
},
"PlatformFrameworks":{
"type":"list",
"member":{"shape":"PlatformFramework"}
},
+ "PlatformLifecycleState":{"type":"string"},
"PlatformMaxRecords":{
"type":"integer",
"min":1
@@ -3158,38 +3251,54 @@
"members":{
"PlatformArn":{
"shape":"PlatformArn",
- "documentation":"The ARN of the platform.
"
+ "documentation":"The ARN of the platform version.
"
},
"PlatformOwner":{
"shape":"PlatformOwner",
- "documentation":"The AWS account ID of the person who created the platform.
"
+ "documentation":"The AWS account ID of the person who created the platform version.
"
},
"PlatformStatus":{
"shape":"PlatformStatus",
- "documentation":"The status of the platform. You can create an environment from the platform once it is ready.
"
+ "documentation":"The status of the platform version. You can create an environment from the platform version once it is ready.
"
},
"PlatformCategory":{
"shape":"PlatformCategory",
- "documentation":"The category of platform.
"
+ "documentation":"The category of platform version.
"
},
"OperatingSystemName":{
"shape":"OperatingSystemName",
- "documentation":"The operating system used by the platform.
"
+ "documentation":"The operating system used by the platform version.
"
},
"OperatingSystemVersion":{
"shape":"OperatingSystemVersion",
- "documentation":"The version of the operating system used by the platform.
"
+ "documentation":"The version of the operating system used by the platform version.
"
},
"SupportedTierList":{
"shape":"SupportedTierList",
- "documentation":"The tiers in which the platform runs.
"
+ "documentation":"The tiers in which the platform version runs.
"
},
"SupportedAddonList":{
"shape":"SupportedAddonList",
- "documentation":"The additions associated with the platform.
"
+ "documentation":"The additions associated with the platform version.
"
+ },
+ "PlatformLifecycleState":{
+ "shape":"PlatformLifecycleState",
+ "documentation":"The state of the platform version in its lifecycle.
Possible values: recommended
| empty
If an empty value is returned, the platform version is supported but isn't the recommended one for its branch.
"
+ },
+ "PlatformVersion":{
+ "shape":"PlatformVersion",
+ "documentation":"The version string of the platform version.
"
+ },
+ "PlatformBranchName":{
+ "shape":"BranchName",
+ "documentation":"The platform branch to which the platform version belongs.
"
+ },
+ "PlatformBranchLifecycleState":{
+ "shape":"PlatformBranchLifecycleState",
+ "documentation":"The state of the platform version's branch in its lifecycle.
Possible values: beta
| supported
| deprecated
| retired
"
}
},
- "documentation":"Detailed information about a platform.
"
+ "documentation":"Summary information about a platform version.
"
},
"PlatformSummaryList":{
"type":"list",
@@ -3324,7 +3433,7 @@
"members":{
"ResourceArn":{
"shape":"ResourceArn",
- "documentation":"The Amazon Resource Name (ARN) of the resouce for which a tag list was requested.
"
+ "documentation":"The Amazon Resource Name (ARN) of the resource for which a tag list was requested.
"
},
"ResourceTags":{
"shape":"TagList",
@@ -3434,6 +3543,35 @@
"exception":true
},
"SampleTimestamp":{"type":"timestamp"},
+ "SearchFilter":{
+ "type":"structure",
+ "members":{
+ "Attribute":{
+ "shape":"SearchFilterAttribute",
+ "documentation":"The result attribute to which the filter values are applied. Valid values vary by API action.
"
+ },
+ "Operator":{
+ "shape":"SearchFilterOperator",
+ "documentation":"The operator to apply to the Attribute
with each of the Values
. Valid values vary by Attribute
.
"
+ },
+ "Values":{
+ "shape":"SearchFilterValues",
+ "documentation":"The list of values applied to the Attribute
and Operator
attributes. Number of values and valid values vary by Attribute
.
"
+ }
+ },
+ "documentation":"Describes criteria to restrict a list of results.
For operators that apply a single value to the attribute, the filter is evaluated as follows: Attribute Operator Values[1]
Some operators, e.g. in
, can apply multiple values. In this case, the filter is evaluated as a logical union (OR) of applications of the operator to the attribute with each one of the values: (Attribute Operator Values[1]) OR (Attribute Operator Values[2]) OR ...
The valid values for attributes of SearchFilter
depend on the API action. For valid values, see the reference page for the API action you're calling that takes a SearchFilter
parameter.
"
+ },
+ "SearchFilterAttribute":{"type":"string"},
+ "SearchFilterOperator":{"type":"string"},
+ "SearchFilterValue":{"type":"string"},
+ "SearchFilterValues":{
+ "type":"list",
+ "member":{"shape":"SearchFilterValue"}
+ },
+ "SearchFilters":{
+ "type":"list",
+ "member":{"shape":"SearchFilter"}
+ },
"SingleInstanceHealth":{
"type":"structure",
"members":{
@@ -3546,7 +3684,7 @@
"documentation":"The name of the configuration template.
"
}
},
- "documentation":"A specification for an environment configuration
"
+ "documentation":"A specification for an environment configuration.
"
},
"SourceLocation":{
"type":"string",
@@ -3939,7 +4077,7 @@
"members":{
"ResourceArn":{
"shape":"ResourceArn",
- "documentation":"The Amazon Resource Name (ARN) of the resouce to be updated.
Must be the ARN of an Elastic Beanstalk environment.
"
+ "documentation":"The Amazon Resource Name (ARN) of the resouce to be updated.
Must be the ARN of an Elastic Beanstalk resource.
"
},
"TagsToAdd":{
"shape":"TagList",
From 57186361658e7f61b4c9325c5b8feeae1e81a180 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Mon, 6 Apr 2020 18:07:09 +0000
Subject: [PATCH 020/604] Amazon Transcribe Service Update: This release adds
support for batch transcription jobs within Amazon Transcribe Medical.
---
...ature-AmazonTranscribeService-ebae813.json | 5 +
.../codegen-resources/paginators-1.json | 5 +
.../codegen-resources/service-2.json | 357 +++++++++++++++++-
3 files changed, 360 insertions(+), 7 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonTranscribeService-ebae813.json
diff --git a/.changes/next-release/feature-AmazonTranscribeService-ebae813.json b/.changes/next-release/feature-AmazonTranscribeService-ebae813.json
new file mode 100644
index 000000000000..cc253bac397d
--- /dev/null
+++ b/.changes/next-release/feature-AmazonTranscribeService-ebae813.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon Transcribe Service",
+ "description": "This release adds support for batch transcription jobs within Amazon Transcribe Medical."
+}
diff --git a/services/transcribe/src/main/resources/codegen-resources/paginators-1.json b/services/transcribe/src/main/resources/codegen-resources/paginators-1.json
index aded8e376efe..ec10a28afab6 100644
--- a/services/transcribe/src/main/resources/codegen-resources/paginators-1.json
+++ b/services/transcribe/src/main/resources/codegen-resources/paginators-1.json
@@ -1,5 +1,10 @@
{
"pagination": {
+ "ListMedicalTranscriptionJobs": {
+ "input_token": "NextToken",
+ "output_token": "NextToken",
+ "limit_key": "MaxResults"
+ },
"ListTranscriptionJobs": {
"input_token": "NextToken",
"output_token": "NextToken",
diff --git a/services/transcribe/src/main/resources/codegen-resources/service-2.json b/services/transcribe/src/main/resources/codegen-resources/service-2.json
index fc8743b79d19..b7412a64b3a6 100644
--- a/services/transcribe/src/main/resources/codegen-resources/service-2.json
+++ b/services/transcribe/src/main/resources/codegen-resources/service-2.json
@@ -45,6 +45,20 @@
],
"documentation":"Creates a new vocabulary filter that you can use to filter words, such as profane words, from the output of a transcription job.
"
},
+ "DeleteMedicalTranscriptionJob":{
+ "name":"DeleteMedicalTranscriptionJob",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"DeleteMedicalTranscriptionJobRequest"},
+ "errors":[
+ {"shape":"LimitExceededException"},
+ {"shape":"BadRequestException"},
+ {"shape":"InternalFailureException"}
+ ],
+ "documentation":"Deletes a transcription job generated by Amazon Transcribe Medical and any related information.
"
+ },
"DeleteTranscriptionJob":{
"name":"DeleteTranscriptionJob",
"http":{
@@ -89,6 +103,22 @@
],
"documentation":"Removes a vocabulary filter.
"
},
+ "GetMedicalTranscriptionJob":{
+ "name":"GetMedicalTranscriptionJob",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"GetMedicalTranscriptionJobRequest"},
+ "output":{"shape":"GetMedicalTranscriptionJobResponse"},
+ "errors":[
+ {"shape":"BadRequestException"},
+ {"shape":"LimitExceededException"},
+ {"shape":"InternalFailureException"},
+ {"shape":"NotFoundException"}
+ ],
+ "documentation":"Returns information about a transcription job from Amazon Transcribe Medical. To see the status of the job, check the TranscriptionJobStatus
field. If the status is COMPLETED
, the job is finished. You find the results of the completed job in the TranscriptFileUri
field.
"
+ },
"GetTranscriptionJob":{
"name":"GetTranscriptionJob",
"http":{
@@ -137,6 +167,21 @@
],
"documentation":"Returns information about a vocabulary filter.
"
},
+ "ListMedicalTranscriptionJobs":{
+ "name":"ListMedicalTranscriptionJobs",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"ListMedicalTranscriptionJobsRequest"},
+ "output":{"shape":"ListMedicalTranscriptionJobsResponse"},
+ "errors":[
+ {"shape":"BadRequestException"},
+ {"shape":"LimitExceededException"},
+ {"shape":"InternalFailureException"}
+ ],
+ "documentation":"Lists medical transcription jobs with a specified status or substring that matches their names.
"
+ },
"ListTranscriptionJobs":{
"name":"ListTranscriptionJobs",
"http":{
@@ -182,6 +227,22 @@
],
"documentation":"Gets information about vocabulary filters.
"
},
+ "StartMedicalTranscriptionJob":{
+ "name":"StartMedicalTranscriptionJob",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"StartMedicalTranscriptionJobRequest"},
+ "output":{"shape":"StartMedicalTranscriptionJobResponse"},
+ "errors":[
+ {"shape":"BadRequestException"},
+ {"shape":"LimitExceededException"},
+ {"shape":"InternalFailureException"},
+ {"shape":"ConflictException"}
+ ],
+ "documentation":"Start a batch job to transcribe medical speech to text.
"
+ },
"StartTranscriptionJob":{
"name":"StartTranscriptionJob",
"http":{
@@ -263,10 +324,10 @@
},
"RedactionOutput":{
"shape":"RedactionOutput",
- "documentation":"Request parameter where you choose whether to output only the redacted transcript or generate an additional unredacted transcript.
When you choose redacted
Amazon Transcribe outputs a JSON file with only the redacted transcript and related information.
When you choose redacted_and_unredacted
Amazon Transcribe outputs a JSON file with the unredacted transcript and related information in addition to the JSON file with the redacted transcript.
"
+ "documentation":"The output transcript file stored in either the default S3 bucket or in a bucket you specify.
When you choose redacted
Amazon Transcribe outputs only the redacted transcript.
When you choose redacted_and_unredacted
Amazon Transcribe outputs both the redacted and unredacted transcripts.
"
}
},
- "documentation":"Settings for content redaction within a transcription job.
You can redact transcripts in US English (en-us). For more information see: Automatic Content Redaction
"
+ "documentation":"Settings for content redaction within a transcription job.
"
},
"CreateVocabularyFilterRequest":{
"type":"structure",
@@ -365,6 +426,16 @@
"pattern":"^arn:aws:iam::[0-9]{0,63}:role/[A-Za-z0-9:_/+=,@.-]{0,1023}$"
},
"DateTime":{"type":"timestamp"},
+ "DeleteMedicalTranscriptionJobRequest":{
+ "type":"structure",
+ "required":["MedicalTranscriptionJobName"],
+ "members":{
+ "MedicalTranscriptionJobName":{
+ "shape":"TranscriptionJobName",
+ "documentation":"The name you provide to the DeleteMedicalTranscriptionJob
object to delete a transcription job.
"
+ }
+ }
+ },
"DeleteTranscriptionJobRequest":{
"type":"structure",
"required":["TranscriptionJobName"],
@@ -396,6 +467,25 @@
}
},
"FailureReason":{"type":"string"},
+ "GetMedicalTranscriptionJobRequest":{
+ "type":"structure",
+ "required":["MedicalTranscriptionJobName"],
+ "members":{
+ "MedicalTranscriptionJobName":{
+ "shape":"TranscriptionJobName",
+ "documentation":"The name of the medical transcription job.
"
+ }
+ }
+ },
+ "GetMedicalTranscriptionJobResponse":{
+ "type":"structure",
+ "members":{
+ "MedicalTranscriptionJob":{
+ "shape":"MedicalTranscriptionJob",
+ "documentation":"An object that contains the results of the medical transcription job.
"
+ }
+ }
+ },
"GetTranscriptionJobRequest":{
"type":"structure",
"required":["TranscriptionJobName"],
@@ -499,11 +589,11 @@
"members":{
"AllowDeferredExecution":{
"shape":"Boolean",
- "documentation":"Indicates whether a job should be queued by Amazon Transcribe when the concurrent execution limit is exceeded. When the AllowDeferredExecution
field is true, jobs are queued and will be executed when the number of executing jobs falls below the concurrent execution limit. If the field is false, Amazon Transcribe returns a LimitExceededException
exception.
If you specify the AllowDeferredExecution
field, you must specify the DataAccessRoleArn
field.
"
+ "documentation":"Indicates whether a job should be queued by Amazon Transcribe when the concurrent execution limit is exceeded. When the AllowDeferredExecution
field is true, jobs are queued and executed when the number of executing jobs falls below the concurrent execution limit. If the field is false, Amazon Transcribe returns a LimitExceededException
exception.
If you specify the AllowDeferredExecution
field, you must specify the DataAccessRoleArn
field.
"
},
"DataAccessRoleArn":{
"shape":"DataAccessRoleArn",
- "documentation":"The Amazon Resource Name (ARN) of a role that has access to the S3 bucket that contains the input files. Amazon Transcribe will assume this role to read queued media files. If you have specified an output S3 bucket for the transcription results, this role should have access to the output bucket as well.
If you specify the AllowDeferredExecution
field, you must specify the DataAccessRoleArn
field.
"
+ "documentation":"The Amazon Resource Name (ARN) of a role that has access to the S3 bucket that contains the input files. Amazon Transcribe assumes this role to read queued media files. If you have specified an output S3 bucket for the transcription results, this role should have access to the output bucket as well.
If you specify the AllowDeferredExecution
field, you must specify the DataAccessRoleArn
field.
"
}
},
"documentation":"Provides information about when a transcription job should be executed.
"
@@ -558,6 +648,44 @@
"documentation":"Either you have sent too many requests or your input file is too long. Wait before you resend your request, or use a smaller file and resend the request.
",
"exception":true
},
+ "ListMedicalTranscriptionJobsRequest":{
+ "type":"structure",
+ "members":{
+ "Status":{
+ "shape":"TranscriptionJobStatus",
+ "documentation":"When specified, returns only medical transcription jobs with the specified status. Jobs are ordered by creation date, with the newest jobs returned first. If you don't specify a status, Amazon Transcribe Medical returns all transcription jobs ordered by creation date.
"
+ },
+ "JobNameContains":{
+ "shape":"TranscriptionJobName",
+ "documentation":"When specified, the jobs returned in the list are limited to jobs whose name contains the specified string.
"
+ },
+ "NextToken":{
+ "shape":"NextToken",
+ "documentation":"If you a receive a truncated result in the previous request of ListMedicalTranscriptionJobs
, include NextToken
to fetch the next set of jobs.
"
+ },
+ "MaxResults":{
+ "shape":"MaxResults",
+ "documentation":"The maximum number of medical transcription jobs to return in the response. IF there are fewer results in the list, this response contains only the actual results.
"
+ }
+ }
+ },
+ "ListMedicalTranscriptionJobsResponse":{
+ "type":"structure",
+ "members":{
+ "Status":{
+ "shape":"TranscriptionJobStatus",
+ "documentation":"The requested status of the medical transcription jobs returned.
"
+ },
+ "NextToken":{
+ "shape":"NextToken",
+ "documentation":"The ListMedicalTranscriptionJobs
operation returns a page of jobs at a time. The maximum size of the page is set by the MaxResults
parameter. If the number of jobs exceeds what can fit on a page, Amazon Transcribe Medical returns the NextPage
token. Include the token in the next request to the ListMedicalTranscriptionJobs
operation to return in the next page of jobs.
"
+ },
+ "MedicalTranscriptionJobSummaries":{
+ "shape":"MedicalTranscriptionJobSummaries",
+ "documentation":"A list of objects containing summary information for a transcription job.
"
+ }
+ }
+ },
"ListTranscriptionJobsRequest":{
"type":"structure",
"members":{
@@ -613,7 +741,7 @@
},
"NameContains":{
"shape":"VocabularyName",
- "documentation":"When specified, the vocabularies returned in the list are limited to vocabularies whose name contains the specified string. The search is case-insensitive, ListVocabularies
will return both \"vocabularyname\" and \"VocabularyName\" in the response list.
"
+ "documentation":"When specified, the vocabularies returned in the list are limited to vocabularies whose name contains the specified string. The search is case-insensitive, ListVocabularies
returns both \"vocabularyname\" and \"VocabularyName\" in the response list.
"
}
}
},
@@ -660,7 +788,7 @@
},
"VocabularyFilters":{
"shape":"VocabularyFilters",
- "documentation":"The list of vocabulary filters. It will contain at most MaxResults
number of filters. If there are more filters, call the ListVocabularyFilters
operation again with the NextToken
parameter in the request set to the value of the NextToken
field in the response.
"
+ "documentation":"The list of vocabulary filters. It contains at most MaxResults
number of filters. If there are more filters, call the ListVocabularyFilters
operation again with the NextToken
parameter in the request set to the value of the NextToken
field in the response.
"
}
}
},
@@ -703,6 +831,151 @@
"max":48000,
"min":8000
},
+ "MedicalTranscript":{
+ "type":"structure",
+ "members":{
+ "TranscriptFileUri":{
+ "shape":"Uri",
+ "documentation":"The S3 object location of the medical transcript.
Use this URI to access the medical transcript. This URI points to the S3 bucket you created to store the medical transcript.
"
+ }
+ },
+ "documentation":"Identifies the location of a medical transcript.
"
+ },
+ "MedicalTranscriptionJob":{
+ "type":"structure",
+ "members":{
+ "MedicalTranscriptionJobName":{
+ "shape":"TranscriptionJobName",
+ "documentation":"The name for a given medical transcription job.
"
+ },
+ "TranscriptionJobStatus":{
+ "shape":"TranscriptionJobStatus",
+ "documentation":"The completion status of a medical transcription job.
"
+ },
+ "LanguageCode":{
+ "shape":"LanguageCode",
+ "documentation":"The language code for the language spoken in the source audio file. US English (en-US) is the only supported language for medical transcriptions. Any other value you enter for language code results in a BadRequestException
error.
"
+ },
+ "MediaSampleRateHertz":{
+ "shape":"MediaSampleRateHertz",
+ "documentation":"The sample rate, in Hertz, of the source audio containing medical information.
If you don't specify the sample rate, Amazon Transcribe Medical determines it for you. If you choose to specify the sample rate, it must match the rate detected by Amazon Transcribe Medical. In most cases, you should leave the MediaSampleHertz
blank and let Amazon Transcribe Medical determine the sample rate.
"
+ },
+ "MediaFormat":{
+ "shape":"MediaFormat",
+ "documentation":"The format of the input media file.
"
+ },
+ "Media":{"shape":"Media"},
+ "Transcript":{
+ "shape":"MedicalTranscript",
+ "documentation":"An object that contains the MedicalTranscript
. The MedicalTranscript
contains the TranscriptFileUri
.
"
+ },
+ "StartTime":{
+ "shape":"DateTime",
+ "documentation":"A timestamp that shows when the job started processing.
"
+ },
+ "CreationTime":{
+ "shape":"DateTime",
+ "documentation":"A timestamp that shows when the job was created.
"
+ },
+ "CompletionTime":{
+ "shape":"DateTime",
+ "documentation":"A timestamp that shows when the job was completed.
"
+ },
+ "FailureReason":{
+ "shape":"FailureReason",
+ "documentation":"If the TranscriptionJobStatus
field is FAILED
, this field contains information about why the job failed.
The FailureReason
field contains one of the following values:
-
Unsupported media format
- The media format specified in the MediaFormat
field of the request isn't valid. See the description of the MediaFormat
field for a list of valid values.
-
The media format provided does not match the detected media format
- The media format of the audio file doesn't match the format specified in the MediaFormat
field in the request. Check the media format of your media file and make sure the two values match.
-
Invalid sample rate for audio file
- The sample rate specified in the MediaSampleRateHertz
of the request isn't valid. The sample rate must be between 8000 and 48000 Hertz.
-
The sample rate provided does not match the detected sample rate
- The sample rate in the audio file doesn't match the sample rate specified in the MediaSampleRateHertz
field in the request. Check the sample rate of your media file and make sure that the two values match.
-
Invalid file size: file size too large
- The size of your audio file is larger than what Amazon Transcribe Medical can process. For more information, see Guidlines and Quotas in the Amazon Transcribe Medical Guide
-
Invalid number of channels: number of channels too large
- Your audio contains more channels than Amazon Transcribe Medical is configured to process. To request additional channels, see Amazon Transcribe Medical Endpoints and Quotas in the Amazon Web Services General Reference
"
+ },
+ "Settings":{
+ "shape":"MedicalTranscriptionSetting",
+ "documentation":"Object that contains object.
"
+ },
+ "Specialty":{
+ "shape":"Specialty",
+ "documentation":"The medical specialty of any clinicians providing a dictation or having a conversation. PRIMARYCARE
is the only available setting for this object. This specialty enables you to generate transcriptions for the following medical fields:
"
+ },
+ "Type":{
+ "shape":"Type",
+ "documentation":"The type of speech in the transcription job. CONVERSATION
is generally used for patient-physician dialogues. DICTATION
is the setting for physicians speaking their notes after seeing a patient. For more information, see how-it-works-med
"
+ }
+ },
+ "documentation":"The data structure that containts the information for a medical transcription job.
"
+ },
+ "MedicalTranscriptionJobSummaries":{
+ "type":"list",
+ "member":{"shape":"MedicalTranscriptionJobSummary"}
+ },
+ "MedicalTranscriptionJobSummary":{
+ "type":"structure",
+ "members":{
+ "MedicalTranscriptionJobName":{
+ "shape":"TranscriptionJobName",
+ "documentation":"The name of a medical transcription job.
"
+ },
+ "CreationTime":{
+ "shape":"DateTime",
+ "documentation":"A timestamp that shows when the medical transcription job was created.
"
+ },
+ "StartTime":{
+ "shape":"DateTime",
+ "documentation":"A timestamp that shows when the job began processing.
"
+ },
+ "CompletionTime":{
+ "shape":"DateTime",
+ "documentation":"A timestamp that shows when the job was completed.
"
+ },
+ "LanguageCode":{
+ "shape":"LanguageCode",
+ "documentation":"The language of the transcript in the source audio file.
"
+ },
+ "TranscriptionJobStatus":{
+ "shape":"TranscriptionJobStatus",
+ "documentation":"The status of the medical transcription job.
"
+ },
+ "FailureReason":{
+ "shape":"FailureReason",
+ "documentation":"If the TranscriptionJobStatus
field is FAILED
, a description of the error.
"
+ },
+ "OutputLocationType":{
+ "shape":"OutputLocationType",
+ "documentation":"Indicates the location of the transcription job's output.
The CUSTOMER_BUCKET
is the S3 location provided in the OutputBucketName
field when the
"
+ },
+ "Specialty":{
+ "shape":"Specialty",
+ "documentation":"The medical specialty of the transcription job. Primary care
is the only valid value.
"
+ },
+ "Type":{
+ "shape":"Type",
+ "documentation":"The speech of the clinician in the input audio.
"
+ }
+ },
+ "documentation":"Provides summary information about a transcription job.
"
+ },
+ "MedicalTranscriptionSetting":{
+ "type":"structure",
+ "members":{
+ "ShowSpeakerLabels":{
+ "shape":"Boolean",
+ "documentation":"Determines whether the transcription job uses speaker recognition to identify different speakers in the input audio. Speaker recongition labels individual speakers in the audio file. If you set the ShowSpeakerLabels
field to true, you must also set the maximum number of speaker labels in the MaxSpeakerLabels
field.
You can't set both ShowSpeakerLabels
and ChannelIdentification
in the same request. If you set both, your request returns a BadRequestException
.
"
+ },
+ "MaxSpeakerLabels":{
+ "shape":"MaxSpeakers",
+ "documentation":"The maximum number of speakers to identify in the input audio. If there are more speakers in the audio than this number, multiple speakers are identified as a single speaker. If you specify the MaxSpeakerLabels
field, you must set the ShowSpeakerLabels
field to true.
"
+ },
+ "ChannelIdentification":{
+ "shape":"Boolean",
+ "documentation":"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 detected on an audio channel, including the start time and end time of the item and alternative transcriptions of item. The alternative transcriptions also come with confidence scores provided by Amazon Transcribe Medical.
You can't set both ShowSpeakerLabels
and ChannelIdentification
in the same request. If you set both, your request returns a BadRequestException
"
+ },
+ "ShowAlternatives":{
+ "shape":"Boolean",
+ "documentation":"Determines whether alternative transcripts are generated along with the transcript that has the highest confidence. If you set ShowAlternatives
field to true, you must also set the maximum number of alternatives to return in the MaxAlternatives
field.
"
+ },
+ "MaxAlternatives":{
+ "shape":"MaxAlternatives",
+ "documentation":"The maximum number of alternatives that you tell the service to return. If you specify the MaxAlternatives
field, you must set the ShowAlternatives
field to true.
"
+ }
+ },
+ "documentation":"Optional settings for the StartMedicalTranscriptionJob operation.
"
+ },
"NextToken":{
"type":"string",
"max":8192,
@@ -762,7 +1035,7 @@
},
"MaxSpeakerLabels":{
"shape":"MaxSpeakers",
- "documentation":"The maximum number of speakers to identify in the input audio. If there are more speakers in the audio than this number, multiple speakers will be identified as a single speaker. If you specify the MaxSpeakerLabels
field, you must set the ShowSpeakerLabels
field to true.
"
+ "documentation":"The maximum number of speakers to identify in the input audio. If there are more speakers in the audio than this number, multiple speakers are identified as a single speaker. If you specify the MaxSpeakerLabels
field, you must set the ShowSpeakerLabels
field to true.
"
},
"ChannelIdentification":{
"shape":"Boolean",
@@ -787,6 +1060,69 @@
},
"documentation":"Provides optional settings for the StartTranscriptionJob
operation.
"
},
+ "Specialty":{
+ "type":"string",
+ "enum":["PRIMARYCARE"]
+ },
+ "StartMedicalTranscriptionJobRequest":{
+ "type":"structure",
+ "required":[
+ "MedicalTranscriptionJobName",
+ "LanguageCode",
+ "Media",
+ "OutputBucketName",
+ "Specialty",
+ "Type"
+ ],
+ "members":{
+ "MedicalTranscriptionJobName":{
+ "shape":"TranscriptionJobName",
+ "documentation":"The name of the medical transcription job. You can't use the strings \".\" or \"..\" by themselves as the job name. The name must also be unique within an AWS account.
"
+ },
+ "LanguageCode":{
+ "shape":"LanguageCode",
+ "documentation":"The language code for the language spoken in the input media file. US English (en-US) is the valid value for medical transcription jobs. Any other value you enter for language code results in a BadRequestException
error.
"
+ },
+ "MediaSampleRateHertz":{
+ "shape":"MediaSampleRateHertz",
+ "documentation":"The sample rate, in Hertz, of the audio track in the input media file.
If you do not specify the media sample rate, Amazon Transcribe Medical determines the sample rate. If you specify the sample rate, it must match the rate detected by Amazon Transcribe Medical. In most cases, you should leave the MediaSampleRateHertz
field blank and let Amazon Transcribe Medical determine the sample rate.
"
+ },
+ "MediaFormat":{
+ "shape":"MediaFormat",
+ "documentation":"The audio format of the input media file.
"
+ },
+ "Media":{"shape":"Media"},
+ "OutputBucketName":{
+ "shape":"OutputBucketName",
+ "documentation":"The Amazon S3 location where the transcription is stored.
You must set OutputBucketName
for Amazon Transcribe Medical to store the transcription results. Your transcript appears in the S3 location you specify. When you call the GetMedicalTranscriptionJob, the operation returns this location in the TranscriptFileUri
field. The S3 bucket must have permissions that allow Amazon Transcribe Medical to put files in the bucket. For more information, see Permissions Required for IAM User Roles.
You can specify an AWS Key Management Service (KMS) key to encrypt the output of your transcription using the OutputEncryptionKMSKeyId
parameter. If you don't specify a KMS key, Amazon Transcribe Medical uses the default Amazon S3 key for server-side encryption of transcripts that are placed in your S3 bucket.
"
+ },
+ "OutputEncryptionKMSKeyId":{
+ "shape":"KMSKeyId",
+ "documentation":"The Amazon Resource Name (ARN) of the AWS Key Management Service (KMS) key used to encrypt the output of the transcription job. The user calling the StartMedicalTranscriptionJob operation must have permission to use the specified KMS key.
You use either of the following to identify a KMS key in the current account:
You can use either of the following to identify a KMS key in the current account or another account:
-
Amazon Resource Name (ARN) of a KMS key in the current account or another account: \"arn:aws:kms:region:account ID:key/1234abcd-12ab-34cd-56ef-1234567890ab\"
-
ARN of a KMS Key Alias: \"arn:aws:kms:region:account ID:alias/ExampleAlias\"
If you don't specify an encryption key, the output of the medical transcription job is encrypted with the default Amazon S3 key (SSE-S3).
If you specify a KMS key to encrypt your output, you must also specify an output location in the OutputBucketName
parameter.
"
+ },
+ "Settings":{
+ "shape":"MedicalTranscriptionSetting",
+ "documentation":"Optional settings for the medical transcription job.
"
+ },
+ "Specialty":{
+ "shape":"Specialty",
+ "documentation":"The medical specialty of any clinician speaking in the input media.
"
+ },
+ "Type":{
+ "shape":"Type",
+ "documentation":"The speech of clinician in the input audio. CONVERSATION
refers to conversations clinicians have with patients. DICTATION
refers to medical professionals dictating their notes about a patient encounter.
"
+ }
+ }
+ },
+ "StartMedicalTranscriptionJobResponse":{
+ "type":"structure",
+ "members":{
+ "MedicalTranscriptionJob":{
+ "shape":"MedicalTranscriptionJob",
+ "documentation":"A batch job submitted to transcribe medical speech to text.
"
+ }
+ }
+ },
"StartTranscriptionJobRequest":{
"type":"structure",
"required":[
@@ -984,6 +1320,13 @@
},
"documentation":"Provides a summary of information about a transcription job.
"
},
+ "Type":{
+ "type":"string",
+ "enum":[
+ "CONVERSATION",
+ "DICTATION"
+ ]
+ },
"UpdateVocabularyFilterRequest":{
"type":"structure",
"required":["VocabularyFilterName"],
From bacca81aa5148053b53add50e717d4d0963fb52c Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Mon, 6 Apr 2020 18:07:12 +0000
Subject: [PATCH 021/604] Amazon Chime Update: Amazon Chime proxy phone
sessions let you provide two users with a shared phone number to communicate
via voice or text for up to 12 hours without revealing personal phone
numbers. When users call or message the provided phone number, they are
connected to the other party and their private phone numbers are replaced
with the shared number in Caller ID.
---
.../feature-AmazonChime-36bc313.json | 5 +
.../codegen-resources/paginators-1.json | 5 +
.../codegen-resources/service-2.json | 466 ++++++++++++++++++
3 files changed, 476 insertions(+)
create mode 100644 .changes/next-release/feature-AmazonChime-36bc313.json
diff --git a/.changes/next-release/feature-AmazonChime-36bc313.json b/.changes/next-release/feature-AmazonChime-36bc313.json
new file mode 100644
index 000000000000..6d6ac1109fe9
--- /dev/null
+++ b/.changes/next-release/feature-AmazonChime-36bc313.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon Chime",
+ "description": "Amazon Chime proxy phone sessions let you provide two users with a shared phone number to communicate via voice or text for up to 12 hours without revealing personal phone numbers. When users call or message the provided phone number, they are connected to the other party and their private phone numbers are replaced with the shared number in Caller ID."
+}
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 7d55169a0377..6727698813d8 100644
--- a/services/chime/src/main/resources/codegen-resources/paginators-1.json
+++ b/services/chime/src/main/resources/codegen-resources/paginators-1.json
@@ -30,6 +30,11 @@
"output_token": "NextToken",
"limit_key": "MaxResults"
},
+ "ListProxySessions": {
+ "input_token": "NextToken",
+ "output_token": "NextToken",
+ "limit_key": "MaxResults"
+ },
"ListRoomMemberships": {
"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 730d251ce52b..1e9772275512 100644
--- a/services/chime/src/main/resources/codegen-resources/service-2.json
+++ b/services/chime/src/main/resources/codegen-resources/service-2.json
@@ -337,6 +337,25 @@
],
"documentation":"Creates an order for phone numbers to be provisioned. Choose from Amazon Chime Business Calling and Amazon Chime Voice Connector product types. For toll-free numbers, you must use the Amazon Chime Voice Connector product type.
"
},
+ "CreateProxySession":{
+ "name":"CreateProxySession",
+ "http":{
+ "method":"POST",
+ "requestUri":"/voice-connectors/{voiceConnectorId}/proxy-sessions",
+ "responseCode":201
+ },
+ "input":{"shape":"CreateProxySessionRequest"},
+ "output":{"shape":"CreateProxySessionResponse"},
+ "errors":[
+ {"shape":"UnauthorizedClientException"},
+ {"shape":"NotFoundException"},
+ {"shape":"ForbiddenException"},
+ {"shape":"BadRequestException"},
+ {"shape":"ThrottledClientException"},
+ {"shape":"ServiceUnavailableException"},
+ {"shape":"ServiceFailureException"}
+ ]
+ },
"CreateRoom":{
"name":"CreateRoom",
"http":{
@@ -539,6 +558,24 @@
],
"documentation":"Moves the specified phone number into the Deletion queue. A phone number must be disassociated from any users or Amazon Chime Voice Connectors before it can be deleted.
Deleted phone numbers remain in the Deletion queue for 7 days before they are deleted permanently.
"
},
+ "DeleteProxySession":{
+ "name":"DeleteProxySession",
+ "http":{
+ "method":"DELETE",
+ "requestUri":"/voice-connectors/{voiceConnectorId}/proxy-sessions/{proxySessionId}",
+ "responseCode":204
+ },
+ "input":{"shape":"DeleteProxySessionRequest"},
+ "errors":[
+ {"shape":"UnauthorizedClientException"},
+ {"shape":"NotFoundException"},
+ {"shape":"ForbiddenException"},
+ {"shape":"BadRequestException"},
+ {"shape":"ThrottledClientException"},
+ {"shape":"ServiceUnavailableException"},
+ {"shape":"ServiceFailureException"}
+ ]
+ },
"DeleteRoom":{
"name":"DeleteRoom",
"http":{
@@ -636,6 +673,24 @@
],
"documentation":"Deletes the origination settings for the specified Amazon Chime Voice Connector.
"
},
+ "DeleteVoiceConnectorProxy":{
+ "name":"DeleteVoiceConnectorProxy",
+ "http":{
+ "method":"DELETE",
+ "requestUri":"/voice-connectors/{voiceConnectorId}/programmable-numbers/proxy",
+ "responseCode":204
+ },
+ "input":{"shape":"DeleteVoiceConnectorProxyRequest"},
+ "errors":[
+ {"shape":"UnauthorizedClientException"},
+ {"shape":"NotFoundException"},
+ {"shape":"ForbiddenException"},
+ {"shape":"BadRequestException"},
+ {"shape":"ThrottledClientException"},
+ {"shape":"ServiceUnavailableException"},
+ {"shape":"ServiceFailureException"}
+ ]
+ },
"DeleteVoiceConnectorStreamingConfiguration":{
"name":"DeleteVoiceConnectorStreamingConfiguration",
"http":{
@@ -966,6 +1021,25 @@
],
"documentation":"Retrieves the phone number settings for the administrator's AWS account, such as the default outbound calling name.
"
},
+ "GetProxySession":{
+ "name":"GetProxySession",
+ "http":{
+ "method":"GET",
+ "requestUri":"/voice-connectors/{voiceConnectorId}/proxy-sessions/{proxySessionId}",
+ "responseCode":200
+ },
+ "input":{"shape":"GetProxySessionRequest"},
+ "output":{"shape":"GetProxySessionResponse"},
+ "errors":[
+ {"shape":"UnauthorizedClientException"},
+ {"shape":"NotFoundException"},
+ {"shape":"ForbiddenException"},
+ {"shape":"BadRequestException"},
+ {"shape":"ThrottledClientException"},
+ {"shape":"ServiceUnavailableException"},
+ {"shape":"ServiceFailureException"}
+ ]
+ },
"GetRoom":{
"name":"GetRoom",
"http":{
@@ -1106,6 +1180,25 @@
],
"documentation":"Retrieves origination setting details for the specified Amazon Chime Voice Connector.
"
},
+ "GetVoiceConnectorProxy":{
+ "name":"GetVoiceConnectorProxy",
+ "http":{
+ "method":"GET",
+ "requestUri":"/voice-connectors/{voiceConnectorId}/programmable-numbers/proxy",
+ "responseCode":200
+ },
+ "input":{"shape":"GetVoiceConnectorProxyRequest"},
+ "output":{"shape":"GetVoiceConnectorProxyResponse"},
+ "errors":[
+ {"shape":"UnauthorizedClientException"},
+ {"shape":"NotFoundException"},
+ {"shape":"ForbiddenException"},
+ {"shape":"BadRequestException"},
+ {"shape":"ThrottledClientException"},
+ {"shape":"ServiceUnavailableException"},
+ {"shape":"ServiceFailureException"}
+ ]
+ },
"GetVoiceConnectorStreamingConfiguration":{
"name":"GetVoiceConnectorStreamingConfiguration",
"http":{
@@ -1301,6 +1394,25 @@
],
"documentation":"Lists the phone numbers for the specified Amazon Chime account, Amazon Chime user, Amazon Chime Voice Connector, or Amazon Chime Voice Connector group.
"
},
+ "ListProxySessions":{
+ "name":"ListProxySessions",
+ "http":{
+ "method":"GET",
+ "requestUri":"/voice-connectors/{voiceConnectorId}/proxy-sessions",
+ "responseCode":200
+ },
+ "input":{"shape":"ListProxySessionsRequest"},
+ "output":{"shape":"ListProxySessionsResponse"},
+ "errors":[
+ {"shape":"UnauthorizedClientException"},
+ {"shape":"NotFoundException"},
+ {"shape":"ForbiddenException"},
+ {"shape":"BadRequestException"},
+ {"shape":"ThrottledClientException"},
+ {"shape":"ServiceUnavailableException"},
+ {"shape":"ServiceFailureException"}
+ ]
+ },
"ListRoomMemberships":{
"name":"ListRoomMemberships",
"http":{
@@ -1499,6 +1611,25 @@
],
"documentation":"Adds origination settings for the specified Amazon Chime Voice Connector.
"
},
+ "PutVoiceConnectorProxy":{
+ "name":"PutVoiceConnectorProxy",
+ "http":{
+ "method":"PUT",
+ "requestUri":"/voice-connectors/{voiceConnectorId}/programmable-numbers/proxy"
+ },
+ "input":{"shape":"PutVoiceConnectorProxyRequest"},
+ "output":{"shape":"PutVoiceConnectorProxyResponse"},
+ "errors":[
+ {"shape":"UnauthorizedClientException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"NotFoundException"},
+ {"shape":"ForbiddenException"},
+ {"shape":"BadRequestException"},
+ {"shape":"ThrottledClientException"},
+ {"shape":"ServiceUnavailableException"},
+ {"shape":"ServiceFailureException"}
+ ]
+ },
"PutVoiceConnectorStreamingConfiguration":{
"name":"PutVoiceConnectorStreamingConfiguration",
"http":{
@@ -1756,6 +1887,25 @@
],
"documentation":"Updates the phone number settings for the administrator's AWS account, such as the default outbound calling name. You can update the default outbound calling name once every seven days. Outbound calling names can take up to 72 hours to update.
"
},
+ "UpdateProxySession":{
+ "name":"UpdateProxySession",
+ "http":{
+ "method":"POST",
+ "requestUri":"/voice-connectors/{voiceConnectorId}/proxy-sessions/{proxySessionId}",
+ "responseCode":201
+ },
+ "input":{"shape":"UpdateProxySessionRequest"},
+ "output":{"shape":"UpdateProxySessionResponse"},
+ "errors":[
+ {"shape":"UnauthorizedClientException"},
+ {"shape":"NotFoundException"},
+ {"shape":"ForbiddenException"},
+ {"shape":"BadRequestException"},
+ {"shape":"ThrottledClientException"},
+ {"shape":"ServiceUnavailableException"},
+ {"shape":"ServiceFailureException"}
+ ]
+ },
"UpdateRoom":{
"name":"UpdateRoom",
"http":{
@@ -1978,6 +2128,10 @@
},
"documentation":"The Alexa for Business metadata associated with an Amazon Chime user, used to integrate Alexa for Business with a device.
"
},
+ "AreaCode":{
+ "type":"string",
+ "pattern":"^$|^[0-9]{3,3}$"
+ },
"Arn":{
"type":"string",
"max":1024,
@@ -2404,6 +2558,17 @@
"type":"list",
"member":{"shape":"CallingRegion"}
},
+ "Capability":{
+ "type":"string",
+ "enum":[
+ "Voice",
+ "SMS"
+ ]
+ },
+ "CapabilityList":{
+ "type":"list",
+ "member":{"shape":"Capability"}
+ },
"ClientRequestToken":{
"type":"string",
"max":64,
@@ -2421,6 +2586,16 @@
"error":{"httpStatusCode":409},
"exception":true
},
+ "Country":{
+ "type":"string",
+ "pattern":"^$|^[A-Z]{2,2}$"
+ },
+ "CountryList":{
+ "type":"list",
+ "member":{"shape":"Country"},
+ "max":100,
+ "min":1
+ },
"CpsLimit":{
"type":"integer",
"min":1
@@ -2595,6 +2770,34 @@
}
}
},
+ "CreateProxySessionRequest":{
+ "type":"structure",
+ "required":[
+ "ParticipantPhoneNumbers",
+ "Capabilities",
+ "VoiceConnectorId"
+ ],
+ "members":{
+ "VoiceConnectorId":{
+ "shape":"NonEmptyString128",
+ "location":"uri",
+ "locationName":"voiceConnectorId"
+ },
+ "ParticipantPhoneNumbers":{"shape":"ParticipantPhoneNumberList"},
+ "Name":{"shape":"ProxySessionNameString"},
+ "ExpiryMinutes":{"shape":"PositiveInteger"},
+ "Capabilities":{"shape":"CapabilityList"},
+ "NumberSelectionBehavior":{"shape":"NumberSelectionBehavior"},
+ "GeoMatchLevel":{"shape":"GeoMatchLevel"},
+ "GeoMatchParams":{"shape":"GeoMatchParams"}
+ }
+ },
+ "CreateProxySessionResponse":{
+ "type":"structure",
+ "members":{
+ "ProxySession":{"shape":"ProxySession"}
+ }
+ },
"CreateRoomMembershipRequest":{
"type":"structure",
"required":[
@@ -2855,6 +3058,25 @@
}
}
},
+ "DeleteProxySessionRequest":{
+ "type":"structure",
+ "required":[
+ "VoiceConnectorId",
+ "ProxySessionId"
+ ],
+ "members":{
+ "VoiceConnectorId":{
+ "shape":"NonEmptyString128",
+ "location":"uri",
+ "locationName":"voiceConnectorId"
+ },
+ "ProxySessionId":{
+ "shape":"NonEmptyString128",
+ "location":"uri",
+ "locationName":"proxySessionId"
+ }
+ }
+ },
"DeleteRoomMembershipRequest":{
"type":"structure",
"required":[
@@ -2928,6 +3150,17 @@
}
}
},
+ "DeleteVoiceConnectorProxyRequest":{
+ "type":"structure",
+ "required":["VoiceConnectorId"],
+ "members":{
+ "VoiceConnectorId":{
+ "shape":"NonEmptyString128",
+ "location":"uri",
+ "locationName":"voiceConnectorId"
+ }
+ }
+ },
"DeleteVoiceConnectorRequest":{
"type":"structure",
"required":["VoiceConnectorId"],
@@ -3155,6 +3388,24 @@
"error":{"httpStatusCode":403},
"exception":true
},
+ "GeoMatchLevel":{
+ "type":"string",
+ "enum":[
+ "Country",
+ "AreaCode"
+ ]
+ },
+ "GeoMatchParams":{
+ "type":"structure",
+ "required":[
+ "Country",
+ "AreaCode"
+ ],
+ "members":{
+ "Country":{"shape":"Country"},
+ "AreaCode":{"shape":"AreaCode"}
+ }
+ },
"GetAccountRequest":{
"type":"structure",
"required":["AccountId"],
@@ -3376,6 +3627,31 @@
}
}
},
+ "GetProxySessionRequest":{
+ "type":"structure",
+ "required":[
+ "VoiceConnectorId",
+ "ProxySessionId"
+ ],
+ "members":{
+ "VoiceConnectorId":{
+ "shape":"NonEmptyString128",
+ "location":"uri",
+ "locationName":"voiceConnectorId"
+ },
+ "ProxySessionId":{
+ "shape":"NonEmptyString128",
+ "location":"uri",
+ "locationName":"proxySessionId"
+ }
+ }
+ },
+ "GetProxySessionResponse":{
+ "type":"structure",
+ "members":{
+ "ProxySession":{"shape":"ProxySession"}
+ }
+ },
"GetRoomRequest":{
"type":"structure",
"required":[
@@ -3529,6 +3805,23 @@
}
}
},
+ "GetVoiceConnectorProxyRequest":{
+ "type":"structure",
+ "required":["VoiceConnectorId"],
+ "members":{
+ "VoiceConnectorId":{
+ "shape":"NonEmptyString128",
+ "location":"uri",
+ "locationName":"voiceConnectorId"
+ }
+ }
+ },
+ "GetVoiceConnectorProxyResponse":{
+ "type":"structure",
+ "members":{
+ "Proxy":{"shape":"Proxy"}
+ }
+ },
"GetVoiceConnectorRequest":{
"type":"structure",
"required":["VoiceConnectorId"],
@@ -3617,6 +3910,7 @@
"type":"string",
"pattern":"[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}"
},
+ "Integer":{"type":"integer"},
"Invite":{
"type":"structure",
"members":{
@@ -3936,6 +4230,39 @@
}
}
},
+ "ListProxySessionsRequest":{
+ "type":"structure",
+ "required":["VoiceConnectorId"],
+ "members":{
+ "VoiceConnectorId":{
+ "shape":"NonEmptyString128",
+ "location":"uri",
+ "locationName":"voiceConnectorId"
+ },
+ "Status":{
+ "shape":"ProxySessionStatus",
+ "location":"querystring",
+ "locationName":"status"
+ },
+ "NextToken":{
+ "shape":"NextTokenString",
+ "location":"querystring",
+ "locationName":"next-token"
+ },
+ "MaxResults":{
+ "shape":"ResultMax",
+ "location":"querystring",
+ "locationName":"max-results"
+ }
+ }
+ },
+ "ListProxySessionsResponse":{
+ "type":"structure",
+ "members":{
+ "ProxySessions":{"shape":"ProxySessions"},
+ "NextToken":{"shape":"NextTokenString"}
+ }
+ },
"ListRoomMembershipsRequest":{
"type":"structure",
"required":[
@@ -4336,10 +4663,20 @@
"member":{"shape":"MembershipItem"},
"max":50
},
+ "NextTokenString":{
+ "type":"string",
+ "max":65535
+ },
"NonEmptyString":{
"type":"string",
"pattern":".*\\S.*"
},
+ "NonEmptyString128":{
+ "type":"string",
+ "max":128,
+ "min":1,
+ "pattern":".*\\S.*"
+ },
"NonEmptyStringList":{
"type":"list",
"member":{"shape":"String"},
@@ -4356,6 +4693,13 @@
"exception":true
},
"NullableBoolean":{"type":"boolean"},
+ "NumberSelectionBehavior":{
+ "type":"string",
+ "enum":[
+ "PreferSticky",
+ "AvoidSticky"
+ ]
+ },
"OrderedPhoneNumber":{
"type":"structure",
"members":{
@@ -4443,6 +4787,23 @@
"max":100,
"min":1
},
+ "Participant":{
+ "type":"structure",
+ "members":{
+ "PhoneNumber":{"shape":"E164PhoneNumber"},
+ "ProxyPhoneNumber":{"shape":"E164PhoneNumber"}
+ }
+ },
+ "ParticipantPhoneNumberList":{
+ "type":"list",
+ "member":{"shape":"E164PhoneNumber"},
+ "max":2,
+ "min":2
+ },
+ "Participants":{
+ "type":"list",
+ "member":{"shape":"Participant"}
+ },
"PhoneNumber":{
"type":"structure",
"members":{
@@ -4664,11 +5025,59 @@
"max":65535,
"min":0
},
+ "PositiveInteger":{
+ "type":"integer",
+ "min":1
+ },
"ProfileServiceMaxResults":{
"type":"integer",
"max":200,
"min":1
},
+ "Proxy":{
+ "type":"structure",
+ "members":{
+ "DefaultSessionExpiryMinutes":{"shape":"Integer"},
+ "Disabled":{"shape":"Boolean"},
+ "FallBackPhoneNumber":{"shape":"E164PhoneNumber"},
+ "PhoneNumberCountries":{"shape":"StringList"}
+ }
+ },
+ "ProxySession":{
+ "type":"structure",
+ "members":{
+ "VoiceConnectorId":{"shape":"NonEmptyString128"},
+ "ProxySessionId":{"shape":"NonEmptyString128"},
+ "Name":{"shape":"String128"},
+ "Status":{"shape":"ProxySessionStatus"},
+ "ExpiryMinutes":{"shape":"PositiveInteger"},
+ "Capabilities":{"shape":"CapabilityList"},
+ "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
+ "UpdatedTimestamp":{"shape":"Iso8601Timestamp"},
+ "EndedTimestamp":{"shape":"Iso8601Timestamp"},
+ "Participants":{"shape":"Participants"},
+ "NumberSelectionBehavior":{"shape":"NumberSelectionBehavior"},
+ "GeoMatchLevel":{"shape":"GeoMatchLevel"},
+ "GeoMatchParams":{"shape":"GeoMatchParams"}
+ }
+ },
+ "ProxySessionNameString":{
+ "type":"string",
+ "pattern":"^$|^[a-zA-Z0-9 ]{0,30}$",
+ "sensitive":true
+ },
+ "ProxySessionStatus":{
+ "type":"string",
+ "enum":[
+ "Open",
+ "InProgress",
+ "Closed"
+ ]
+ },
+ "ProxySessions":{
+ "type":"list",
+ "member":{"shape":"ProxySession"}
+ },
"PutEventsConfigurationRequest":{
"type":"structure",
"required":[
@@ -4760,6 +5169,31 @@
}
}
},
+ "PutVoiceConnectorProxyRequest":{
+ "type":"structure",
+ "required":[
+ "DefaultSessionExpiryMinutes",
+ "PhoneNumberPoolCountries",
+ "VoiceConnectorId"
+ ],
+ "members":{
+ "VoiceConnectorId":{
+ "shape":"NonEmptyString128",
+ "location":"uri",
+ "locationName":"voiceConnectorId"
+ },
+ "DefaultSessionExpiryMinutes":{"shape":"Integer"},
+ "PhoneNumberPoolCountries":{"shape":"CountryList"},
+ "FallBackPhoneNumber":{"shape":"E164PhoneNumber"},
+ "Disabled":{"shape":"Boolean"}
+ }
+ },
+ "PutVoiceConnectorProxyResponse":{
+ "type":"structure",
+ "members":{
+ "Proxy":{"shape":"Proxy"}
+ }
+ },
"PutVoiceConnectorStreamingConfigurationRequest":{
"type":"structure",
"required":[
@@ -5117,6 +5551,10 @@
"documentation":"The streaming configuration associated with an Amazon Chime Voice Connector. Specifies whether media streaming is enabled for sending to Amazon Kinesis, and shows the retention period for the Amazon Kinesis data, in hours.
"
},
"String":{"type":"string"},
+ "String128":{
+ "type":"string",
+ "max":128
+ },
"StringList":{
"type":"list",
"member":{"shape":"String"}
@@ -5382,6 +5820,34 @@
}
}
},
+ "UpdateProxySessionRequest":{
+ "type":"structure",
+ "required":[
+ "Capabilities",
+ "VoiceConnectorId",
+ "ProxySessionId"
+ ],
+ "members":{
+ "VoiceConnectorId":{
+ "shape":"NonEmptyString128",
+ "location":"uri",
+ "locationName":"voiceConnectorId"
+ },
+ "ProxySessionId":{
+ "shape":"NonEmptyString128",
+ "location":"uri",
+ "locationName":"proxySessionId"
+ },
+ "Capabilities":{"shape":"CapabilityList"},
+ "ExpiryMinutes":{"shape":"PositiveInteger"}
+ }
+ },
+ "UpdateProxySessionResponse":{
+ "type":"structure",
+ "members":{
+ "ProxySession":{"shape":"ProxySession"}
+ }
+ },
"UpdateRoomMembershipRequest":{
"type":"structure",
"required":[
From f08e06fba5fb56284a612c1522cec58031d016d1 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Mon, 6 Apr 2020 18:07:13 +0000
Subject: [PATCH 022/604] AWS Identity and Access Management Update:
Documentation updates for AWS Identity and Access Management (IAM).
---
.../feature-AWSIdentityandAccessManagement-c8fc275.json | 5 +++++
.../src/main/resources/codegen-resources/service-2.json | 8 ++++----
2 files changed, 9 insertions(+), 4 deletions(-)
create mode 100644 .changes/next-release/feature-AWSIdentityandAccessManagement-c8fc275.json
diff --git a/.changes/next-release/feature-AWSIdentityandAccessManagement-c8fc275.json b/.changes/next-release/feature-AWSIdentityandAccessManagement-c8fc275.json
new file mode 100644
index 000000000000..10714d311bfd
--- /dev/null
+++ b/.changes/next-release/feature-AWSIdentityandAccessManagement-c8fc275.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "AWS Identity and Access Management",
+ "description": "Documentation updates for AWS Identity and Access Management (IAM)."
+}
diff --git a/services/iam/src/main/resources/codegen-resources/service-2.json b/services/iam/src/main/resources/codegen-resources/service-2.json
index 8f3e7215513a..72f461015b3a 100644
--- a/services/iam/src/main/resources/codegen-resources/service-2.json
+++ b/services/iam/src/main/resources/codegen-resources/service-2.json
@@ -849,7 +849,7 @@
{"shape":"NoSuchEntityException"},
{"shape":"InvalidInputException"}
],
- "documentation":"Generates a report that includes details about when an IAM resource (user, group, role, or policy) was last used in an attempt to access AWS services. Recent activity usually appears within four hours. IAM reports activity for the last 365 days, or less if your Region began supporting this feature within the last year. For more information, see Regions Where Data Is Tracked.
The service last accessed data includes all attempts to access an AWS API, not just the successful ones. This includes all attempts that were made using the AWS Management Console, the AWS API through any of the SDKs, or any of the command line tools. An unexpected entry in the service last accessed data does not mean that your account has been compromised, because the request might have been denied. Refer to your CloudTrail logs as the authoritative source for information about all API calls and whether they were successful or denied access. For more information, see Logging IAM Events with CloudTrail in the IAM User Guide.
The GenerateServiceLastAccessedDetails
operation returns a JobId
. Use this parameter in the following operations to retrieve the following details from your report:
-
GetServiceLastAccessedDetails – Use this operation for users, groups, roles, or policies to list every AWS service that the resource could access using permissions policies. For each service, the response includes information about the most recent access attempt.
-
GetServiceLastAccessedDetailsWithEntities – Use this operation for groups and policies to list information about the associated entities (users or roles) that attempted to access a specific AWS service.
To check the status of the GenerateServiceLastAccessedDetails
request, use the JobId
parameter in the same operations and test the JobStatus
response parameter.
For additional information about the permissions policies that allow an identity (user, group, or role) to access specific services, use the ListPoliciesGrantingServiceAccess operation.
Service last accessed data does not use other policy types when determining whether a resource could access a service. These other policy types include resource-based policies, access control lists, AWS Organizations policies, IAM permissions boundaries, and AWS STS assume role policies. It only applies permissions policy logic. For more about the evaluation of policy types, see Evaluating Policies in the IAM User Guide.
For more information about service last accessed data, see Reducing Policy Scope by Viewing User Activity in the IAM User Guide.
"
+ "documentation":"Generates a report that includes details about when an IAM resource (user, group, role, or policy) was last used in an attempt to access AWS services. Recent activity usually appears within four hours. IAM reports activity for the last 365 days, or less if your Region began supporting this feature within the last year. For more information, see Regions Where Data Is Tracked.
The service last accessed data includes all attempts to access an AWS API, not just the successful ones. This includes all attempts that were made using the AWS Management Console, the AWS API through any of the SDKs, or any of the command line tools. An unexpected entry in the service last accessed data does not mean that your account has been compromised, because the request might have been denied. Refer to your CloudTrail logs as the authoritative source for information about all API calls and whether they were successful or denied access. For more information, see Logging IAM Events with CloudTrail in the IAM User Guide.
The GenerateServiceLastAccessedDetails
operation returns a JobId
. Use this parameter in the following operations to retrieve the following details from your report:
-
GetServiceLastAccessedDetails – Use this operation for users, groups, roles, or policies to list every AWS service that the resource could access using permissions policies. For each service, the response includes information about the most recent access attempt.
The JobId
returned by GenerateServiceLastAccessedDetail
must be used by the same role within a session, or by the same user when used to call GetServiceLastAccessedDetail
.
-
GetServiceLastAccessedDetailsWithEntities – Use this operation for groups and policies to list information about the associated entities (users or roles) that attempted to access a specific AWS service.
To check the status of the GenerateServiceLastAccessedDetails
request, use the JobId
parameter in the same operations and test the JobStatus
response parameter.
For additional information about the permissions policies that allow an identity (user, group, or role) to access specific services, use the ListPoliciesGrantingServiceAccess operation.
Service last accessed data does not use other policy types when determining whether a resource could access a service. These other policy types include resource-based policies, access control lists, AWS Organizations policies, IAM permissions boundaries, and AWS STS assume role policies. It only applies permissions policy logic. For more about the evaluation of policy types, see Evaluating Policies in the IAM User Guide.
For more information about service last accessed data, see Reducing Policy Scope by Viewing User Activity in the IAM User Guide.
"
},
"GetAccessKeyLastUsed":{
"name":"GetAccessKeyLastUsed",
@@ -2598,7 +2598,7 @@
"documentation":"The data type of the value (or values) specified in the ContextKeyValues
parameter.
"
}
},
- "documentation":"Contains information about a condition context key. It includes the name of the key and specifies the value (or values, if the context key supports multiple values) to use in the simulation. This information is used when evaluating the Condition
elements of the input policies.
This data type is used as an input parameter to SimulateCustomPolicy
and SimulatePrincipalPolicy
.
"
+ "documentation":"Contains information about a condition context key. It includes the name of the key and specifies the value (or values, if the context key supports multiple values) to use in the simulation. This information is used when evaluating the Condition
elements of the input policies.
This data type is used as an input parameter to SimulateCustomPolicy and SimulatePrincipalPolicy.
"
},
"ContextEntryListType":{
"type":"list",
@@ -3717,7 +3717,7 @@
"members":{
"JobId":{
"shape":"jobIDType",
- "documentation":"The job ID that you can use in the GetServiceLastAccessedDetails or GetServiceLastAccessedDetailsWithEntities operations.
"
+ "documentation":"The JobId
that you can use in the GetServiceLastAccessedDetails or GetServiceLastAccessedDetailsWithEntities operations. The JobId
returned by GenerateServiceLastAccessedDetail
must be used by the same role within a session, or by the same user when used to call GetServiceLastAccessedDetail
.
"
}
}
},
@@ -4282,7 +4282,7 @@
"members":{
"JobId":{
"shape":"jobIDType",
- "documentation":"The ID of the request generated by the GenerateServiceLastAccessedDetails operation.
"
+ "documentation":"The ID of the request generated by the GenerateServiceLastAccessedDetails operation. The JobId
returned by GenerateServiceLastAccessedDetail
must be used by the same role within a session, or by the same user when used to call GetServiceLastAccessedDetail
.
"
},
"MaxItems":{
"shape":"maxItemsType",
From fff8d2ad5ed55484f0725a1afb28820a891c476a Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Mon, 6 Apr 2020 18:08:06 +0000
Subject: [PATCH 023/604] Updated endpoints.json.
---
.../feature-AWSSDKforJavav2-e97801d.json | 5 ++
.../regions/internal/region/endpoints.json | 77 +++++++++++++++++++
2 files changed, 82 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 fe1c1dae25bf..588d2d418ed6 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
@@ -1017,6 +1017,36 @@
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
+ "fips-ca-central-1" : {
+ "credentialScope" : {
+ "region" : "ca-central-1"
+ },
+ "hostname" : "codepipeline-fips.ca-central-1.amazonaws.com"
+ },
+ "fips-us-east-1" : {
+ "credentialScope" : {
+ "region" : "us-east-1"
+ },
+ "hostname" : "codepipeline-fips.us-east-1.amazonaws.com"
+ },
+ "fips-us-east-2" : {
+ "credentialScope" : {
+ "region" : "us-east-2"
+ },
+ "hostname" : "codepipeline-fips.us-east-2.amazonaws.com"
+ },
+ "fips-us-west-1" : {
+ "credentialScope" : {
+ "region" : "us-west-1"
+ },
+ "hostname" : "codepipeline-fips.us-west-1.amazonaws.com"
+ },
+ "fips-us-west-2" : {
+ "credentialScope" : {
+ "region" : "us-west-2"
+ },
+ "hostname" : "codepipeline-fips.us-west-2.amazonaws.com"
+ },
"sa-east-1" : { },
"us-east-1" : { },
"us-east-2" : { },
@@ -1630,6 +1660,30 @@
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
+ "fips-us-east-1" : {
+ "credentialScope" : {
+ "region" : "us-east-1"
+ },
+ "hostname" : "ecs-fips.us-east-1.amazonaws.com"
+ },
+ "fips-us-east-2" : {
+ "credentialScope" : {
+ "region" : "us-east-2"
+ },
+ "hostname" : "ecs-fips.us-east-2.amazonaws.com"
+ },
+ "fips-us-west-1" : {
+ "credentialScope" : {
+ "region" : "us-west-1"
+ },
+ "hostname" : "ecs-fips.us-west-1.amazonaws.com"
+ },
+ "madison-fips-us-west-2" : {
+ "credentialScope" : {
+ "region" : "us-west-2"
+ },
+ "hostname" : "ecs-fips.us-west-2.amazonaws.com"
+ },
"me-south-1" : { },
"sa-east-1" : { },
"us-east-1" : { },
@@ -6060,6 +6114,17 @@
}
}
},
+ "codepipeline" : {
+ "endpoints" : {
+ "fips-us-gov-west-1" : {
+ "credentialScope" : {
+ "region" : "us-gov-west-1"
+ },
+ "hostname" : "codepipeline-fips.us-gov-west-1.amazonaws.com"
+ },
+ "us-gov-west-1" : { }
+ }
+ },
"comprehend" : {
"defaults" : {
"protocols" : [ "https" ]
@@ -6164,6 +6229,18 @@
},
"ecs" : {
"endpoints" : {
+ "fips-us-gov-east-1" : {
+ "credentialScope" : {
+ "region" : "us-gov-east-1"
+ },
+ "hostname" : "ecs-fips.us-gov-east-1.amazonaws.com"
+ },
+ "fips-us-gov-west-1" : {
+ "credentialScope" : {
+ "region" : "us-gov-west-1"
+ },
+ "hostname" : "ecs-fips.us-gov-west-1.amazonaws.com"
+ },
"us-gov-east-1" : { },
"us-gov-west-1" : { }
}
From f53ede6b3beb502e71ddc34ca8344705f64513b2 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Mon, 6 Apr 2020 18:08:38 +0000
Subject: [PATCH 024/604] Release 2.11.10. Updated CHANGELOG.md, README.md and
all pom.xml.
---
.changes/2.11.10.json | 31 +++++++++++++++++++
.../feature-AWSElasticBeanstalk-88bc7d2.json | 5 ---
...WSIdentityandAccessManagement-c8fc275.json | 5 ---
.../feature-AWSSDKforJavav2-e97801d.json | 5 ---
.../feature-AmazonChime-36bc313.json | 5 ---
...ature-AmazonTranscribeService-ebae813.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/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/netty-nio-client/pom.xml | 2 +-
http-clients/pom.xml | 2 +-
http-clients/url-connection-client/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/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/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/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/iam/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/iotthingsgraph/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/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/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/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/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/textract/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 +-
270 files changed, 315 insertions(+), 294 deletions(-)
create mode 100644 .changes/2.11.10.json
delete mode 100644 .changes/next-release/feature-AWSElasticBeanstalk-88bc7d2.json
delete mode 100644 .changes/next-release/feature-AWSIdentityandAccessManagement-c8fc275.json
delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-e97801d.json
delete mode 100644 .changes/next-release/feature-AmazonChime-36bc313.json
delete mode 100644 .changes/next-release/feature-AmazonTranscribeService-ebae813.json
diff --git a/.changes/2.11.10.json b/.changes/2.11.10.json
new file mode 100644
index 000000000000..50678182d3f0
--- /dev/null
+++ b/.changes/2.11.10.json
@@ -0,0 +1,31 @@
+{
+ "version": "2.11.10",
+ "date": "2020-04-06",
+ "entries": [
+ {
+ "type": "feature",
+ "category": "Amazon Chime",
+ "description": "Amazon Chime proxy phone sessions let you provide two users with a shared phone number to communicate via voice or text for up to 12 hours without revealing personal phone numbers. When users call or message the provided phone number, they are connected to the other party and their private phone numbers are replaced with the shared number in Caller ID."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Transcribe Service",
+ "description": "This release adds support for batch transcription jobs within Amazon Transcribe Medical."
+ },
+ {
+ "type": "feature",
+ "category": "AWS SDK for Java v2",
+ "description": "Updated service endpoint metadata."
+ },
+ {
+ "type": "feature",
+ "category": "AWS Elastic Beanstalk",
+ "description": "This release adds a new action, ListPlatformBranches, and updates two actions, ListPlatformVersions and DescribePlatformVersion, to support the concept of Elastic Beanstalk platform branches."
+ },
+ {
+ "type": "feature",
+ "category": "AWS Identity and Access Management",
+ "description": "Documentation updates for AWS Identity and Access Management (IAM)."
+ }
+ ]
+}
\ No newline at end of file
diff --git a/.changes/next-release/feature-AWSElasticBeanstalk-88bc7d2.json b/.changes/next-release/feature-AWSElasticBeanstalk-88bc7d2.json
deleted file mode 100644
index 2fa8c45d29e9..000000000000
--- a/.changes/next-release/feature-AWSElasticBeanstalk-88bc7d2.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Elastic Beanstalk",
- "description": "This release adds a new action, ListPlatformBranches, and updates two actions, ListPlatformVersions and DescribePlatformVersion, to support the concept of Elastic Beanstalk platform branches."
-}
diff --git a/.changes/next-release/feature-AWSIdentityandAccessManagement-c8fc275.json b/.changes/next-release/feature-AWSIdentityandAccessManagement-c8fc275.json
deleted file mode 100644
index 10714d311bfd..000000000000
--- a/.changes/next-release/feature-AWSIdentityandAccessManagement-c8fc275.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Identity and Access Management",
- "description": "Documentation updates for AWS Identity and Access Management (IAM)."
-}
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-AmazonChime-36bc313.json b/.changes/next-release/feature-AmazonChime-36bc313.json
deleted file mode 100644
index 6d6ac1109fe9..000000000000
--- a/.changes/next-release/feature-AmazonChime-36bc313.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Chime",
- "description": "Amazon Chime proxy phone sessions let you provide two users with a shared phone number to communicate via voice or text for up to 12 hours without revealing personal phone numbers. When users call or message the provided phone number, they are connected to the other party and their private phone numbers are replaced with the shared number in Caller ID."
-}
diff --git a/.changes/next-release/feature-AmazonTranscribeService-ebae813.json b/.changes/next-release/feature-AmazonTranscribeService-ebae813.json
deleted file mode 100644
index cc253bac397d..000000000000
--- a/.changes/next-release/feature-AmazonTranscribeService-ebae813.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Transcribe Service",
- "description": "This release adds support for batch transcription jobs within Amazon Transcribe Medical."
-}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b116c3058985..df7488d9566e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,23 @@
-# __2.11.10__
+# __2.11.10__ __2020-04-06__
+## __AWS Elastic Beanstalk__
+ - ### Features
+ - This release adds a new action, ListPlatformBranches, and updates two actions, ListPlatformVersions and DescribePlatformVersion, to support the concept of Elastic Beanstalk platform branches.
-## __Amazon DynamoDB Enhanced Client [Preview]__
+## __AWS Identity and Access Management__
+ - ### Features
+ - Documentation updates for AWS Identity and Access Management (IAM).
+
+## __AWS SDK for Java v2__
+ - ### Features
+ - Updated service endpoint metadata.
+
+## __Amazon Chime__
+ - ### Features
+ - Amazon Chime proxy phone sessions let you provide two users with a shared phone number to communicate via voice or text for up to 12 hours without revealing personal phone numbers. When users call or message the provided phone number, they are connected to the other party and their private phone numbers are replaced with the shared number in Caller ID.
+
+## __Amazon Transcribe Service__
- ### Features
- - The enhanced DDB query and scan request now supports projections.
+ - This release adds support for batch transcription jobs within Amazon Transcribe Medical.
# __2.11.9__ __2020-04-03__
## __AWS RoboMaker__
diff --git a/README.md b/README.md
index ce441d93e9f6..9e2b5c9292bd 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.11.9
+ 2.11.10
pom
import
@@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only:
software.amazon.awssdk
ec2
- 2.11.9
+ 2.11.10
software.amazon.awssdk
s3
- 2.11.9
+ 2.11.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.11.9
+ 2.11.10
```
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index 50270073b50e..ed11920bd2c9 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
archetype-lambda
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index 78f2fe5e460f..2f3d2488732e 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index 79def6a3de16..17f93342fb61 100644
--- a/aws-sdk-java/pom.xml
+++ b/aws-sdk-java/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10-SNAPSHOT
+ 2.11.10
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index e8e90e5593e0..a09268fa40f3 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index b30a8ccd0303..cfd8e7d06f4d 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10-SNAPSHOT
+ 2.11.10
../pom.xml
bom
diff --git a/bundle/pom.xml b/bundle/pom.xml
index 1d9c6192d149..c98a815be462 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10-SNAPSHOT
+ 2.11.10
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 24665f825316..4f6dc84d22a1 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.11.10-SNAPSHOT
+ 2.11.10
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index d4c022ca609f..191a8fa86bda 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10-SNAPSHOT
+ 2.11.10
codegen-lite
AWS Java SDK :: Code Generator Lite
diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml
index ab45ce3dd0a3..96715a4019dc 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.11.10-SNAPSHOT
+ 2.11.10
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index 72967530fb39..d8fa52e5b865 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10-SNAPSHOT
+ 2.11.10
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index 6b15a291832f..26f682b391f3 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index a80b4d4f4bf6..c3c652fc263c 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index da5e025f22ae..d486ca81916a 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.10-SNAPSHOT
+ 2.11.10
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index 75d3e04fbf17..fb59fb232aa3 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.10-SNAPSHOT
+ 2.11.10
aws-core
diff --git a/core/pom.xml b/core/pom.xml
index 326e79c699da..06056a42f1c6 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index cc5fadd34ba6..6c999caeca15 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.10-SNAPSHOT
+ 2.11.10
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index b6a6096377e9..30a87f4694bc 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.11.10-SNAPSHOT
+ 2.11.10
4.0.0
diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml
index c48578f07ca6..622057a43d7f 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.11.10-SNAPSHOT
+ 2.11.10
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index 3f9cb9787c86..dca570c11ff4 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.11.10-SNAPSHOT
+ 2.11.10
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index 15a799121d38..b0e1f7746c2e 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.11.10-SNAPSHOT
+ 2.11.10
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index 2516c6dd9736..3e0a6abaa9d5 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.11.10-SNAPSHOT
+ 2.11.10
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index 296422c5e4af..0cd182b68b61 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index 2ac5423ed18d..b436c3ef8f60 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index da9834bd5088..6424ef65432c 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.10-SNAPSHOT
+ 2.11.10
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index 2dcc0737b3b4..a6e53d691a75 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.11.10-SNAPSHOT
+ 2.11.10
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index 409c565627c3..1201924bce7f 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.11.10-SNAPSHOT
+ 2.11.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 ed0ebc76a300..256aa6911f48 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.11.10-SNAPSHOT
+ 2.11.10
apache-client
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index cb80c3770dd8..46e7dff88890 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.11.10-SNAPSHOT
+ 2.11.10
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index 0d2f89c3ae26..217771ea34ce 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index a0f468bc1bf0..6703cd7b20e6 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.11.10-SNAPSHOT
+ 2.11.10
4.0.0
diff --git a/pom.xml b/pom.xml
index d12d6c726f7c..e26061d2698d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10-SNAPSHOT
+ 2.11.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 6241090db9bd..f9b1563f7cdf 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10-SNAPSHOT
+ 2.11.10
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index 27ec0ac7b462..9c6e0ae46b75 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.11.10-SNAPSHOT
+ 2.11.10
dynamodb-enhanced
${awsjavasdk.version}-PREVIEW
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index 4daefc5f92a9..db9ea12992b8 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10-SNAPSHOT
+ 2.11.10
services-custom
AWS Java SDK :: Custom Services
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index faa98a22baa5..c41b9a6490e8 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 757c043f6d21..2f2326c28d3d 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index 72b062d912da..714b6f0f5c2a 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml
index defd1cd8dd56..2e11c198bb9c 100644
--- a/services/alexaforbusiness/pom.xml
+++ b/services/alexaforbusiness/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
alexaforbusiness
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index 20492fb2d9fa..1adfcbc4f7bd 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index 06e8b5e60545..52f5fa8c393f 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index d4df0486ca5d..9e817f544313 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index 7534a83f133c..ccaf6fbe329d 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index 18ed47e82ddb..f3b9a03e893e 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index 72feb9c83449..f70a95a092a8 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index f40272afd7d1..7aaaeb4b121c 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index 58efcdbf5d55..f5489e447d54 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index f15d51a21183..9398f5731adb 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index b8905318db54..2494ed526dbe 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index efa737a2b77c..ab1c95f1982e 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
appsync
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index c08e7758bb9f..9b112ad0c634 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index eb4314e83066..9cd91120a0a8 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index a00490ec5ba2..5fe638de49f5 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index 075d86b66130..fc12399d22a5 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index 59a261ad31bb..48d35de99662 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index d2cf7713001b..0906dede2133 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index 69cc02c3b6a9..78d8acdcec95 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index 3982c2eeb77a..c3a7a98a342e 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
cloud9
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index b06ac7dd7d1a..2a349289708a 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 145790019161..8209aaf65562 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index 2ff5ea9890a6..81037dac4591 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index 7fa1b05c3f23..99adff76575c 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index 66bdde61f39c..a05eae40d352 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index e144e2313d63..7d0981d791a0 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index 1c928a5ee753..8f84181e9794 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index e3bea42b3a6c..aaa454f8216c 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index 4ec50f285278..34e5272eb112 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index c1ae3af1e770..3279e2e6dabc 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index 4aafc9109b6c..6128b3e0523c 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index 79beaa741434..466543dc77d8 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index a7b4075a3a00..463405d38917 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index a44fdd0ff6d3..b275084e8edc 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index b3a99bdf27b4..2a68748595c5 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index 9393b68145d2..f6f3b76519be 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index b7052d945d47..a387295600fa 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index c187c73d601c..f4e942f00eb8 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index 818136916137..eabc84d7a9ff 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index 2cfd650f2f30..337d50c24ed3 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index 9a3e4e1aa85e..e8acfa11e771 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index 394a39f2f4cd..44fc0e63b85b 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
cognitoidentityprovider
AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service
diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml
index e3fa3f851596..70cb96ce6af0 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index a903a45b8af3..45ca0366c6fe 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index c909534dffb4..d7df4de36c98 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index 9c48b000da3f..4af2fccecc8c 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index af72642f63d9..4e738e472fd7 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index e99bedac6bfa..ae3a3d6e7522 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index 9dbe7373c838..a37abb4dd760 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index e15c7df2ff0c..6577cddb44bd 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
costandusagereport
AWS Java SDK :: Services :: AWS Cost and Usage Report
diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml
index c332be54c011..a62420ae4996 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
costexplorer
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index 24a94ee505f9..eb2b2a6912e7 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index b9b9a54777fc..f3922cb43aa0 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index 93b693b78a06..671a7edadf24 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index 21e15b9d26bc..c3df4d57dce2 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index bd151e76b09a..7c618370a59e 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index da912f928128..f755ba5adac0 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index 6bbfb395de29..3c2cb1085b63 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index 69dfbe98a5f7..b5433675f2d1 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index 79a1056ae364..d1e49fe739bc 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index e1de330889de..e48508c16750 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index 133dbeac4773..c485a17778bc 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index e26e5e711843..2fab690f2ce5 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index 5c0ac453f2c5..505fa2d21a11 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 59ad1d9675f1..992e8877e7af 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index 53d04c73066f..1f916894a761 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index 17fd313458cd..83868b52f9fe 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index a5013a4b7752..843578ea300b 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index 49bdeb80e4e0..a4f20470039d 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index a341e9553c5e..32026ab734f5 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index 0f0b21a502af..c18ec9f98ce3 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index dd71ecf636ca..f5ace79f9f9f 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index 075afbc94322..35d2329f1c9a 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index 2ba6f649483f..d300fe4da6f7 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index 19ad502a0178..bddeedfb544d 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index 31d00eec700f..9f7ebc18584c 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index d88d427398ed..2fd3cc5bf89f 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index 1f9fe8e23e98..47112702ad56 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index 39f208f64917..e74b2369b27a 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index aae0a4329ad3..fdfb465fedb1 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index 32576b10b061..23b4402d84b9 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index 4cd57999df3f..5f6b25a68d9f 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index dd0d607f2263..579e4e04c3bf 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index f399a015f441..dbc0780e133e 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index 8bd70a323ce9..82782a5b1faf 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index 6f55d2b01e9a..e9ddc8aaf236 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index a692e3e4b17b..fa803c0264cf 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index ba2ad8a741c8..76a600449593 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index 1c7e9b65fa2a..90943cd0e5d5 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
glue
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index 936022a7a96c..b7b8fd1e1111 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index 06416c22bde4..74ea95e20f08 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index f1a45862ccf0..8e46802c2671 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index e6bad89b0a82..8af32e9d12bc 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index b365e539e69d..df9aee9f6d20 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index d60b51d838ba..247f2eacdd1a 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 3b932073ee2a..87c9ce7f5b36 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index f811e0e9f278..a89ed7f8e1bb 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index 0f3c2916af8e..5ffef9163f4f 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index 8cb01636c612..2ec757bd4a37 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index 8f5287854888..d018e7097869 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index 226776806b0c..0dc8b64dcbca 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index 35b45c5f604a..507b7a24462f 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 3d51898c0354..6d3f8f99a02c 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 9b690037da34..fec1a0889e7a 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index 530c97b626e0..b35c22a031c1 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index 7160a4b43c40..79e5675d0d69 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index 6444aeeab472..b3c6837a258a 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 54dd584e7429..590b87f5d0d5 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index 785cfe3c60a9..781b6e140ff8 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index 963de55ecc31..545327350039 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index e0a8e51aeb0f..e2eeb60ca89c 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index af3b10c368c2..da8b336c9cf1 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index cda160295f83..0ba89757dce0 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index 90137027d098..f8e0a06e7f77 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index 77604e4aa9fd..b899bc3e955c 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index e843dc6aa362..d0a1247995f9 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index be5a8447dc31..8d31280d0c21 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index a7fa7258ad63..6259b9a7cc7f 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index 1754197c29dd..a8b220e38d3e 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index 6cf502986973..37182aa33e3d 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index 85774856f337..20b2a0275aa6 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index 8ba91d353e3b..8f07e353a7a1 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index 4374d18ad10f..27e53bcba3f5 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie/pom.xml b/services/macie/pom.xml
index 40b0e9707001..68276c10a66e 100644
--- a/services/macie/pom.xml
+++ b/services/macie/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
macie
AWS Java SDK :: Services :: Macie
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index 8b41a044a9ac..7c6c6fcbcd1c 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index 9b2c22ed05f9..cba6c1e87fac 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 09e078daa7d4..69ac6f6e7bf2 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index fc7c14361adf..acca87c7c1ef 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index 89c1d79d98b7..179fa24faf6f 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 6a5d1c700041..14040a667d07 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index d666d00e9a21..3961e04f25c5 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 1fb1086ee64f..6ffdf6dff398 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index 7c08008a2660..5278a6ff3af7 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
mediapackage
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 4cc7e11aa168..c95652b4070f 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index 6b859a91a355..4f9cb410ccf9 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index 292ffd55017e..a8341622d39a 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 11baafab98d6..578d8155de5e 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index 22c39c7eafcc..86017baa2571 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index 8a4734ee65dd..1949e0ee66ef 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index 737f85adcbd1..f083f7e3f685 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index ff044299be81..07cb761b6049 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index 3e26e203d187..a773c91111b2 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index 1fff7732106c..c7befe9c7d93 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index e2f4942f9e00..93a7b40b164c 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index 6924426c38fb..df44206343a8 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index 4f9e71526250..bf9dc70946c2 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
opsworkscm
AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate
diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml
index 6863ff8f9900..9087d48281e3 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index bae414597186..22dfcb90c219 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index cad9b0851971..d621074c400a 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index 9ff861177cfd..b2cc4657e4c6 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 9b0ae28d40dc..613ffb1336eb 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 410f96fe9a01..6a7f1d53c9ae 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index d212359a11a8..c4f67a4ec521 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index 0b92facebd68..73d8bb7667e3 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index a74be46c06c9..9ec0a0fbfc2c 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index 3dc51ec84ec1..16ca38810606 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index 94960ede92d5..d476d91f99f2 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10-SNAPSHOT
+ 2.11.10
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index 9ba92d678651..25316f1f6203 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
pricing
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index 7ac92cd3bd91..467a6cb66974 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index fb5a070641a6..9ebe9ae92f2e 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index c4612f81be06..52121ebbdcef 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index 9c044f6b8f4d..8a4df917dd95 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 3e613981c7c6..16bedff4c9a5 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index 81b8a6e4ca39..08ef273f0f61 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index bec62d599b95..daf028d15306 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index 64c4129a8adf..cbd51cc2a332 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index cf47aa2ca750..265ef43137be 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index 793d007e4f63..efb0ee25a537 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
resourcegroupstaggingapi
AWS Java SDK :: Services :: AWS Resource Groups Tagging API
diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml
index ec84fc40efb9..d669fce00ad5 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index c929540d8d50..23bda98920d9 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index dddb70641b85..8bfeee9216f9 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index 100d1de6beb0..8539bf0f2a45 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index 0a87e42929c3..7e88a5028e7c 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index b79d6f40dfaf..d08b1863f417 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index a284a89d3ed2..ad78e153d514 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 45664e7137bd..534ed5da2941 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index 7434a5023fcb..4023641e6774 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index c0f5f734a216..89dc7ee94076 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index 2faebd97f193..db6b09ae6174 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index 984f758a4823..5c25d398d0a5 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index 87b3be27cba2..fd52758c74f9 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index d2e1a756cebb..0f1b659fe633 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 1c8928d72134..9f7a45c50692 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index 984b448a5712..8bd9c48c5b19 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index a9ba95393b8b..95e14454f55a 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index 7fbd577e63e5..550c010ac5e7 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index bbba54bb7682..3ed41fdf7e77 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index 1b62b29c108b..7294e83c014b 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index b2adea6f4b1a..d034af9a2a1c 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index b6629ef71af3..856c93b7e0d1 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index 02acb341c2f0..0ce8b86e940f 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index 362ed6ba9189..e841ff9c8192 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 52bc4aadc0d5..d6cfcd236b26 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index c25d519df298..7a1500a52185 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index 473c9bdc78e6..a28dbc8cc9be 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
ssm
AWS Java SDK :: Services :: AWS Simple Systems Management (SSM)
diff --git a/services/sso/pom.xml b/services/sso/pom.xml
index 50f06b929ab0..cef362de2fd6 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index 16d90548b1ce..26ba26daea0a 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index f779a05dcb7d..870938005efa 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index cbacffa52c91..73d7f74fe838 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/support/pom.xml b/services/support/pom.xml
index 1cf5ae66b405..67f14050c4e9 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 055c73aec139..482cf3b30eab 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index 2cd5ddd25f0c..ef097ae43ddc 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index 39f810f6b82b..2a5383c4bd9f 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index 9285d174b1cb..5cf864820ceb 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index abe5aede6f2a..e4806a5de683 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index 421e17573bb5..6fd200e9bcf9 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
translate
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index 5cc748709a1b..828a059e58fc 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index 2d21275ecdd3..1d23b9f2a88b 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index b83befa7e98c..018fa8003be6 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index af40b30cd7c0..7ff4b035a1f4 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index 99089b72f166..4e7463e7c156 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index cfc39b8b39fe..82d32fe1b7a1 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 49abc3d05634..ab07306e7598 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.10
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index e65c0bfa5f71..0b56785e408c 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10-SNAPSHOT
+ 2.11.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 9554f61549c0..f75dce970464 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.11.10-SNAPSHOT
+ 2.11.10
../../pom.xml
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index 77fc2c57c793..db37623a3b0f 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.11.10-SNAPSHOT
+ 2.11.10
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index 3bad6666a0be..22265e3d1e68 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.11.10-SNAPSHOT
+ 2.11.10
../../pom.xml
4.0.0
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index 81100e2d1bb1..aca99fb7d9e8 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.11.10-SNAPSHOT
+ 2.11.10
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 5565df2c3f56..0ba3e3391e04 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.11.10-SNAPSHOT
+ 2.11.10
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index b5f936edfb46..25b6e36b45a6 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.11.10-SNAPSHOT
+ 2.11.10
../../pom.xml
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index 7144f38f242b..68fd82736ff2 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.11.10-SNAPSHOT
+ 2.11.10
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index c3f03f8bdd51..82dbdeaf731a 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.11.10-SNAPSHOT
+ 2.11.10
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index 2b9ec776a132..498cab591647 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.11.10-SNAPSHOT
+ 2.11.10
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index 825e5215f426..93316493b4f2 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.11.10-SNAPSHOT
+ 2.11.10
../../pom.xml
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index a58e4ebeadd7..1fbef0d27ff5 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.10-SNAPSHOT
+ 2.11.10
4.0.0
From e7b0a260ddea6a8d24a6358f77873b9cd7633c96 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Mon, 6 Apr 2020 18:33:38 +0000
Subject: [PATCH 025/604] Update to next snapshot version: 2.11.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/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/netty-nio-client/pom.xml | 2 +-
http-clients/pom.xml | 2 +-
http-clients/url-connection-client/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/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/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/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/iam/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/iotthingsgraph/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/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/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/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/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/textract/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 +-
262 files changed, 262 insertions(+), 262 deletions(-)
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index ed11920bd2c9..2c1ae9ec3386 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
archetype-lambda
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index 2f3d2488732e..ee24ad5015a2 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index 17f93342fb61..8e81b408e560 100644
--- a/aws-sdk-java/pom.xml
+++ b/aws-sdk-java/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10
+ 2.11.11-SNAPSHOT
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index a09268fa40f3..de2e7482de56 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index cfd8e7d06f4d..802c12f77a54 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10
+ 2.11.11-SNAPSHOT
../pom.xml
bom
diff --git a/bundle/pom.xml b/bundle/pom.xml
index c98a815be462..e296c0d7d430 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10
+ 2.11.11-SNAPSHOT
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 4f6dc84d22a1..1753a42488e9 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.11.10
+ 2.11.11-SNAPSHOT
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index 191a8fa86bda..51ad008b64fa 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10
+ 2.11.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 96715a4019dc..9d4f2fbf7df1 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.11.10
+ 2.11.11-SNAPSHOT
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index d8fa52e5b865..ce9bfc41a329 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10
+ 2.11.11-SNAPSHOT
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index 26f682b391f3..766265149d3e 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index c3c652fc263c..a5ac87116556 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index d486ca81916a..68b32ffba653 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.10
+ 2.11.11-SNAPSHOT
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index fb59fb232aa3..685d3c82acae 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.10
+ 2.11.11-SNAPSHOT
aws-core
diff --git a/core/pom.xml b/core/pom.xml
index 06056a42f1c6..76937f1056f7 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index 6c999caeca15..761b6cb4f795 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.10
+ 2.11.11-SNAPSHOT
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index 30a87f4694bc..6d5516373359 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.11.10
+ 2.11.11-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml
index 622057a43d7f..8729e5f9926e 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.11.10
+ 2.11.11-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index dca570c11ff4..9259991fc8e5 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.11.10
+ 2.11.11-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index b0e1f7746c2e..69859ac50631 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.11.10
+ 2.11.11-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index 3e0a6abaa9d5..c6a1d6ed173e 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.11.10
+ 2.11.11-SNAPSHOT
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index 0cd182b68b61..d6503ec7f5bb 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index b436c3ef8f60..22f94bb7f10e 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index 6424ef65432c..a612a5787e65 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.10
+ 2.11.11-SNAPSHOT
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index a6e53d691a75..a32d9f540118 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.11.10
+ 2.11.11-SNAPSHOT
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index 1201924bce7f..6eba45c546d3 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.11.10
+ 2.11.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 256aa6911f48..27fed3e58a9d 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.11.10
+ 2.11.11-SNAPSHOT
apache-client
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index 46e7dff88890..5bd9219f8180 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.11.10
+ 2.11.11-SNAPSHOT
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index 217771ea34ce..5d8feff7ee5c 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index 6703cd7b20e6..29e24421244d 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.11.10
+ 2.11.11-SNAPSHOT
4.0.0
diff --git a/pom.xml b/pom.xml
index e26061d2698d..0918b075d433 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10
+ 2.11.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 f9b1563f7cdf..e310c8635672 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10
+ 2.11.11-SNAPSHOT
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index 9c6e0ae46b75..d75400653edf 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.11.10
+ 2.11.11-SNAPSHOT
dynamodb-enhanced
${awsjavasdk.version}-PREVIEW
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index db9ea12992b8..5023e04a0a32 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10
+ 2.11.11-SNAPSHOT
services-custom
AWS Java SDK :: Custom Services
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index c41b9a6490e8..7ff358a2707b 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 2f2326c28d3d..8ea89dc77cdb 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index 714b6f0f5c2a..2e955fe7ea33 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml
index 2e11c198bb9c..ce2f7f99a748 100644
--- a/services/alexaforbusiness/pom.xml
+++ b/services/alexaforbusiness/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
alexaforbusiness
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index 1adfcbc4f7bd..470ced14d99f 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index 52f5fa8c393f..44c9bbcee632 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index 9e817f544313..d2f75652f761 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index ccaf6fbe329d..096013b84e7e 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index f3b9a03e893e..709101112f92 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index f70a95a092a8..78075fe398f9 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 7aaaeb4b121c..16723804173b 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index f5489e447d54..57e3694ad293 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index 9398f5731adb..3b63e1c7277f 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index 2494ed526dbe..692531bf1a49 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index ab1c95f1982e..23054dc894b1 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
appsync
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index 9b112ad0c634..41ed86229b1c 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index 9cd91120a0a8..db3899ece03c 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index 5fe638de49f5..9862286601ae 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index fc12399d22a5..d1ee4426bdb7 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index 48d35de99662..c834397c3067 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 0906dede2133..2594b977f75b 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index 78d8acdcec95..275397bf6972 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index c3a7a98a342e..16ceec5b156b 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
cloud9
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index 2a349289708a..bc92d0b8eb98 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 8209aaf65562..02251aa29e18 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index 81037dac4591..cd7b4d521117 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index 99adff76575c..b80214c4b209 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index a05eae40d352..67b75ee9f13e 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index 7d0981d791a0..8f1948a81ec0 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index 8f84181e9794..c09ee8262979 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index aaa454f8216c..5bfa2203f84a 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index 34e5272eb112..2d93ca214eed 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index 3279e2e6dabc..0fc6a2db4793 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index 6128b3e0523c..69d5293abba4 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index 466543dc77d8..3ea27e6b487d 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index 463405d38917..17c3fad5b37b 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index b275084e8edc..6a5c0b2d0894 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index 2a68748595c5..48a8996d8678 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index f6f3b76519be..e8670eb19d16 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index a387295600fa..2b7ee9e77d72 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index f4e942f00eb8..62d2f044d933 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index eabc84d7a9ff..29a307420092 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index 337d50c24ed3..e01d3e05fe43 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index e8acfa11e771..26c1f2610456 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index 44fc0e63b85b..15219874fa63 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.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 70cb96ce6af0..adc977c412ea 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index 45ca0366c6fe..c154eee2a385 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index d7df4de36c98..f64ffe7ba1fe 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index 4af2fccecc8c..b554c2a301fa 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index 4e738e472fd7..e54dc8f3de0b 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index ae3a3d6e7522..d550b02304a8 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index a37abb4dd760..394c9a6b5920 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index 6577cddb44bd..94c13f548847 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.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 a62420ae4996..97d5938a4935 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
costexplorer
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index eb2b2a6912e7..90105be65d51 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index f3922cb43aa0..e3da8df20119 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index 671a7edadf24..d938d2b8bafc 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index c3df4d57dce2..8bef850798a3 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index 7c618370a59e..dcb6eaf33a08 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index f755ba5adac0..137efa310b5a 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index 3c2cb1085b63..1ad27993c657 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index b5433675f2d1..fec83a647860 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index d1e49fe739bc..4b32f55d8906 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index e48508c16750..9efbf4263175 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index c485a17778bc..c390878d28f1 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index 2fab690f2ce5..dab012297e0b 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index 505fa2d21a11..9eeea8eb845e 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 992e8877e7af..8e0f2b40cdeb 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index 1f916894a761..8f3663321865 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index 83868b52f9fe..ecfa8df1fa34 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index 843578ea300b..2eb647ff90e4 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index a4f20470039d..f4751f9c38b3 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index 32026ab734f5..5e2499dc19f4 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index c18ec9f98ce3..e3f95fe19a52 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index f5ace79f9f9f..68b6b53f7f3e 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index 35d2329f1c9a..bdd62bf08df7 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index d300fe4da6f7..7c1a2e48e8f3 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index bddeedfb544d..f7429b5ec9c1 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index 9f7ebc18584c..907ec183518c 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 2fd3cc5bf89f..868395fc4bb2 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index 47112702ad56..0cf120ae7515 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index e74b2369b27a..e8a6e7c6960c 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index fdfb465fedb1..653075382d26 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index 23b4402d84b9..a77c2d793e53 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index 5f6b25a68d9f..dab7093a12fd 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index 579e4e04c3bf..c2dc3af6fcb7 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index dbc0780e133e..deef8b7a8091 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index 82782a5b1faf..f5b0efa39fe6 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index e9ddc8aaf236..4144273803ae 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index fa803c0264cf..dd271281198f 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index 76a600449593..ca909d828867 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index 90943cd0e5d5..81c8e4f310cf 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
glue
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index b7b8fd1e1111..321f708123f5 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index 74ea95e20f08..d26effe07cfb 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index 8e46802c2671..a3e2afcf2550 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index 8af32e9d12bc..280eeae08f10 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index df9aee9f6d20..bca67f56a1a9 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index 247f2eacdd1a..c2cca5622dca 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 87c9ce7f5b36..d57dac811c12 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index a89ed7f8e1bb..f12957db4f3e 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index 5ffef9163f4f..df19ca5503e2 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index 2ec757bd4a37..2d5bd2f1f038 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index d018e7097869..ae3748212fdf 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index 0dc8b64dcbca..0ab2f4dd2a63 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index 507b7a24462f..119757afbddb 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 6d3f8f99a02c..4148d0f632cf 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index fec1a0889e7a..5cb7e33ce208 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index b35c22a031c1..820a94a68837 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index 79e5675d0d69..ee66329865b6 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index b3c6837a258a..a602274c9465 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 590b87f5d0d5..d292db3ac245 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index 781b6e140ff8..128190b57ade 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index 545327350039..dbcecdff3643 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index e2eeb60ca89c..615ecac82f1f 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index da8b336c9cf1..5b7144ef96b9 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index 0ba89757dce0..c5cf835657f9 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index f8e0a06e7f77..6fc7b27de560 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index b899bc3e955c..de87bbe716d8 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index d0a1247995f9..734a650c2520 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index 8d31280d0c21..78ad999d5a22 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index 6259b9a7cc7f..05797f0a80ce 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index a8b220e38d3e..9ff4fe9437d0 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index 37182aa33e3d..3eec8e0d1cc4 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index 20b2a0275aa6..6d997fdd2d27 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index 8f07e353a7a1..c1bf03afaaa0 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index 27e53bcba3f5..6d3f75e84a24 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie/pom.xml b/services/macie/pom.xml
index 68276c10a66e..4d01c5ceaf9d 100644
--- a/services/macie/pom.xml
+++ b/services/macie/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
macie
AWS Java SDK :: Services :: Macie
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index 7c6c6fcbcd1c..ad12df1288a7 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index cba6c1e87fac..b6d5efcf9dd3 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 69ac6f6e7bf2..64b2a08cae85 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index acca87c7c1ef..a8d615de4f30 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index 179fa24faf6f..e6922994dc8a 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 14040a667d07..4350f842415d 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index 3961e04f25c5..8f0a5de57b99 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 6ffdf6dff398..a6cad20ae344 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index 5278a6ff3af7..73c3943ce544 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
mediapackage
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index c95652b4070f..47a28c0b7c0d 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index 4f9cb410ccf9..71d757a31953 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index a8341622d39a..e5b735baa2ae 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 578d8155de5e..f9ee940921d5 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index 86017baa2571..91cfecc00347 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index 1949e0ee66ef..29e3454ea546 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index f083f7e3f685..23fa4eb268b9 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index 07cb761b6049..126abca4f3f9 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index a773c91111b2..3cf4aaf14a37 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index c7befe9c7d93..a390cbb87947 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index 93a7b40b164c..38fcfa764363 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index df44206343a8..ccc00a8423b4 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index bf9dc70946c2..9e9bace1bf78 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.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 9087d48281e3..a31048f49833 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index 22dfcb90c219..8e573967be22 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index d621074c400a..11f1b1ad882c 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index b2cc4657e4c6..420a0d6e1e24 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 613ffb1336eb..6a21add73d75 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 6a7f1d53c9ae..b0151db7ed36 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index c4f67a4ec521..5a88f3ff5486 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index 73d8bb7667e3..053ec6ef7fad 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index 9ec0a0fbfc2c..abbb2531188a 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index 16ca38810606..e654a62b91ca 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index d476d91f99f2..bd8d8a8158d9 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.10
+ 2.11.11-SNAPSHOT
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index 25316f1f6203..e6082673dae8 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
pricing
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index 467a6cb66974..aa3a98738ae0 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index 9ebe9ae92f2e..06ec72b896dd 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index 52121ebbdcef..af598a1a0597 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index 8a4df917dd95..8c3460638257 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 16bedff4c9a5..982eaadabe16 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index 08ef273f0f61..a761e4ae48b4 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index daf028d15306..58447749c5b6 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index cbd51cc2a332..f81d76aafef8 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index 265ef43137be..1fc17aa7a11c 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index efb0ee25a537..62fb424fae85 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.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 d669fce00ad5..c8fce32b1ed2 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index 23bda98920d9..6d024b919aec 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index 8bfeee9216f9..5dd2b52142cf 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index 8539bf0f2a45..a6daf8d047db 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index 7e88a5028e7c..9e5b5b99d9a4 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index d08b1863f417..b055272b7236 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index ad78e153d514..4f1f4f221150 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 534ed5da2941..64cdebb9f97a 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index 4023641e6774..d8a6c07a3bdf 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index 89dc7ee94076..ebc3a824acdc 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index db6b09ae6174..f19c4a28ca89 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index 5c25d398d0a5..f2f9188e6cf6 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index fd52758c74f9..29833ab1e995 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index 0f1b659fe633..7762f6351694 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 9f7a45c50692..0019e83c0e03 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index 8bd9c48c5b19..b6bda281468b 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index 95e14454f55a..2b1f002733d5 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index 550c010ac5e7..a6de360b9aaa 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index 3ed41fdf7e77..13e907def96e 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index 7294e83c014b..d7c99adb48a7 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index d034af9a2a1c..3c22f4e821b6 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index 856c93b7e0d1..3623fc038910 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index 0ce8b86e940f..018edc1c20e1 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index e841ff9c8192..f094e869f0c4 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index d6cfcd236b26..522e16551364 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index 7a1500a52185..a60f5b696f0c 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index a28dbc8cc9be..80471b579f94 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.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 cef362de2fd6..c81a952920a6 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index 26ba26daea0a..40e1eff1227c 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index 870938005efa..3d65fb56e869 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index 73d7f74fe838..860fa42aac03 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/support/pom.xml b/services/support/pom.xml
index 67f14050c4e9..9a512b231360 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 482cf3b30eab..b5d16b9bcbc2 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index ef097ae43ddc..fd3967a9d348 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index 2a5383c4bd9f..e66a96cfb7ad 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index 5cf864820ceb..be2b73da241e 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index e4806a5de683..4bafce7a3315 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index 6fd200e9bcf9..e4e071ccb3ca 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
translate
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index 828a059e58fc..e9dbb6abc152 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index 1d23b9f2a88b..20c38aa9b954 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index 018fa8003be6..16bc656027e5 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index 7ff4b035a1f4..e79a24af04f1 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index 4e7463e7c156..05f2d4c96dd6 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index 82d32fe1b7a1..0886caa6b0b8 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index ab07306e7598..354b1dd4af02 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.11-SNAPSHOT
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index 0b56785e408c..002c8aad8e6a 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.10
+ 2.11.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 f75dce970464..631d5e1852d2 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.11.10
+ 2.11.11-SNAPSHOT
../../pom.xml
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index db37623a3b0f..17c54d99301b 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.11.10
+ 2.11.11-SNAPSHOT
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index 22265e3d1e68..d4086be5f5d6 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.11.10
+ 2.11.11-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index aca99fb7d9e8..0dd91bb3a14e 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.11.10
+ 2.11.11-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 0ba3e3391e04..8124697633e5 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.11.10
+ 2.11.11-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index 25b6e36b45a6..1ca5495a000e 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.11.10
+ 2.11.11-SNAPSHOT
../../pom.xml
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index 68fd82736ff2..98e050786932 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.11.10
+ 2.11.11-SNAPSHOT
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index 82dbdeaf731a..51fd5bd689b9 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.11.10
+ 2.11.11-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index 498cab591647..e6a4b7dbc73f 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.11.10
+ 2.11.11-SNAPSHOT
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index 93316493b4f2..035cebf40ee7 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.11.10
+ 2.11.11-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index 1fbef0d27ff5..d0afc0cbb7e1 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.10
+ 2.11.11-SNAPSHOT
4.0.0
From 07b84e51cef0ce948e69ecd7b15e0307347473ac Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Tue, 7 Apr 2020 18:05:26 +0000
Subject: [PATCH 026/604] Amazon API Gateway Update: Documentation updates for
Amazon API Gateway.
---
.../feature-AmazonAPIGateway-99b25fd.json | 5 +++++
.../codegen-resources/service-2.json | 20 +++++++++----------
2 files changed, 15 insertions(+), 10 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonAPIGateway-99b25fd.json
diff --git a/.changes/next-release/feature-AmazonAPIGateway-99b25fd.json b/.changes/next-release/feature-AmazonAPIGateway-99b25fd.json
new file mode 100644
index 000000000000..56e4d3d424bb
--- /dev/null
+++ b/.changes/next-release/feature-AmazonAPIGateway-99b25fd.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon API Gateway",
+ "description": "Documentation updates for Amazon API Gateway."
+}
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 0e92e9026367..fb0e16be41a7 100755
--- a/services/apigateway/src/main/resources/codegen-resources/service-2.json
+++ b/services/apigateway/src/main/resources/codegen-resources/service-2.json
@@ -1995,7 +1995,7 @@
},
"destinationArn":{
"shape":"String",
- "documentation":"The ARN of the CloudWatch Logs log group to receive access logs.
"
+ "documentation":"The Amazon Resource Name (ARN) of the CloudWatch Logs log group or Kinesis Data Firehose delivery stream to receive access logs. If you specify a Kinesis Data Firehose delivery stream, the stream name must begin with amazon-apigateway-
.
"
}
},
"documentation":"Access log settings, including the access log format and access log destination ARN.
"
@@ -2364,7 +2364,7 @@
},
"generateDistinctId":{
"shape":"Boolean",
- "documentation":"Specifies whether (true
) or not (false
) the key identifier is distinct from the created API key value.
"
+ "documentation":"Specifies whether (true
) or not (false
) the key identifier is distinct from the created API key value. This parameter is deprecated and should not be used.
"
},
"value":{
"shape":"String",
@@ -2461,7 +2461,7 @@
},
"stage":{
"shape":"String",
- "documentation":"The name of the API's stage that you want to use for this mapping. Specify '(none)' if you do not want callers to explicitly specify the stage name after any base path name.
"
+ "documentation":"The name of the API's stage that you want to use for this mapping. Specify '(none)' if you want callers to explicitly specify the stage name after any base path name.
"
}
},
"documentation":"Requests API Gateway to create a new BasePathMapping resource.
"
@@ -2877,7 +2877,7 @@
},
"targetArns":{
"shape":"ListOfString",
- "documentation":"[Required] The ARNs of network load balancers of the VPC targeted by the VPC link. The network load balancers must be owned by the same AWS account of the API owner.
"
+ "documentation":"[Required] The ARN of the network load balancer of the VPC targeted by the VPC link. The network load balancer must be owned by the same AWS account of the API owner.
"
},
"tags":{
"shape":"MapOfStringToString",
@@ -4693,7 +4693,7 @@
"members":{
"resourceArn":{
"shape":"String",
- "documentation":"[Required] The ARN of a resource that can be tagged. The resource ARN must be URL-encoded.
",
+ "documentation":"[Required] The ARN of a resource that can be tagged.
",
"location":"uri",
"locationName":"resource_arn"
},
@@ -5321,7 +5321,7 @@
},
"loggingLevel":{
"shape":"String",
- "documentation":"Specifies the logging level for this method, which affects the log entries pushed to Amazon CloudWatch Logs. The PATCH path for this setting is /{method_setting_key}/logging/loglevel
, and the available levels are OFF
, ERROR
, and INFO
.
"
+ "documentation":"Specifies the logging level for this method, which affects the log entries pushed to Amazon CloudWatch Logs. The PATCH path for this setting is /{method_setting_key}/logging/loglevel
, and the available levels are OFF
, ERROR
, and INFO
. Choose ERROR
to write only error-level entries to CloudWatch Logs, or choose INFO
to include all ERROR
events as well as extra informational events.
"
},
"dataTraceEnabled":{
"shape":"Boolean",
@@ -6162,7 +6162,7 @@
"members":{
"resourceArn":{
"shape":"String",
- "documentation":"[Required] The ARN of a resource that can be tagged. The resource ARN must be URL-encoded.
",
+ "documentation":"[Required] The ARN of a resource that can be tagged.
",
"location":"uri",
"locationName":"resource_arn"
},
@@ -6408,7 +6408,7 @@
"members":{
"resourceArn":{
"shape":"String",
- "documentation":"[Required] The ARN of a resource that can be tagged. The resource ARN must be URL-encoded.
",
+ "documentation":"[Required] The ARN of a resource that can be tagged.
",
"location":"uri",
"locationName":"resource_arn"
},
@@ -7090,7 +7090,7 @@
},
"targetArns":{
"shape":"ListOfString",
- "documentation":"The ARNs of network load balancers of the VPC targeted by the VPC link. The network load balancers must be owned by the same AWS account of the API owner.
"
+ "documentation":"The ARN of the network load balancer of the VPC targeted by the VPC link. The network load balancer must be owned by the same AWS account of the API owner.
"
},
"status":{
"shape":"VpcLinkStatus",
@@ -7105,7 +7105,7 @@
"documentation":"The collection of tags. Each tag element is associated with a given resource.
"
}
},
- "documentation":"A API Gateway VPC link for a RestApi to access resources in an Amazon Virtual Private Cloud (VPC).
"
+ "documentation":"An API Gateway VPC link for a RestApi to access resources in an Amazon Virtual Private Cloud (VPC).
"
},
"VpcLinkStatus":{
"type":"string",
From efabe4deb93cd9772b32b435969efe97f23f3a4a Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Tue, 7 Apr 2020 18:05:33 +0000
Subject: [PATCH 027/604] Amazon CodeGuru Reviewer Update: API updates for
CodeGuruReviewer
---
.../feature-AmazonCodeGuruReviewer-6c9ddcf.json | 5 +++++
.../src/main/resources/codegen-resources/service-2.json | 6 ++++--
2 files changed, 9 insertions(+), 2 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonCodeGuruReviewer-6c9ddcf.json
diff --git a/.changes/next-release/feature-AmazonCodeGuruReviewer-6c9ddcf.json b/.changes/next-release/feature-AmazonCodeGuruReviewer-6c9ddcf.json
new file mode 100644
index 000000000000..b09b4c039b3f
--- /dev/null
+++ b/.changes/next-release/feature-AmazonCodeGuruReviewer-6c9ddcf.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon CodeGuru Reviewer",
+ "description": "API updates for CodeGuruReviewer"
+}
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 f7c36673e07a..8647c39b3f32 100644
--- a/services/codegurureviewer/src/main/resources/codegen-resources/service-2.json
+++ b/services/codegurureviewer/src/main/resources/codegen-resources/service-2.json
@@ -267,7 +267,8 @@
"Name":{
"type":"string",
"max":100,
- "min":1
+ "min":1,
+ "pattern":"^\\S[\\w.-]*$"
},
"Names":{
"type":"list",
@@ -292,7 +293,8 @@
"Owner":{
"type":"string",
"max":100,
- "min":1
+ "min":1,
+ "pattern":"^\\S(.*\\S)?$"
},
"Owners":{
"type":"list",
From f9487c9de7764a77f6ca676893d3cfceee74dc82 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Tue, 7 Apr 2020 18:05:53 +0000
Subject: [PATCH 028/604] AWS MediaConnect Update: You can now send content
from your MediaConnect flow to your virtual private cloud (VPC) without going
over the public internet.
---
.../feature-AWSMediaConnect-cd4a4fb.json | 5 ++++
.../codegen-resources/service-2.json | 26 +++++++++++++++++++
2 files changed, 31 insertions(+)
create mode 100644 .changes/next-release/feature-AWSMediaConnect-cd4a4fb.json
diff --git a/.changes/next-release/feature-AWSMediaConnect-cd4a4fb.json b/.changes/next-release/feature-AWSMediaConnect-cd4a4fb.json
new file mode 100644
index 000000000000..80ba551b49e7
--- /dev/null
+++ b/.changes/next-release/feature-AWSMediaConnect-cd4a4fb.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "AWS MediaConnect",
+ "description": "You can now send content from your MediaConnect flow to your virtual private cloud (VPC) without going over the public internet."
+}
diff --git a/services/mediaconnect/src/main/resources/codegen-resources/service-2.json b/services/mediaconnect/src/main/resources/codegen-resources/service-2.json
index 45802b6d623e..910ab221f94d 100644
--- a/services/mediaconnect/src/main/resources/codegen-resources/service-2.json
+++ b/services/mediaconnect/src/main/resources/codegen-resources/service-2.json
@@ -1068,6 +1068,11 @@
"shape": "__string",
"locationName": "streamId",
"documentation": "The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams."
+ },
+ "VpcInterfaceAttachment": {
+ "shape": "VpcInterfaceAttachment",
+ "locationName": "vpcInterfaceAttachment",
+ "documentation": "The name of the VPC interface attachment to use for this output."
}
},
"documentation": "The output that you want to add to this flow.",
@@ -1790,6 +1795,11 @@
"shape": "Transport",
"locationName": "transport",
"documentation": "Attributes related to the transport stream that are used in the output."
+ },
+ "VpcInterfaceAttachment": {
+ "shape": "VpcInterfaceAttachment",
+ "locationName": "vpcInterfaceAttachment",
+ "documentation": "The name of the VPC interface attachment to use for this output."
}
},
"documentation": "The settings for an output.",
@@ -2484,6 +2494,11 @@
"shape": "__string",
"locationName": "streamId",
"documentation": "The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams."
+ },
+ "VpcInterfaceAttachment": {
+ "shape": "VpcInterfaceAttachment",
+ "locationName": "vpcInterfaceAttachment",
+ "documentation": "The name of the VPC interface attachment to use for this output."
}
},
"documentation": "The fields that you want to update in the output.",
@@ -2659,6 +2674,17 @@
"Name"
]
},
+ "VpcInterfaceAttachment": {
+ "type": "structure",
+ "members": {
+ "VpcInterfaceName": {
+ "shape": "__string",
+ "locationName": "vpcInterfaceName",
+ "documentation": "The name of the VPC interface to use for this output."
+ }
+ },
+ "documentation": "The settings for attaching a VPC interface to an output."
+ },
"VpcInterfaceRequest": {
"type": "structure",
"members": {
From e358b9eefc75f0e037515b9328ca031518d942ed Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Tue, 7 Apr 2020 18:07:31 +0000
Subject: [PATCH 029/604] Release 2.11.11. Updated CHANGELOG.md, README.md and
all pom.xml.
---
.changes/2.11.11.json | 21 +++++++++++++++++++
.../feature-AWSMediaConnect-cd4a4fb.json | 5 -----
.../feature-AmazonAPIGateway-99b25fd.json | 5 -----
...eature-AmazonCodeGuruReviewer-6c9ddcf.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/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/netty-nio-client/pom.xml | 2 +-
http-clients/pom.xml | 2 +-
http-clients/url-connection-client/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/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/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/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/iam/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/iotthingsgraph/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/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/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/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/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/textract/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 +-
268 files changed, 300 insertions(+), 281 deletions(-)
create mode 100644 .changes/2.11.11.json
delete mode 100644 .changes/next-release/feature-AWSMediaConnect-cd4a4fb.json
delete mode 100644 .changes/next-release/feature-AmazonAPIGateway-99b25fd.json
delete mode 100644 .changes/next-release/feature-AmazonCodeGuruReviewer-6c9ddcf.json
diff --git a/.changes/2.11.11.json b/.changes/2.11.11.json
new file mode 100644
index 000000000000..c95d042380f4
--- /dev/null
+++ b/.changes/2.11.11.json
@@ -0,0 +1,21 @@
+{
+ "version": "2.11.11",
+ "date": "2020-04-07",
+ "entries": [
+ {
+ "type": "feature",
+ "category": "Amazon API Gateway",
+ "description": "Documentation updates for Amazon API Gateway."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon CodeGuru Reviewer",
+ "description": "API updates for CodeGuruReviewer"
+ },
+ {
+ "type": "feature",
+ "category": "AWS MediaConnect",
+ "description": "You can now send content from your MediaConnect flow to your virtual private cloud (VPC) without going over the public internet."
+ }
+ ]
+}
\ No newline at end of file
diff --git a/.changes/next-release/feature-AWSMediaConnect-cd4a4fb.json b/.changes/next-release/feature-AWSMediaConnect-cd4a4fb.json
deleted file mode 100644
index 80ba551b49e7..000000000000
--- a/.changes/next-release/feature-AWSMediaConnect-cd4a4fb.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "AWS MediaConnect",
- "description": "You can now send content from your MediaConnect flow to your virtual private cloud (VPC) without going over the public internet."
-}
diff --git a/.changes/next-release/feature-AmazonAPIGateway-99b25fd.json b/.changes/next-release/feature-AmazonAPIGateway-99b25fd.json
deleted file mode 100644
index 56e4d3d424bb..000000000000
--- a/.changes/next-release/feature-AmazonAPIGateway-99b25fd.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon API Gateway",
- "description": "Documentation updates for Amazon API Gateway."
-}
diff --git a/.changes/next-release/feature-AmazonCodeGuruReviewer-6c9ddcf.json b/.changes/next-release/feature-AmazonCodeGuruReviewer-6c9ddcf.json
deleted file mode 100644
index b09b4c039b3f..000000000000
--- a/.changes/next-release/feature-AmazonCodeGuruReviewer-6c9ddcf.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon CodeGuru Reviewer",
- "description": "API updates for CodeGuruReviewer"
-}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index df7488d9566e..d7f2e8288dc1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,16 @@
+# __2.11.11__ __2020-04-07__
+## __AWS MediaConnect__
+ - ### Features
+ - You can now send content from your MediaConnect flow to your virtual private cloud (VPC) without going over the public internet.
+
+## __Amazon API Gateway__
+ - ### Features
+ - Documentation updates for Amazon API Gateway.
+
+## __Amazon CodeGuru Reviewer__
+ - ### Features
+ - API updates for CodeGuruReviewer
+
# __2.11.10__ __2020-04-06__
## __AWS Elastic Beanstalk__
- ### Features
diff --git a/README.md b/README.md
index 9e2b5c9292bd..bc3124bdd7a9 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.11.10
+ 2.11.11
pom
import
@@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only:
software.amazon.awssdk
ec2
- 2.11.10
+ 2.11.11
software.amazon.awssdk
s3
- 2.11.10
+ 2.11.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.11.10
+ 2.11.11
```
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index 2c1ae9ec3386..ab443865460d 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
archetype-lambda
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index ee24ad5015a2..a532527a0450 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index 8e81b408e560..6cc57b81382f 100644
--- a/aws-sdk-java/pom.xml
+++ b/aws-sdk-java/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11-SNAPSHOT
+ 2.11.11
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index de2e7482de56..33aa2840bf00 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index 802c12f77a54..9093dbd133bd 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11-SNAPSHOT
+ 2.11.11
../pom.xml
bom
diff --git a/bundle/pom.xml b/bundle/pom.xml
index e296c0d7d430..8540e77cda73 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11-SNAPSHOT
+ 2.11.11
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 1753a42488e9..6926376495fb 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.11.11-SNAPSHOT
+ 2.11.11
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index 51ad008b64fa..5cc9def45a41 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11-SNAPSHOT
+ 2.11.11
codegen-lite
AWS Java SDK :: Code Generator Lite
diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml
index 9d4f2fbf7df1..d70fa59cd5e6 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.11.11-SNAPSHOT
+ 2.11.11
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index ce9bfc41a329..fc4593f5e7dc 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11-SNAPSHOT
+ 2.11.11
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index 766265149d3e..f9eb524656d1 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index a5ac87116556..e7ba8cd79d2e 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index 68b32ffba653..5a1f88872e8f 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.11-SNAPSHOT
+ 2.11.11
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index 685d3c82acae..f633ddaa0028 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.11-SNAPSHOT
+ 2.11.11
aws-core
diff --git a/core/pom.xml b/core/pom.xml
index 76937f1056f7..218807eaffb0 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index 761b6cb4f795..b7df206b5f01 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.11-SNAPSHOT
+ 2.11.11
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index 6d5516373359..b9839674068d 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.11.11-SNAPSHOT
+ 2.11.11
4.0.0
diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml
index 8729e5f9926e..7a95ebb12d26 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.11.11-SNAPSHOT
+ 2.11.11
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index 9259991fc8e5..900f7be14cd5 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.11.11-SNAPSHOT
+ 2.11.11
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index 69859ac50631..4a59cab10bdc 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.11.11-SNAPSHOT
+ 2.11.11
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index c6a1d6ed173e..6e8fbf240a0b 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.11.11-SNAPSHOT
+ 2.11.11
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index d6503ec7f5bb..e9b1837e9c15 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index 22f94bb7f10e..334ba6d66bb8 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index a612a5787e65..c85536e0c1ad 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.11-SNAPSHOT
+ 2.11.11
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index a32d9f540118..9bc6cc07cbf7 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.11.11-SNAPSHOT
+ 2.11.11
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index 6eba45c546d3..a8d94212e448 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.11.11-SNAPSHOT
+ 2.11.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 27fed3e58a9d..989a2cd85d11 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.11.11-SNAPSHOT
+ 2.11.11
apache-client
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index 5bd9219f8180..06a02df0a08b 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.11.11-SNAPSHOT
+ 2.11.11
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index 5d8feff7ee5c..0d16d50c9363 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index 29e24421244d..aa58f6e5e610 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.11.11-SNAPSHOT
+ 2.11.11
4.0.0
diff --git a/pom.xml b/pom.xml
index 0918b075d433..3177654a16e6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11-SNAPSHOT
+ 2.11.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 e310c8635672..741a3629cab0 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11-SNAPSHOT
+ 2.11.11
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index d75400653edf..d5bf2db77a2e 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.11.11-SNAPSHOT
+ 2.11.11
dynamodb-enhanced
${awsjavasdk.version}-PREVIEW
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index 5023e04a0a32..73feba78ec20 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11-SNAPSHOT
+ 2.11.11
services-custom
AWS Java SDK :: Custom Services
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index 7ff358a2707b..814b0f3ed08c 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 8ea89dc77cdb..6b39744541fc 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index 2e955fe7ea33..2c513eac6bb2 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml
index ce2f7f99a748..07439e56be8b 100644
--- a/services/alexaforbusiness/pom.xml
+++ b/services/alexaforbusiness/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
alexaforbusiness
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index 470ced14d99f..18c58eca6124 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index 44c9bbcee632..63695f1e4a4c 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index d2f75652f761..e33e5cf94c77 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index 096013b84e7e..88ea4aa3ad95 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index 709101112f92..701e0c500e4c 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index 78075fe398f9..4bfb35b3884e 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 16723804173b..dfd0ffe3f590 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index 57e3694ad293..996b7fd9124c 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index 3b63e1c7277f..0883c471a0d4 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index 692531bf1a49..39f9388e58f4 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index 23054dc894b1..f1d71d5010d7 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
appsync
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index 41ed86229b1c..03892f509ae1 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index db3899ece03c..6a4dfb826c70 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index 9862286601ae..bf26036779d6 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index d1ee4426bdb7..ce88e9839cb8 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index c834397c3067..0b45e53f0e61 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 2594b977f75b..4eb20c6e95f1 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index 275397bf6972..fd5df645c582 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index 16ceec5b156b..b838f2174299 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
cloud9
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index bc92d0b8eb98..4e8bff906b08 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 02251aa29e18..ab295b7d414d 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index cd7b4d521117..7fe96cea85de 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index b80214c4b209..1a0f263ef540 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index 67b75ee9f13e..793f3593af62 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index 8f1948a81ec0..bc2e0a6f7065 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index c09ee8262979..f130a423b735 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index 5bfa2203f84a..b7d077452b86 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index 2d93ca214eed..39bcaae84682 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index 0fc6a2db4793..ccb78b47a590 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index 69d5293abba4..2fc53de59250 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index 3ea27e6b487d..437dae5af13f 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index 17c3fad5b37b..d5763bd314c5 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index 6a5c0b2d0894..d0e921a31b7c 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index 48a8996d8678..f721a8dcc1ad 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index e8670eb19d16..fc60ca4228e5 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index 2b7ee9e77d72..432c9f17be4b 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index 62d2f044d933..1ca39f8109a6 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index 29a307420092..fa529be7550e 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index e01d3e05fe43..21d9d1edcf3b 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index 26c1f2610456..e08569cd74fa 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index 15219874fa63..1e2445a3eb74 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
cognitoidentityprovider
AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service
diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml
index adc977c412ea..a4cc4cf6b888 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index c154eee2a385..8d11471ca760 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index f64ffe7ba1fe..0fd7f1eff8fc 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index b554c2a301fa..57fef1d34c8c 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index e54dc8f3de0b..4c7c9f11ccc0 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index d550b02304a8..f6509e1d2946 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index 394c9a6b5920..61e23e82d736 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index 94c13f548847..9c09d623e12b 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
costandusagereport
AWS Java SDK :: Services :: AWS Cost and Usage Report
diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml
index 97d5938a4935..033f07d6238e 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
costexplorer
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index 90105be65d51..dece700f42ac 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index e3da8df20119..5459b9a7e879 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index d938d2b8bafc..e27d5f361cfb 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index 8bef850798a3..f129306cba11 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index dcb6eaf33a08..76704dd3d8f6 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index 137efa310b5a..7f55d0ceb4b0 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index 1ad27993c657..d19964d2b975 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index fec83a647860..0d33c77d18ef 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index 4b32f55d8906..a086baa08cf1 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index 9efbf4263175..91eeafcc6578 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index c390878d28f1..8070b380f3cd 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index dab012297e0b..37875248ffd8 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index 9eeea8eb845e..f401b31a6e27 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 8e0f2b40cdeb..b9f2569346b4 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index 8f3663321865..0cf6adbbacf7 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index ecfa8df1fa34..5c5f6b926044 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index 2eb647ff90e4..8a3d6993af20 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index f4751f9c38b3..37abd2631077 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index 5e2499dc19f4..530f41fcbfe4 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index e3f95fe19a52..287d120b3dcb 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index 68b6b53f7f3e..10fb36755dcd 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index bdd62bf08df7..f99f169356a2 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index 7c1a2e48e8f3..ed17f5045655 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index f7429b5ec9c1..c19fff66f9a0 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index 907ec183518c..a0eaa74174b2 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 868395fc4bb2..54f078c5652a 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index 0cf120ae7515..7295b5f24dde 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index e8a6e7c6960c..03a2d081c965 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index 653075382d26..60d978cec69e 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index a77c2d793e53..9a1647ad0af6 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index dab7093a12fd..a1128264217b 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index c2dc3af6fcb7..8d7782171162 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index deef8b7a8091..a7f59c5f0528 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index f5b0efa39fe6..fe1e3a7ff19f 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index 4144273803ae..4a538d8caf03 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index dd271281198f..312a10f6ab21 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index ca909d828867..e15142872186 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index 81c8e4f310cf..b2749063d5a7 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
glue
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index 321f708123f5..3b3a4a02e26d 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index d26effe07cfb..e44ff707577a 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index a3e2afcf2550..41271ad8c4d9 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index 280eeae08f10..7a6cd008e15d 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index bca67f56a1a9..8ad5e13b3092 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index c2cca5622dca..faf3e0b757dd 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index d57dac811c12..04a0bf00fc0e 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index f12957db4f3e..14041de72f55 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index df19ca5503e2..19099b4e059c 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index 2d5bd2f1f038..bceb3723cf48 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index ae3748212fdf..06fb3ab6aec9 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index 0ab2f4dd2a63..34ff73a11b61 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index 119757afbddb..75470e7c037a 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 4148d0f632cf..cfa7a6943c4e 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 5cb7e33ce208..27b4850334d8 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index 820a94a68837..378beb8c9769 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index ee66329865b6..155e4ca65325 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index a602274c9465..7f2ec2a68896 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index d292db3ac245..e6ec51340012 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index 128190b57ade..26d4716b5c8f 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index dbcecdff3643..306797479c9a 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index 615ecac82f1f..4e921ae2e198 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index 5b7144ef96b9..78ff18e1ee1d 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index c5cf835657f9..b56409275ff3 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index 6fc7b27de560..d0f0af2e8167 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index de87bbe716d8..56cacf30b1b5 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index 734a650c2520..451eca50bff4 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index 78ad999d5a22..30e8105e791b 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index 05797f0a80ce..d42b380c1182 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index 9ff4fe9437d0..689a027c39a1 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index 3eec8e0d1cc4..093361552f52 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index 6d997fdd2d27..b432688a6d55 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index c1bf03afaaa0..a8916c7aa2aa 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index 6d3f75e84a24..e95d12720535 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie/pom.xml b/services/macie/pom.xml
index 4d01c5ceaf9d..77517c7d5f5f 100644
--- a/services/macie/pom.xml
+++ b/services/macie/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
macie
AWS Java SDK :: Services :: Macie
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index ad12df1288a7..1e6186c67afd 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index b6d5efcf9dd3..3171b905ad1a 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 64b2a08cae85..702ee22f7c7d 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index a8d615de4f30..6043f7c269be 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index e6922994dc8a..821fb4fc9951 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 4350f842415d..8fc0f86ea3b2 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index 8f0a5de57b99..2bf3d1fa663a 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index a6cad20ae344..12a1278332c8 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index 73c3943ce544..51bc362eaf5b 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
mediapackage
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 47a28c0b7c0d..7376cd8172c7 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index 71d757a31953..d598cbd61f29 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index e5b735baa2ae..60a768496d0d 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index f9ee940921d5..28d53ca54e9b 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index 91cfecc00347..ebadc66d77eb 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index 29e3454ea546..936be08e2ea0 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index 23fa4eb268b9..8fea3c296b52 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index 126abca4f3f9..d83aec26783a 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index 3cf4aaf14a37..dfc762d314a0 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index a390cbb87947..8093511ea52f 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index 38fcfa764363..b6cc8b9323db 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index ccc00a8423b4..a5422c6c8ac2 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index 9e9bace1bf78..4f742cea3b52 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
opsworkscm
AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate
diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml
index a31048f49833..cb6b62a6faf9 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index 8e573967be22..17080ee933d2 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index 11f1b1ad882c..9f8409a0c208 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index 420a0d6e1e24..3b42ff3b066a 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 6a21add73d75..04a4c039eb6c 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index b0151db7ed36..3d93129f529a 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index 5a88f3ff5486..85f2156cae0d 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index 053ec6ef7fad..abd84117655a 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index abbb2531188a..e7514ae5a687 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index e654a62b91ca..99e773aaf4ab 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index bd8d8a8158d9..40bded39f5b3 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11-SNAPSHOT
+ 2.11.11
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index e6082673dae8..8b08d3e1b51c 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
pricing
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index aa3a98738ae0..117ca4d4a3b1 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index 06ec72b896dd..d95f7d1a7e86 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index af598a1a0597..8e6d8bb9416d 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index 8c3460638257..950ae2294e26 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 982eaadabe16..795101048aaa 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index a761e4ae48b4..063e1fb1b820 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index 58447749c5b6..ea0908498910 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index f81d76aafef8..b949fadee03e 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index 1fc17aa7a11c..48c0828a44c9 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index 62fb424fae85..31aa3abce361 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
resourcegroupstaggingapi
AWS Java SDK :: Services :: AWS Resource Groups Tagging API
diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml
index c8fce32b1ed2..1e41390f7dd1 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index 6d024b919aec..577c9db2cdb3 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index 5dd2b52142cf..69e8cf0907cd 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index a6daf8d047db..497222da231b 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index 9e5b5b99d9a4..fd6b2ca7093d 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index b055272b7236..39e0b4c9ee81 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index 4f1f4f221150..318c7df54f01 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 64cdebb9f97a..638b85724ef0 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index d8a6c07a3bdf..3e9b8d6267fd 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index ebc3a824acdc..9458e871e687 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index f19c4a28ca89..5451da0c027a 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index f2f9188e6cf6..369f8db36a73 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index 29833ab1e995..9a2d2063b479 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index 7762f6351694..701e7980728e 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 0019e83c0e03..14c059234ac6 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index b6bda281468b..4339ba893a1a 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index 2b1f002733d5..e441730f4b96 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index a6de360b9aaa..2538c729e97f 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index 13e907def96e..b81e97156c70 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index d7c99adb48a7..4d224aede6cc 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index 3c22f4e821b6..228dfdf38550 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index 3623fc038910..12494d0cd90d 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index 018edc1c20e1..59e7847c97c9 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index f094e869f0c4..42e46ed20db2 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 522e16551364..cad6ae43eeb3 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index a60f5b696f0c..3defaffa1d90 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index 80471b579f94..ad9ef2d85e59 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
ssm
AWS Java SDK :: Services :: AWS Simple Systems Management (SSM)
diff --git a/services/sso/pom.xml b/services/sso/pom.xml
index c81a952920a6..3943799d95c1 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index 40e1eff1227c..e661f100584a 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index 3d65fb56e869..2567782a2996 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index 860fa42aac03..618137c7d99c 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/support/pom.xml b/services/support/pom.xml
index 9a512b231360..4db303f155da 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index b5d16b9bcbc2..a379f8aced45 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index fd3967a9d348..c433ca42c30d 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index e66a96cfb7ad..aa421d8db94a 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index be2b73da241e..02e64de4cfb4 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index 4bafce7a3315..e2c8a714009a 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index e4e071ccb3ca..f2e2d9dacb6e 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
translate
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index e9dbb6abc152..6e946e1cf9a6 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index 20c38aa9b954..b1355c7ba69a 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index 16bc656027e5..1da972cd8d5a 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index e79a24af04f1..58d562dc724f 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index 05f2d4c96dd6..60362ae35072 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index 0886caa6b0b8..8309cd3a22ba 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 354b1dd4af02..9503908be005 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.11
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index 002c8aad8e6a..18c44d99dbeb 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11-SNAPSHOT
+ 2.11.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 631d5e1852d2..50e737f15502 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.11.11-SNAPSHOT
+ 2.11.11
../../pom.xml
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index 17c54d99301b..8bba5d15a7fd 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.11.11-SNAPSHOT
+ 2.11.11
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index d4086be5f5d6..427523f4e7dd 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.11.11-SNAPSHOT
+ 2.11.11
../../pom.xml
4.0.0
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index 0dd91bb3a14e..d96892168371 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.11.11-SNAPSHOT
+ 2.11.11
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 8124697633e5..1716701a3dbc 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.11.11-SNAPSHOT
+ 2.11.11
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index 1ca5495a000e..542b09a98006 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.11.11-SNAPSHOT
+ 2.11.11
../../pom.xml
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index 98e050786932..fe16f3236d70 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.11.11-SNAPSHOT
+ 2.11.11
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index 51fd5bd689b9..01dfe84b6979 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.11.11-SNAPSHOT
+ 2.11.11
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index e6a4b7dbc73f..dcfe5cf67047 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.11.11-SNAPSHOT
+ 2.11.11
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index 035cebf40ee7..7a1b356b55c3 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.11.11-SNAPSHOT
+ 2.11.11
../../pom.xml
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index d0afc0cbb7e1..aab1d51405a3 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.11-SNAPSHOT
+ 2.11.11
4.0.0
From 43fabc9a567c81f849377ad77f263d17347115be Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Tue, 7 Apr 2020 18:33:08 +0000
Subject: [PATCH 030/604] Update to next snapshot version: 2.11.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/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/netty-nio-client/pom.xml | 2 +-
http-clients/pom.xml | 2 +-
http-clients/url-connection-client/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/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/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/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/iam/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/iotthingsgraph/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/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/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/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/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/textract/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 +-
262 files changed, 262 insertions(+), 262 deletions(-)
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index ab443865460d..df029d620a93 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
archetype-lambda
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index a532527a0450..3a9a4d2d8600 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index 6cc57b81382f..f42a643ddabb 100644
--- a/aws-sdk-java/pom.xml
+++ b/aws-sdk-java/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11
+ 2.11.12-SNAPSHOT
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index 33aa2840bf00..29c9501000a2 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index 9093dbd133bd..c9b8ccf4d307 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11
+ 2.11.12-SNAPSHOT
../pom.xml
bom
diff --git a/bundle/pom.xml b/bundle/pom.xml
index 8540e77cda73..b2a3f467a479 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11
+ 2.11.12-SNAPSHOT
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 6926376495fb..cad328f3d097 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.11.11
+ 2.11.12-SNAPSHOT
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index 5cc9def45a41..d88bc818f132 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11
+ 2.11.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 d70fa59cd5e6..d003bacec63a 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.11.11
+ 2.11.12-SNAPSHOT
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index fc4593f5e7dc..2051b831cdcb 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11
+ 2.11.12-SNAPSHOT
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index f9eb524656d1..95d135eb9dc6 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index e7ba8cd79d2e..c4dcae776e24 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index 5a1f88872e8f..6718d5c27e75 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.11
+ 2.11.12-SNAPSHOT
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index f633ddaa0028..49132c036787 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.11
+ 2.11.12-SNAPSHOT
aws-core
diff --git a/core/pom.xml b/core/pom.xml
index 218807eaffb0..0211c0394deb 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index b7df206b5f01..f0e9e93a9dda 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.11
+ 2.11.12-SNAPSHOT
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index b9839674068d..75ab951050ad 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.11.11
+ 2.11.12-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml
index 7a95ebb12d26..6e07405c020e 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.11.11
+ 2.11.12-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index 900f7be14cd5..0f341e58d568 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.11.11
+ 2.11.12-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index 4a59cab10bdc..437f19564fde 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.11.11
+ 2.11.12-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index 6e8fbf240a0b..842e71edb65c 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.11.11
+ 2.11.12-SNAPSHOT
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index e9b1837e9c15..e85158c8b226 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index 334ba6d66bb8..7ceffdedef78 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index c85536e0c1ad..b0c0079a08e0 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.11
+ 2.11.12-SNAPSHOT
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index 9bc6cc07cbf7..497a4782f53f 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.11.11
+ 2.11.12-SNAPSHOT
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index a8d94212e448..9d9416f882ee 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.11.11
+ 2.11.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 989a2cd85d11..0e85ce285f4f 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.11.11
+ 2.11.12-SNAPSHOT
apache-client
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index 06a02df0a08b..a5946107ba75 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.11.11
+ 2.11.12-SNAPSHOT
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index 0d16d50c9363..43f5e9414526 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index aa58f6e5e610..0cf1ae5ada44 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.11.11
+ 2.11.12-SNAPSHOT
4.0.0
diff --git a/pom.xml b/pom.xml
index 3177654a16e6..70aa44f534eb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11
+ 2.11.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 741a3629cab0..17614f9542b7 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11
+ 2.11.12-SNAPSHOT
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index d5bf2db77a2e..a7b2fb2d6d93 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.11.11
+ 2.11.12-SNAPSHOT
dynamodb-enhanced
${awsjavasdk.version}-PREVIEW
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index 73feba78ec20..c9dd6a9eaab9 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11
+ 2.11.12-SNAPSHOT
services-custom
AWS Java SDK :: Custom Services
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index 814b0f3ed08c..a1547cae0d4c 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 6b39744541fc..033b68b056e4 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index 2c513eac6bb2..52b8c59c56de 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml
index 07439e56be8b..709bb8a395ac 100644
--- a/services/alexaforbusiness/pom.xml
+++ b/services/alexaforbusiness/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
alexaforbusiness
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index 18c58eca6124..a232793f3474 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index 63695f1e4a4c..6b6c94f36d69 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index e33e5cf94c77..b5dd04d9a9dc 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index 88ea4aa3ad95..dda9aa8e0cb3 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index 701e0c500e4c..ad8a3d8707f0 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index 4bfb35b3884e..ae1112e5699c 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index dfd0ffe3f590..483e9bab8a96 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index 996b7fd9124c..756b5ccf80fe 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index 0883c471a0d4..4c022a933489 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index 39f9388e58f4..8327d8c30d9b 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index f1d71d5010d7..7f9bb58675ac 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
appsync
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index 03892f509ae1..21920b7d6809 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index 6a4dfb826c70..512e7916ef52 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index bf26036779d6..263a9969b473 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index ce88e9839cb8..62fd08bb76be 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index 0b45e53f0e61..41abde14c9d2 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 4eb20c6e95f1..4a1b4b861989 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index fd5df645c582..f7c1a29f85c9 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index b838f2174299..b30bb796c74e 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
cloud9
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index 4e8bff906b08..c5e33490f663 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index ab295b7d414d..a1a896b231d2 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index 7fe96cea85de..2730dc3f2552 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index 1a0f263ef540..c79fa494a72d 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index 793f3593af62..dd1d84b9faa0 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index bc2e0a6f7065..09ac346a2e2b 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index f130a423b735..d59701c8d275 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index b7d077452b86..c27889af27e7 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index 39bcaae84682..df70def3e278 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index ccb78b47a590..1034597104c3 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index 2fc53de59250..bda5000b1f25 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index 437dae5af13f..7ba6b0a858e5 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index d5763bd314c5..c74c813a52cf 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index d0e921a31b7c..eb1973926f02 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index f721a8dcc1ad..b04ea0b7b94a 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index fc60ca4228e5..1771e55c4604 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index 432c9f17be4b..5eb93c9ed857 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index 1ca39f8109a6..bb9bf9ff0dba 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index fa529be7550e..8eccc1870abd 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index 21d9d1edcf3b..dc3809934332 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index e08569cd74fa..0749f0da860f 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index 1e2445a3eb74..697a532630c4 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.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 a4cc4cf6b888..a35ecdc2ad14 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index 8d11471ca760..cbab85dd279e 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index 0fd7f1eff8fc..18671be9f72f 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index 57fef1d34c8c..73eb5df4bf8d 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index 4c7c9f11ccc0..1f2010a1ab05 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index f6509e1d2946..9a309d61747f 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index 61e23e82d736..f6489cbd4b43 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index 9c09d623e12b..fd34d3f9bd55 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.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 033f07d6238e..acb2e5344ab7 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
costexplorer
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index dece700f42ac..e1676c5b1757 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index 5459b9a7e879..02d3923fd283 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index e27d5f361cfb..8edd5e86bf5c 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index f129306cba11..a62992470684 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index 76704dd3d8f6..06f06ca7283c 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index 7f55d0ceb4b0..3d5469bf0552 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index d19964d2b975..35f22fcaa0d6 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index 0d33c77d18ef..99e06c4d1ec6 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index a086baa08cf1..a400d48a9124 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index 91eeafcc6578..160feabc52e2 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index 8070b380f3cd..4181ea2f3ab2 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index 37875248ffd8..4a119bf008b7 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index f401b31a6e27..feceb8b21985 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index b9f2569346b4..506ca6da6646 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index 0cf6adbbacf7..b318b2e9eadb 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index 5c5f6b926044..aaffa8c4d017 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index 8a3d6993af20..34c761b12f8c 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index 37abd2631077..741cb6738cf3 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index 530f41fcbfe4..94d7f25c1302 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index 287d120b3dcb..08e79969d377 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index 10fb36755dcd..1c4b365b7a13 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index f99f169356a2..7d265d5b63c9 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index ed17f5045655..1512160339f1 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index c19fff66f9a0..d90c28269f0f 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index a0eaa74174b2..9097fa01d4ed 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 54f078c5652a..3c9bea7e2f02 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index 7295b5f24dde..7a9704d54343 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index 03a2d081c965..adb5860f621a 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index 60d978cec69e..bb96779909f4 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index 9a1647ad0af6..0c697ff4f923 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index a1128264217b..f1dd3bd6a543 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index 8d7782171162..78eb7f5dd524 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index a7f59c5f0528..a54fadfb2635 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index fe1e3a7ff19f..069ba9e09007 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index 4a538d8caf03..b28cb565c63f 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index 312a10f6ab21..52f0c4159621 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index e15142872186..a0ba89969dd8 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index b2749063d5a7..02cd8ed201a9 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
glue
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index 3b3a4a02e26d..8075f982936f 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index e44ff707577a..184633915e94 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index 41271ad8c4d9..bb0c5e8201fd 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index 7a6cd008e15d..990868a3cc5a 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index 8ad5e13b3092..fb8dcd1a00d7 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index faf3e0b757dd..09b74621f223 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 04a0bf00fc0e..2720938a05af 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index 14041de72f55..b7c34f684208 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index 19099b4e059c..023f559d7039 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index bceb3723cf48..1261f8a9638b 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index 06fb3ab6aec9..33617be8e48f 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index 34ff73a11b61..35c2bad53cff 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index 75470e7c037a..296317738420 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index cfa7a6943c4e..9e10295cd276 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 27b4850334d8..4e8473397bc3 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index 378beb8c9769..c6cf13ef2580 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index 155e4ca65325..fcc10efe52a7 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index 7f2ec2a68896..bcfe4e2fed5c 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index e6ec51340012..838c9beb3e53 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index 26d4716b5c8f..ebd568a921b2 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index 306797479c9a..b2fb88bcf872 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index 4e921ae2e198..b7730598096b 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index 78ff18e1ee1d..d2af7721c61c 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index b56409275ff3..4d6a4f84502d 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index d0f0af2e8167..fd2c8ecede7a 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index 56cacf30b1b5..6656a74f8763 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index 451eca50bff4..0e2336c37067 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index 30e8105e791b..9303241a9820 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index d42b380c1182..7636f935b421 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index 689a027c39a1..c4ac4e20a091 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index 093361552f52..41ef7ae6ca3e 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index b432688a6d55..f38dcc0749b2 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index a8916c7aa2aa..4776f774a11a 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index e95d12720535..2c2bcd720e53 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie/pom.xml b/services/macie/pom.xml
index 77517c7d5f5f..c582cf82abfd 100644
--- a/services/macie/pom.xml
+++ b/services/macie/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
macie
AWS Java SDK :: Services :: Macie
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index 1e6186c67afd..a63caeef2880 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index 3171b905ad1a..1848e10c6fd9 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 702ee22f7c7d..27590dfaa895 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index 6043f7c269be..3a8b7bc0a5aa 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index 821fb4fc9951..042881b5b942 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 8fc0f86ea3b2..4811d75101ca 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index 2bf3d1fa663a..c3ef7696d87b 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 12a1278332c8..bb98c470e99b 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index 51bc362eaf5b..dcbd7efadcd4 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
mediapackage
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 7376cd8172c7..0c52041e3048 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index d598cbd61f29..b2038e5d275c 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index 60a768496d0d..70c3887c6afa 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 28d53ca54e9b..830c60438b49 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index ebadc66d77eb..dc9d949dba64 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index 936be08e2ea0..02c4cddad293 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index 8fea3c296b52..f4a1090cb7e5 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index d83aec26783a..4b7ae875b31f 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index dfc762d314a0..f29b81154101 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index 8093511ea52f..84fdf7de4089 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index b6cc8b9323db..0668f2def53e 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index a5422c6c8ac2..dd409e38175c 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index 4f742cea3b52..a1c3612c4507 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.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 cb6b62a6faf9..412107969dfe 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index 17080ee933d2..269b68edcbf6 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index 9f8409a0c208..df0129f0b4c6 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index 3b42ff3b066a..505591ed28af 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 04a4c039eb6c..1fc3cbc25619 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 3d93129f529a..0832adbffe09 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index 85f2156cae0d..fbe8fe395aa0 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index abd84117655a..6e47a2aad05e 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index e7514ae5a687..8aa867874c17 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index 99e773aaf4ab..0a7cac63a950 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index 40bded39f5b3..9e0b7ed9fd9d 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.11
+ 2.11.12-SNAPSHOT
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index 8b08d3e1b51c..f8e5ef191a8f 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
pricing
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index 117ca4d4a3b1..ca02a2dd59ce 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index d95f7d1a7e86..389252875873 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index 8e6d8bb9416d..17f60a8eb0a6 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index 950ae2294e26..9097beac5ab0 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 795101048aaa..afff37bb9f05 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index 063e1fb1b820..87862e8351a8 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index ea0908498910..f1b288b20a77 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index b949fadee03e..ba8c90a13018 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index 48c0828a44c9..97a283bcbecd 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index 31aa3abce361..061d8e17ef59 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.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 1e41390f7dd1..c7eeed258b48 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index 577c9db2cdb3..e81c76e48239 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index 69e8cf0907cd..11ff6b816635 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index 497222da231b..8416a04f167c 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index fd6b2ca7093d..6aa0dbf51518 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index 39e0b4c9ee81..189b0c4e7f77 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index 318c7df54f01..b12d95d1320d 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 638b85724ef0..93eed0acfd12 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index 3e9b8d6267fd..7905c270f551 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index 9458e871e687..56934662ee8e 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index 5451da0c027a..8ef34e1d7502 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index 369f8db36a73..1491b524998a 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index 9a2d2063b479..886162efa7f8 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index 701e7980728e..2765a2b34c7e 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 14c059234ac6..19ab1bd498e1 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index 4339ba893a1a..607deeff7858 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index e441730f4b96..b4269acdf92f 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index 2538c729e97f..71df3c0e4ca9 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index b81e97156c70..6c7c11d132ee 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index 4d224aede6cc..298adfa71169 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index 228dfdf38550..ed9944e8297a 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index 12494d0cd90d..e405419342bb 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index 59e7847c97c9..88adeaf44282 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index 42e46ed20db2..27d2102e3eb2 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index cad6ae43eeb3..3bb4ea747df5 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index 3defaffa1d90..6f452afba95e 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index ad9ef2d85e59..41f84a1c1329 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.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 3943799d95c1..dc8883217891 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index e661f100584a..bdee4ddc2446 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index 2567782a2996..de7bfc1be40e 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index 618137c7d99c..c215cdb38d23 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/support/pom.xml b/services/support/pom.xml
index 4db303f155da..2c7f119bc466 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index a379f8aced45..026e216fec44 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index c433ca42c30d..61e424033943 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index aa421d8db94a..7a4df33b99f5 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index 02e64de4cfb4..134f209391c8 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index e2c8a714009a..2a66f5d206bf 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index f2e2d9dacb6e..5093cf225ab4 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
translate
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index 6e946e1cf9a6..fc4440425d28 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index b1355c7ba69a..7055ad4ea438 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index 1da972cd8d5a..ee2826a08b89 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index 58d562dc724f..52dd8df8b3e6 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index 60362ae35072..fdb3d0e9deb0 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index 8309cd3a22ba..727ff1d20dca 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 9503908be005..5a8cb9eafbed 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.12-SNAPSHOT
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index 18c44d99dbeb..4b4cc84b78d8 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.11
+ 2.11.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 50e737f15502..c5ba98edb9d7 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.11.11
+ 2.11.12-SNAPSHOT
../../pom.xml
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index 8bba5d15a7fd..c0c8af4a2258 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.11.11
+ 2.11.12-SNAPSHOT
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index 427523f4e7dd..ac243c68f9b5 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.11.11
+ 2.11.12-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index d96892168371..347f03727054 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.11.11
+ 2.11.12-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 1716701a3dbc..be39c983a501 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.11.11
+ 2.11.12-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index 542b09a98006..d7b0d11562d3 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.11.11
+ 2.11.12-SNAPSHOT
../../pom.xml
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index fe16f3236d70..0e719937802b 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.11.11
+ 2.11.12-SNAPSHOT
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index 01dfe84b6979..056e28a5a472 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.11.11
+ 2.11.12-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index dcfe5cf67047..0a228677dcca 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.11.11
+ 2.11.12-SNAPSHOT
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index 7a1b356b55c3..cb589e90fae0 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.11.11
+ 2.11.12-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index aab1d51405a3..094b4f0e75da 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.11
+ 2.11.12-SNAPSHOT
4.0.0
From 928767ddbae32b5c5ede4f9c8f29a51a1b093ae0 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Wed, 8 Apr 2020 18:20:51 +0000
Subject: [PATCH 031/604] AWS CloudFormation Update: The OrganizationalUnitIds
parameter on StackSet and the OrganizationalUnitId parameter on
StackInstance, StackInstanceSummary, and StackSetOperationResultSummary are
now reserved for internal use. No data is returned for this parameter.
---
.../feature-AWSCloudFormation-274b657.json | 5 +
.../codegen-resources/service-2.json | 112 +++++++++---------
2 files changed, 61 insertions(+), 56 deletions(-)
create mode 100644 .changes/next-release/feature-AWSCloudFormation-274b657.json
diff --git a/.changes/next-release/feature-AWSCloudFormation-274b657.json b/.changes/next-release/feature-AWSCloudFormation-274b657.json
new file mode 100644
index 000000000000..1011488ab53c
--- /dev/null
+++ b/.changes/next-release/feature-AWSCloudFormation-274b657.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "AWS CloudFormation",
+ "description": "The OrganizationalUnitIds parameter on StackSet and the OrganizationalUnitId parameter on StackInstance, StackInstanceSummary, and StackSetOperationResultSummary are now reserved for internal use. No data is returned for this parameter."
+}
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 e82b51e984d5..368638c1a56f 100644
--- a/services/cloudformation/src/main/resources/codegen-resources/service-2.json
+++ b/services/cloudformation/src/main/resources/codegen-resources/service-2.json
@@ -95,7 +95,7 @@
{"shape":"InvalidOperationException"},
{"shape":"LimitExceededException"}
],
- "documentation":"Creates stack instances for the specified accounts, within the specified regions. A stack instance refers to a stack in a specific account and region. You must specify at least one value for either Accounts
or DeploymentTargets
, and you must specify at least one value for Regions
.
"
+ "documentation":"Creates stack instances for the specified accounts, within the specified Regions. A stack instance refers to a stack in a specific account and Region. You must specify at least one value for either Accounts
or DeploymentTargets
, and you must specify at least one value for Regions
.
"
},
"CreateStackSet":{
"name":"CreateStackSet",
@@ -161,7 +161,7 @@
{"shape":"StaleRequestException"},
{"shape":"InvalidOperationException"}
],
- "documentation":"Deletes stack instances for the specified accounts, in the specified regions.
"
+ "documentation":"Deletes stack instances for the specified accounts, in the specified Regions.
"
},
"DeleteStackSet":{
"name":"DeleteStackSet",
@@ -268,7 +268,7 @@
{"shape":"StackSetNotFoundException"},
{"shape":"StackInstanceNotFoundException"}
],
- "documentation":"Returns the stack instance that's associated with the specified stack set, AWS account, and region.
For a list of stack instances that are associated with a specific stack set, use ListStackInstances.
"
+ "documentation":"Returns the stack instance that's associated with the specified stack set, AWS account, and Region.
For a list of stack instances that are associated with a specific stack set, use ListStackInstances.
"
},
"DescribeStackResource":{
"name":"DescribeStackResource",
@@ -535,7 +535,7 @@
"shape":"ListExportsOutput",
"resultWrapper":"ListExportsResult"
},
- "documentation":"Lists all exported output values in the account and region in which you call this action. Use this action to see the exported output values that you can import into other stacks. To import values, use the Fn::ImportValue
function.
For more information, see AWS CloudFormation Export Stack Output Values.
"
+ "documentation":"Lists all exported output values in the account and Region in which you call this action. Use this action to see the exported output values that you can import into other stacks. To import values, use the Fn::ImportValue
function.
For more information, see AWS CloudFormation Export Stack Output Values.
"
},
"ListImports":{
"name":"ListImports",
@@ -564,7 +564,7 @@
"errors":[
{"shape":"StackSetNotFoundException"}
],
- "documentation":"Returns summary information about stack instances that are associated with the specified stack set. You can filter for stack instances that are associated with a specific AWS account name or region.
"
+ "documentation":"Returns summary information about stack instances that are associated with the specified stack set. You can filter for stack instances that are associated with a specific AWS account name or Region.
"
},
"ListStackResources":{
"name":"ListStackResources",
@@ -721,7 +721,7 @@
"errors":[
{"shape":"CFNRegistryException"}
],
- "documentation":"Registers a type with the CloudFormation service. Registering a type makes it available for use in CloudFormation templates in your AWS account, and includes:
-
Validating the resource schema
-
Determining which handlers have been specified for the resource
-
Making the resource type available for use in your account
For more information on how to develop types and ready them for registeration, see Creating Resource Providers in the CloudFormation CLI User Guide.
Once you have initiated a registration request using RegisterType
, you can use DescribeTypeRegistration
to monitor the progress of the registration request.
",
+ "documentation":"Registers a type with the CloudFormation service. Registering a type makes it available for use in CloudFormation templates in your AWS account, and includes:
-
Validating the resource schema
-
Determining which handlers have been specified for the resource
-
Making the resource type available for use in your account
For more information on how to develop types and ready them for registeration, see Creating Resource Providers in the CloudFormation CLI User Guide.
You can have a maximum of 50 resource type versions registered at a time. This maximum is per account and per region. Use DeregisterType to deregister specific resource type versions if necessary.
Once you have initiated a registration request using RegisterType
, you can use DescribeTypeRegistration
to monitor the progress of the registration request.
",
"idempotent":true
},
"SetStackPolicy":{
@@ -814,7 +814,7 @@
{"shape":"StaleRequestException"},
{"shape":"InvalidOperationException"}
],
- "documentation":"Updates the parameter values for stack instances for the specified accounts, within the specified regions. A stack instance refers to a stack in a specific account and region.
You can only update stack instances in regions and accounts where they already exist; to create additional stack instances, use CreateStackInstances.
During stack set updates, any parameters overridden for a stack instance are not updated, but retain their overridden value.
You can only update the parameter values that are specified in the stack set; to add or delete a parameter itself, use UpdateStackSet to update the stack set template. If you add a parameter to a template, before you can override the parameter value specified in the stack set you must first use UpdateStackSet to update all stack instances with the updated template and parameter value specified in the stack set. Once a stack instance has been updated with the new parameter, you can then override the parameter value using UpdateStackInstances
.
"
+ "documentation":"Updates the parameter values for stack instances for the specified accounts, within the specified Regions. A stack instance refers to a stack in a specific account and Region.
You can only update stack instances in Regions and accounts where they already exist; to create additional stack instances, use CreateStackInstances.
During stack set updates, any parameters overridden for a stack instance are not updated, but retain their overridden value.
You can only update the parameter values that are specified in the stack set; to add or delete a parameter itself, use UpdateStackSet to update the stack set template. If you add a parameter to a template, before you can override the parameter value specified in the stack set you must first use UpdateStackSet to update all stack instances with the updated template and parameter value specified in the stack set. Once a stack instance has been updated with the new parameter, you can then override the parameter value using UpdateStackInstances
.
"
},
"UpdateStackSet":{
"name":"UpdateStackSet",
@@ -835,7 +835,7 @@
{"shape":"InvalidOperationException"},
{"shape":"StackInstanceNotFoundException"}
],
- "documentation":"Updates the stack set, and associated stack instances in the specified accounts and regions.
Even if the stack set operation created by updating the stack set fails (completely or partially, below or above a specified failure tolerance), the stack set is updated with your changes. Subsequent CreateStackInstances calls on the specified stack set use the updated stack set.
"
+ "documentation":"Updates the stack set, and associated stack instances in the specified accounts and Regions.
Even if the stack set operation created by updating the stack set fails (completely or partially, below or above a specified failure tolerance), the stack set is updated with your changes. Subsequent CreateStackInstances calls on the specified stack set use the updated stack set.
"
},
"UpdateTerminationProtection":{
"name":"UpdateTerminationProtection",
@@ -874,14 +874,14 @@
"members":{
"Status":{
"shape":"AccountGateStatus",
- "documentation":"The status of the account gate function.
-
SUCCEEDED
: The account gate function has determined that the account and region passes any requirements for a stack set operation to occur. AWS CloudFormation proceeds with the stack operation in that account and region.
-
FAILED
: The account gate function has determined that the account and region does not meet the requirements for a stack set operation to occur. AWS CloudFormation cancels the stack set operation in that account and region, and sets the stack set operation result status for that account and region to FAILED
.
-
SKIPPED
: AWS CloudFormation has skipped calling the account gate function for this account and region, for one of the following reasons:
-
An account gate function has not been specified for the account and region. AWS CloudFormation proceeds with the stack set operation in this account and region.
-
The AWSCloudFormationStackSetExecutionRole
of the stack set adminstration account lacks permissions to invoke the function. AWS CloudFormation proceeds with the stack set operation in this account and region.
-
Either no action is necessary, or no action is possible, on the stack. AWS CloudFormation skips the stack set operation in this account and region.
"
+ "documentation":"The status of the account gate function.
-
SUCCEEDED
: The account gate function has determined that the account and Region passes any requirements for a stack set operation to occur. AWS CloudFormation proceeds with the stack operation in that account and Region.
-
FAILED
: The account gate function has determined that the account and Region does not meet the requirements for a stack set operation to occur. AWS CloudFormation cancels the stack set operation in that account and Region, and sets the stack set operation result status for that account and Region to FAILED
.
-
SKIPPED
: AWS CloudFormation has skipped calling the account gate function for this account and Region, for one of the following reasons:
-
An account gate function has not been specified for the account and Region. AWS CloudFormation proceeds with the stack set operation in this account and Region.
-
The AWSCloudFormationStackSetExecutionRole
of the stack set adminstration account lacks permissions to invoke the function. AWS CloudFormation proceeds with the stack set operation in this account and Region.
-
Either no action is necessary, or no action is possible, on the stack. AWS CloudFormation skips the stack set operation in this account and Region.
"
},
"StatusReason":{
"shape":"AccountGateStatusReason",
- "documentation":"The reason for the account gate status assigned to this account and region for the stack set operation.
"
+ "documentation":"The reason for the account gate status assigned to this account and Region for the stack set operation.
"
}
},
- "documentation":"Structure that contains the results of the account gate function which AWS CloudFormation invokes, if present, before proceeding with a stack set operation in an account and region.
For each account and region, AWS CloudFormation lets you specify a Lamdba function that encapsulates any requirements that must be met before CloudFormation can proceed with a stack set operation in that account and region. CloudFormation invokes the function each time a stack set operation is requested for that account and region; if the function returns FAILED
, CloudFormation cancels the operation in that account and region, and sets the stack set operation result status for that account and region to FAILED
.
For more information, see Configuring a target account gate.
"
+ "documentation":"Structure that contains the results of the account gate function which AWS CloudFormation invokes, if present, before proceeding with a stack set operation in an account and Region.
For each account and Region, AWS CloudFormation lets you specify a Lamdba function that encapsulates any requirements that must be met before CloudFormation can proceed with a stack set operation in that account and Region. CloudFormation invokes the function each time a stack set operation is requested for that account and Region; if the function returns FAILED
, CloudFormation cancels the operation in that account and Region, and sets the stack set operation result status for that account and Region to FAILED
.
For more information, see Configuring a target account gate.
"
},
"AccountGateStatus":{
"type":"string",
@@ -1268,7 +1268,7 @@
"members":{
"StackName":{
"shape":"StackName",
- "documentation":"The name that is associated with the stack. The name must be unique in the region in which you are creating the stack.
A stack name can contain only alphanumeric characters (case sensitive) and hyphens. It must start with an alphabetic character and cannot be longer than 128 characters.
"
+ "documentation":"The name that is associated with the stack. The name must be unique in the Region in which you are creating the stack.
A stack name can contain only alphanumeric characters (case sensitive) and hyphens. It must start with an alphabetic character and cannot be longer than 128 characters.
"
},
"TemplateBody":{
"shape":"TemplateBody",
@@ -1320,7 +1320,7 @@
},
"StackPolicyURL":{
"shape":"StackPolicyURL",
- "documentation":"Location of a file containing the stack policy. The URL must point to a policy (maximum size: 16 KB) located in an S3 bucket in the same region as the stack. You can specify either the StackPolicyBody
or the StackPolicyURL
parameter, but not both.
"
+ "documentation":"Location of a file containing the stack policy. The URL must point to a policy (maximum size: 16 KB) located in an S3 bucket in the same Region as the stack. You can specify either the StackPolicyBody
or the StackPolicyURL
parameter, but not both.
"
},
"Tags":{
"shape":"Tags",
@@ -1350,7 +1350,7 @@
},
"Accounts":{
"shape":"AccountList",
- "documentation":"[Self-managed permissions] The names of one or more AWS accounts that you want to create stack instances in the specified region(s) for.
You can specify Accounts
or DeploymentTargets
, but not both.
"
+ "documentation":"[Self-managed
permissions] The names of one or more AWS accounts that you want to create stack instances in the specified Region(s) for.
You can specify Accounts
or DeploymentTargets
, but not both.
"
},
"DeploymentTargets":{
"shape":"DeploymentTargets",
@@ -1358,11 +1358,11 @@
},
"Regions":{
"shape":"RegionList",
- "documentation":"The names of one or more regions where you want to create stack instances using the specified AWS account(s).
"
+ "documentation":"The names of one or more Regions where you want to create stack instances using the specified AWS account(s).
"
},
"ParameterOverrides":{
"shape":"Parameters",
- "documentation":"A list of stack set parameters whose values you want to override in the selected stack instances.
Any overridden parameter values will be applied to all stack instances in the specified accounts and regions. When specifying parameters and their values, be aware of how AWS CloudFormation sets parameter values during stack instance operations:
-
To override the current value for a parameter, include the parameter and specify its value.
-
To leave a parameter set to its present value, you can do one of the following:
-
To set all overridden parameter back to the values specified in the stack set, specify a parameter list but do not include any parameters.
-
To leave all parameters set to their present values, do not specify this property at all.
During stack set updates, any parameter values overridden for a stack instance are not updated, but retain their overridden value.
You can only override the parameter values that are specified in the stack set; to add or delete a parameter itself, use UpdateStackSet to update the stack set template.
"
+ "documentation":"A list of stack set parameters whose values you want to override in the selected stack instances.
Any overridden parameter values will be applied to all stack instances in the specified accounts and Regions. When specifying parameters and their values, be aware of how AWS CloudFormation sets parameter values during stack instance operations:
-
To override the current value for a parameter, include the parameter and specify its value.
-
To leave a parameter set to its present value, you can do one of the following:
-
To set all overridden parameter back to the values specified in the stack set, specify a parameter list but do not include any parameters.
-
To leave all parameters set to their present values, do not specify this property at all.
During stack set updates, any parameter values overridden for a stack instance are not updated, but retain their overridden value.
You can only override the parameter values that are specified in the stack set; to add or delete a parameter itself, use UpdateStackSet to update the stack set template.
"
},
"OperationPreferences":{
"shape":"StackSetOperationPreferences",
@@ -1400,7 +1400,7 @@
"members":{
"StackSetName":{
"shape":"StackSetName",
- "documentation":"The name to associate with the stack set. The name must be unique in the region where you create your stack set.
A stack name can contain only alphanumeric characters (case-sensitive) and hyphens. It must start with an alphabetic character and can't be longer than 128 characters.
"
+ "documentation":"The name to associate with the stack set. The name must be unique in the Region where you create your stack set.
A stack name can contain only alphanumeric characters (case-sensitive) and hyphens. It must start with an alphabetic character and can't be longer than 128 characters.
"
},
"Description":{
"shape":"Description",
@@ -1440,7 +1440,7 @@
},
"AutoDeployment":{
"shape":"AutoDeployment",
- "documentation":"Describes whether StackSets automatically deploys to AWS Organizations accounts that are added to the target organization or organizational unit (OU). Specify only if PermissionModel
is SERVICE_MANAGED
.
If you specify AutoDeployment
, do not specify DeploymentTargets
or Regions
.
"
+ "documentation":"Describes whether StackSets automatically deploys to AWS Organizations accounts that are added to the target organization or organizational unit (OU). Specify only if PermissionModel
is SERVICE_MANAGED
.
"
},
"ClientRequestToken":{
"shape":"ClientRequestToken",
@@ -1529,7 +1529,7 @@
},
"Accounts":{
"shape":"AccountList",
- "documentation":"[Self-managed permissions] The names of the AWS accounts that you want to delete stack instances for.
You can specify Accounts
or DeploymentTargets
, but not both.
"
+ "documentation":"[Self-managed
permissions] The names of the AWS accounts that you want to delete stack instances for.
You can specify Accounts
or DeploymentTargets
, but not both.
"
},
"DeploymentTargets":{
"shape":"DeploymentTargets",
@@ -1537,7 +1537,7 @@
},
"Regions":{
"shape":"RegionList",
- "documentation":"The regions where you want to delete stack set instances.
"
+ "documentation":"The Regions where you want to delete stack set instances.
"
},
"OperationPreferences":{
"shape":"StackSetOperationPreferences",
@@ -1588,10 +1588,10 @@
},
"OrganizationalUnitIds":{
"shape":"OrganizationalUnitIdList",
- "documentation":"The organization root ID or organizational unit (OUs) IDs to which StackSets deploys.
"
+ "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.
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 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
.
"
},
"DeprecatedStatus":{
"type":"string",
@@ -1834,7 +1834,7 @@
},
"StackInstanceRegion":{
"shape":"Region",
- "documentation":"The name of a region that's associated with this stack instance.
"
+ "documentation":"The name of a Region that's associated with this stack instance.
"
}
}
},
@@ -2656,7 +2656,7 @@
},
"StackInstanceRegion":{
"shape":"Region",
- "documentation":"The name of the region where you want to list stack instances.
"
+ "documentation":"The name of the Region where you want to list stack instances.
"
}
}
},
@@ -2732,7 +2732,7 @@
"members":{
"Summaries":{
"shape":"StackSetOperationResultSummaries",
- "documentation":"A list of StackSetOperationResultSummary
structures that contain information about the specified operation results, for accounts and regions that are included in the operation.
"
+ "documentation":"A list of StackSetOperationResultSummary
structures that contain information about the specified operation results, for accounts and Regions that are included in the operation.
"
},
"NextToken":{
"shape":"NextToken",
@@ -3716,7 +3716,7 @@
},
"StackPolicyURL":{
"shape":"StackPolicyURL",
- "documentation":"Location of a file containing the stack policy. The URL must point to a policy (maximum size: 16 KB) located in an S3 bucket in the same region as the stack. You can specify either the StackPolicyBody
or the StackPolicyURL
parameter, but not both.
"
+ "documentation":"Location of a file containing the stack policy. The URL must point to a policy (maximum size: 16 KB) located in an S3 bucket in the same Region as the stack. You can specify either the StackPolicyBody
or the StackPolicyURL
parameter, but not both.
"
}
},
"documentation":"The input for the SetStackPolicy action.
"
@@ -3997,11 +3997,11 @@
},
"Region":{
"shape":"Region",
- "documentation":"The name of the AWS region that the stack instance is associated with.
"
+ "documentation":"The name of the AWS Region that the stack instance is associated with.
"
},
"Account":{
"shape":"Account",
- "documentation":"[Self-managed permissions] The name of the AWS account that the stack instance is associated with.
"
+ "documentation":"[Self-managed
permissions] The name of the AWS account that the stack instance is associated with.
"
},
"StackId":{
"shape":"StackId",
@@ -4021,7 +4021,7 @@
},
"OrganizationalUnitId":{
"shape":"OrganizationalUnitId",
- "documentation":"[Service-managed
permissions] The organization root ID or organizational unit (OU) ID that the stack instance is associated with.
"
+ "documentation":"Reserved for internal use. No data returned.
"
},
"DriftStatus":{
"shape":"StackDriftStatus",
@@ -4032,7 +4032,7 @@
"documentation":"Most recent time when CloudFormation performed a drift detection operation on the stack instance. This value will be NULL
for any stack instance on which drift detection has not yet been performed.
"
}
},
- "documentation":"An AWS CloudFormation stack, in a specific account and region, that's part of a stack set operation. A stack instance is a reference to an attempted or actual stack in a given account within a given region. A stack instance can exist without a stack—for example, if the stack couldn't be created for some reason. A stack instance is associated with only one stack set. Each stack instance contains the ID of its associated stack set, as well as the ID of the actual stack and the stack status.
"
+ "documentation":"An AWS CloudFormation stack, in a specific account and Region, that's part of a stack set operation. A stack instance is a reference to an attempted or actual stack in a given account within a given Region. A stack instance can exist without a stack—for example, if the stack couldn't be created for some reason. A stack instance is associated with only one stack set. Each stack instance contains the ID of its associated stack set, as well as the ID of the actual stack and the stack status.
"
},
"StackInstanceNotFoundException":{
"type":"structure",
@@ -4067,11 +4067,11 @@
},
"Region":{
"shape":"Region",
- "documentation":"The name of the AWS region that the stack instance is associated with.
"
+ "documentation":"The name of the AWS Region that the stack instance is associated with.
"
},
"Account":{
"shape":"Account",
- "documentation":"[Self-managed permissions] The name of the AWS account that the stack instance is associated with.
"
+ "documentation":"[Self-managed
permissions] The name of the AWS account that the stack instance is associated with.
"
},
"StackId":{
"shape":"StackId",
@@ -4087,7 +4087,7 @@
},
"OrganizationalUnitId":{
"shape":"OrganizationalUnitId",
- "documentation":"[Service-managed
permissions] The organization root ID or organizational unit (OU) ID that the stack instance is associated with.
"
+ "documentation":"Reserved for internal use. No data returned.
"
},
"DriftStatus":{
"shape":"StackDriftStatus",
@@ -4445,10 +4445,10 @@
},
"OrganizationalUnitIds":{
"shape":"OrganizationalUnitIdList",
- "documentation":"[Service-managed
permissions] The organization root ID or organizational unit (OUs) IDs to which stacks in your stack set have been deployed.
"
+ "documentation":"Reserved for internal use. No data returned.
"
}
},
- "documentation":"A structure that contains information about a stack set. A stack set enables you to provision stacks into AWS accounts and across regions by using a single CloudFormation template. In the stack set, you specify the template to use, as well as any parameters and capabilities that the template requires.
"
+ "documentation":"A structure that contains information about a stack set. A stack set enables you to provision stacks into AWS accounts and across Regions by using a single CloudFormation template. In the stack set, you specify the template to use, as well as any parameters and capabilities that the template requires.
"
},
"StackSetARN":{"type":"string"},
"StackSetDriftDetectionDetails":{
@@ -4554,7 +4554,7 @@
},
"Status":{
"shape":"StackSetOperationStatus",
- "documentation":"The status of the operation.
-
FAILED
: The operation exceeded the specified failure tolerance. The failure tolerance value that you've set for an operation is applied for each region during stack create and update operations. If the number of failed stacks within a region exceeds the failure tolerance, the status of the operation in the region is set to FAILED
. This in turn sets the status of the operation as a whole to FAILED
, and AWS CloudFormation cancels the operation in any remaining regions.
-
QUEUED
: [Service-managed permissions] For automatic deployments that require a sequence of operations. The operation is queued to be performed. For more information, see the stack set operation status codes in the AWS CloudFormation User Guide.
-
RUNNING
: The operation is currently being performed.
-
STOPPED
: The user has cancelled the operation.
-
STOPPING
: The operation is in the process of stopping, at user request.
-
SUCCEEDED
: The operation completed creating or updating all the specified stacks without exceeding the failure tolerance for the operation.
"
+ "documentation":"The status of the operation.
-
FAILED
: The operation exceeded the specified failure tolerance. The failure tolerance value that you've set for an operation is applied for each Region during stack create and update operations. If the number of failed stacks within a Region exceeds the failure tolerance, the status of the operation in the Region is set to FAILED
. This in turn sets the status of the operation as a whole to FAILED
, and AWS CloudFormation cancels the operation in any remaining Regions.
-
QUEUED
: [Service-managed
permissions] For automatic deployments that require a sequence of operations, the operation is queued to be performed. For more information, see the stack set operation status codes in the AWS CloudFormation User Guide.
-
RUNNING
: The operation is currently being performed.
-
STOPPED
: The user has cancelled the operation.
-
STOPPING
: The operation is in the process of stopping, at user request.
-
SUCCEEDED
: The operation completed creating or updating all the specified stacks without exceeding the failure tolerance for the operation.
"
},
"OperationPreferences":{
"shape":"StackSetOperationPreferences",
@@ -4574,11 +4574,11 @@
},
"CreationTimestamp":{
"shape":"Timestamp",
- "documentation":"The time at which the operation was initiated. Note that the creation times for the stack set operation might differ from the creation time of the individual stacks themselves. This is because AWS CloudFormation needs to perform preparatory work for the operation, such as dispatching the work to the requested regions, before actually creating the first stacks.
"
+ "documentation":"The time at which the operation was initiated. Note that the creation times for the stack set operation might differ from the creation time of the individual stacks themselves. This is because AWS CloudFormation needs to perform preparatory work for the operation, such as dispatching the work to the requested Regions, before actually creating the first stacks.
"
},
"EndTimestamp":{
"shape":"Timestamp",
- "documentation":"The time at which the stack set operation ended, across all accounts and regions specified. Note that this doesn't necessarily mean that the stack set operation was successful, or even attempted, in each account or region.
"
+ "documentation":"The time at which the stack set operation ended, across all accounts and Regions specified. Note that this doesn't necessarily mean that the stack set operation was successful, or even attempted, in each account or Region.
"
},
"DeploymentTargets":{
"shape":"DeploymentTargets",
@@ -4605,15 +4605,15 @@
"members":{
"RegionOrder":{
"shape":"RegionList",
- "documentation":"The order of the regions in where you want to perform the stack operation.
"
+ "documentation":"The order of the Regions in where you want to perform the stack operation.
"
},
"FailureToleranceCount":{
"shape":"FailureToleranceCount",
- "documentation":"The number of accounts, per region, for which this operation can fail before AWS CloudFormation stops the operation in that region. If the operation is stopped in a region, AWS CloudFormation doesn't attempt the operation in any subsequent regions.
Conditional: You must specify either FailureToleranceCount
or FailureTolerancePercentage
(but not both).
"
+ "documentation":"The number of accounts, per Region, for which this operation can fail before AWS CloudFormation stops the operation in that Region. If the operation is stopped in a Region, AWS CloudFormation doesn't attempt the operation in any subsequent Regions.
Conditional: You must specify either FailureToleranceCount
or FailureTolerancePercentage
(but not both).
"
},
"FailureTolerancePercentage":{
"shape":"FailureTolerancePercentage",
- "documentation":"The percentage of accounts, per region, for which this stack operation can fail before AWS CloudFormation stops the operation in that region. If the operation is stopped in a region, AWS CloudFormation doesn't attempt the operation in any subsequent regions.
When calculating the number of accounts based on the specified percentage, AWS CloudFormation rounds down to the next whole number.
Conditional: You must specify either FailureToleranceCount
or FailureTolerancePercentage
, but not both.
"
+ "documentation":"The percentage of accounts, per Region, for which this stack operation can fail before AWS CloudFormation stops the operation in that Region. If the operation is stopped in a Region, AWS CloudFormation doesn't attempt the operation in any subsequent Regions.
When calculating the number of accounts based on the specified percentage, AWS CloudFormation rounds down to the next whole number.
Conditional: You must specify either FailureToleranceCount
or FailureTolerancePercentage
, but not both.
"
},
"MaxConcurrentCount":{
"shape":"MaxConcurrentCount",
@@ -4645,15 +4645,15 @@
"members":{
"Account":{
"shape":"Account",
- "documentation":"[Self-managed permissions] The name of the AWS account for this operation result.
"
+ "documentation":"[Self-managed
permissions] The name of the AWS account for this operation result.
"
},
"Region":{
"shape":"Region",
- "documentation":"The name of the AWS region for this operation result.
"
+ "documentation":"The name of the AWS Region for this operation result.
"
},
"Status":{
"shape":"StackSetOperationResultStatus",
- "documentation":"The result status of the stack set operation for the given account in the given region.
-
CANCELLED
: The operation in the specified account and region has been cancelled. This is either because a user has stopped the stack set operation, or because the failure tolerance of the stack set operation has been exceeded.
-
FAILED
: The operation in the specified account and region failed.
If the stack set operation fails in enough accounts within a region, the failure tolerance for the stack set operation as a whole might be exceeded.
-
RUNNING
: The operation in the specified account and region is currently in progress.
-
PENDING
: The operation in the specified account and region has yet to start.
-
SUCCEEDED
: The operation in the specified account and region completed successfully.
"
+ "documentation":"The result status of the stack set operation for the given account in the given Region.
-
CANCELLED
: The operation in the specified account and Region has been cancelled. This is either because a user has stopped the stack set operation, or because the failure tolerance of the stack set operation has been exceeded.
-
FAILED
: The operation in the specified account and Region failed.
If the stack set operation fails in enough accounts within a Region, the failure tolerance for the stack set operation as a whole might be exceeded.
-
RUNNING
: The operation in the specified account and Region is currently in progress.
-
PENDING
: The operation in the specified account and Region has yet to start.
-
SUCCEEDED
: The operation in the specified account and Region completed successfully.
"
},
"StatusReason":{
"shape":"Reason",
@@ -4665,10 +4665,10 @@
},
"OrganizationalUnitId":{
"shape":"OrganizationalUnitId",
- "documentation":"[Service-managed
permissions] The organization root ID or organizational unit (OU) ID for this operation result.
"
+ "documentation":"Reserved for internal use. No data returned.
"
}
},
- "documentation":"The structure that contains information about a specified operation's results for a given account in a given region.
"
+ "documentation":"The structure that contains information about a specified operation's results for a given account in a given Region.
"
},
"StackSetOperationStatus":{
"type":"string",
@@ -4698,15 +4698,15 @@
},
"Status":{
"shape":"StackSetOperationStatus",
- "documentation":"The overall status of the operation.
-
FAILED
: The operation exceeded the specified failure tolerance. The failure tolerance value that you've set for an operation is applied for each region during stack create and update operations. If the number of failed stacks within a region exceeds the failure tolerance, the status of the operation in the region is set to FAILED
. This in turn sets the status of the operation as a whole to FAILED
, and AWS CloudFormation cancels the operation in any remaining regions.
-
QUEUED
: [Service-managed permissions] For automatic deployments that require a sequence of operations. The operation is queued to be performed. For more information, see the stack set operation status codes in the AWS CloudFormation User Guide.
-
RUNNING
: The operation is currently being performed.
-
STOPPED
: The user has cancelled the operation.
-
STOPPING
: The operation is in the process of stopping, at user request.
-
SUCCEEDED
: The operation completed creating or updating all the specified stacks without exceeding the failure tolerance for the operation.
"
+ "documentation":"The overall status of the operation.
-
FAILED
: The operation exceeded the specified failure tolerance. The failure tolerance value that you've set for an operation is applied for each Region during stack create and update operations. If the number of failed stacks within a Region exceeds the failure tolerance, the status of the operation in the Region is set to FAILED
. This in turn sets the status of the operation as a whole to FAILED
, and AWS CloudFormation cancels the operation in any remaining Regions.
-
QUEUED
: [Service-managed
permissions] For automatic deployments that require a sequence of operations, the operation is queued to be performed. For more information, see the stack set operation status codes in the AWS CloudFormation User Guide.
-
RUNNING
: The operation is currently being performed.
-
STOPPED
: The user has cancelled the operation.
-
STOPPING
: The operation is in the process of stopping, at user request.
-
SUCCEEDED
: The operation completed creating or updating all the specified stacks without exceeding the failure tolerance for the operation.
"
},
"CreationTimestamp":{
"shape":"Timestamp",
- "documentation":"The time at which the operation was initiated. Note that the creation times for the stack set operation might differ from the creation time of the individual stacks themselves. This is because AWS CloudFormation needs to perform preparatory work for the operation, such as dispatching the work to the requested regions, before actually creating the first stacks.
"
+ "documentation":"The time at which the operation was initiated. Note that the creation times for the stack set operation might differ from the creation time of the individual stacks themselves. This is because AWS CloudFormation needs to perform preparatory work for the operation, such as dispatching the work to the requested Regions, before actually creating the first stacks.
"
},
"EndTimestamp":{
"shape":"Timestamp",
- "documentation":"The time at which the stack set operation ended, across all accounts and regions specified. Note that this doesn't necessarily mean that the stack set operation was successful, or even attempted, in each account or region.
"
+ "documentation":"The time at which the stack set operation ended, across all accounts and Regions specified. Note that this doesn't necessarily mean that the stack set operation was successful, or even attempted, in each account or Region.
"
}
},
"documentation":"The structures that contain summary information about the specified operation.
"
@@ -5128,7 +5128,7 @@
},
"StackPolicyDuringUpdateURL":{
"shape":"StackPolicyDuringUpdateURL",
- "documentation":"Location of a file containing the temporary overriding stack policy. The URL must point to a policy (max size: 16KB) located in an S3 bucket in the same region as the stack. You can specify either the StackPolicyDuringUpdateBody
or the StackPolicyDuringUpdateURL
parameter, but not both.
If you want to update protected resources, specify a temporary overriding stack policy during this update. If you do not specify a stack policy, the current policy that is associated with the stack will be used.
"
+ "documentation":"Location of a file containing the temporary overriding stack policy. The URL must point to a policy (max size: 16KB) located in an S3 bucket in the same Region as the stack. You can specify either the StackPolicyDuringUpdateBody
or the StackPolicyDuringUpdateURL
parameter, but not both.
If you want to update protected resources, specify a temporary overriding stack policy during this update. If you do not specify a stack policy, the current policy that is associated with the stack will be used.
"
},
"Parameters":{
"shape":"Parameters",
@@ -5156,7 +5156,7 @@
},
"StackPolicyURL":{
"shape":"StackPolicyURL",
- "documentation":"Location of a file containing the updated stack policy. The URL must point to a policy (max size: 16KB) located in an S3 bucket in the same region as the stack. You can specify either the StackPolicyBody
or the StackPolicyURL
parameter, but not both.
You might update the stack policy, for example, in order to protect a new resource that you created during a stack update. If you do not specify a stack policy, the current policy that is associated with the stack is unchanged.
"
+ "documentation":"Location of a file containing the updated stack policy. The URL must point to a policy (max size: 16KB) located in an S3 bucket in the same Region as the stack. You can specify either the StackPolicyBody
or the StackPolicyURL
parameter, but not both.
You might update the stack policy, for example, in order to protect a new resource that you created during a stack update. If you do not specify a stack policy, the current policy that is associated with the stack is unchanged.
"
},
"NotificationARNs":{
"shape":"NotificationARNs",
@@ -5186,7 +5186,7 @@
},
"Accounts":{
"shape":"AccountList",
- "documentation":"[Self-managed permissions] The names of one or more AWS accounts for which you want to update parameter values for stack instances. The overridden parameter values will be applied to all stack instances in the specified accounts and regions.
You can specify Accounts
or DeploymentTargets
, but not both.
"
+ "documentation":"[Self-managed
permissions] The names of one or more AWS accounts for which you want to update parameter values for stack instances. The overridden parameter values will be applied to all stack instances in the specified accounts and Regions.
You can specify Accounts
or DeploymentTargets
, but not both.
"
},
"DeploymentTargets":{
"shape":"DeploymentTargets",
@@ -5194,11 +5194,11 @@
},
"Regions":{
"shape":"RegionList",
- "documentation":"The names of one or more regions in which you want to update parameter values for stack instances. The overridden parameter values will be applied to all stack instances in the specified accounts and regions.
"
+ "documentation":"The names of one or more Regions in which you want to update parameter values for stack instances. The overridden parameter values will be applied to all stack instances in the specified accounts and Regions.
"
},
"ParameterOverrides":{
"shape":"Parameters",
- "documentation":" A list of input parameters whose values you want to update for the specified stack instances.
Any overridden parameter values will be applied to all stack instances in the specified accounts and regions. When specifying parameters and their values, be aware of how AWS CloudFormation sets parameter values during stack instance update operations:
-
To override the current value for a parameter, include the parameter and specify its value.
-
To leave a parameter set to its present value, you can do one of the following:
-
To set all overridden parameter back to the values specified in the stack set, specify a parameter list but do not include any parameters.
-
To leave all parameters set to their present values, do not specify this property at all.
During stack set updates, any parameter values overridden for a stack instance are not updated, but retain their overridden value.
You can only override the parameter values that are specified in the stack set; to add or delete a parameter itself, use UpdateStackSet
to update the stack set template. If you add a parameter to a template, before you can override the parameter value specified in the stack set you must first use UpdateStackSet to update all stack instances with the updated template and parameter value specified in the stack set. Once a stack instance has been updated with the new parameter, you can then override the parameter value using UpdateStackInstances
.
"
+ "documentation":" A list of input parameters whose values you want to update for the specified stack instances.
Any overridden parameter values will be applied to all stack instances in the specified accounts and Regions. When specifying parameters and their values, be aware of how AWS CloudFormation sets parameter values during stack instance update operations:
-
To override the current value for a parameter, include the parameter and specify its value.
-
To leave a parameter set to its present value, you can do one of the following:
-
To set all overridden parameter back to the values specified in the stack set, specify a parameter list but do not include any parameters.
-
To leave all parameters set to their present values, do not specify this property at all.
During stack set updates, any parameter values overridden for a stack instance are not updated, but retain their overridden value.
You can only override the parameter values that are specified in the stack set; to add or delete a parameter itself, use UpdateStackSet
to update the stack set template. If you add a parameter to a template, before you can override the parameter value specified in the stack set you must first use UpdateStackSet to update all stack instances with the updated template and parameter value specified in the stack set. Once a stack instance has been updated with the new parameter, you can then override the parameter value using UpdateStackInstances
.
"
},
"OperationPreferences":{
"shape":"StackSetOperationPreferences",
@@ -5297,11 +5297,11 @@
},
"Accounts":{
"shape":"AccountList",
- "documentation":"[Self-managed permissions] The accounts in which to update associated stack instances. If you specify accounts, you must also specify the regions in which to update stack set instances.
To update all the stack instances associated with this stack set, do not specify the Accounts
or Regions
properties.
If the stack set update includes changes to the template (that is, if the TemplateBody
or TemplateURL
properties are specified), or the Parameters
property, AWS CloudFormation marks all stack instances with a status of OUTDATED
prior to updating the stack instances in the specified accounts and regions. If the stack set update does not include changes to the template or parameters, AWS CloudFormation updates the stack instances in the specified accounts and regions, while leaving all other stack instances with their existing stack instance status.
"
+ "documentation":"[Self-managed
permissions] The accounts in which to update associated stack instances. If you specify accounts, you must also specify the Regions in which to update stack set instances.
To update all the stack instances associated with this stack set, do not specify the Accounts
or Regions
properties.
If the stack set update includes changes to the template (that is, if the TemplateBody
or TemplateURL
properties are specified), or the Parameters
property, AWS CloudFormation marks all stack instances with a status of OUTDATED
prior to updating the stack instances in the specified accounts and Regions. If the stack set update does not include changes to the template or parameters, AWS CloudFormation updates the stack instances in the specified accounts and Regions, while leaving all other stack instances with their existing stack instance status.
"
},
"Regions":{
"shape":"RegionList",
- "documentation":"The regions in which to update associated stack instances. If you specify regions, you must also specify accounts in which to update stack set instances.
To update all the stack instances associated with this stack set, do not specify the Accounts
or Regions
properties.
If the stack set update includes changes to the template (that is, if the TemplateBody
or TemplateURL
properties are specified), or the Parameters
property, AWS CloudFormation marks all stack instances with a status of OUTDATED
prior to updating the stack instances in the specified accounts and regions. If the stack set update does not include changes to the template or parameters, AWS CloudFormation updates the stack instances in the specified accounts and regions, while leaving all other stack instances with their existing stack instance status.
"
+ "documentation":"The Regions in which to update associated stack instances. If you specify Regions, you must also specify accounts in which to update stack set instances.
To update all the stack instances associated with this stack set, do not specify the Accounts
or Regions
properties.
If the stack set update includes changes to the template (that is, if the TemplateBody
or TemplateURL
properties are specified), or the Parameters
property, AWS CloudFormation marks all stack instances with a status of OUTDATED
prior to updating the stack instances in the specified accounts and Regions. If the stack set update does not include changes to the template or parameters, AWS CloudFormation updates the stack instances in the specified accounts and Regions, while leaving all other stack instances with their existing stack instance status.
"
}
}
},
From 56da2aeaa02426235763a13cde0f1b0ad72fce94 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Wed, 8 Apr 2020 18:20:54 +0000
Subject: [PATCH 032/604] Amazon EC2 Container Service Update: This release
provides native support for specifying Amazon EFS file systems as volumes in
your Amazon ECS task definitions.
---
...ure-AmazonEC2ContainerService-e5fff53.json | 5 ++
.../codegen-resources/service-2.json | 64 +++++++++++++++----
2 files changed, 57 insertions(+), 12 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonEC2ContainerService-e5fff53.json
diff --git a/.changes/next-release/feature-AmazonEC2ContainerService-e5fff53.json b/.changes/next-release/feature-AmazonEC2ContainerService-e5fff53.json
new file mode 100644
index 000000000000..9f0b3b7a99f9
--- /dev/null
+++ b/.changes/next-release/feature-AmazonEC2ContainerService-e5fff53.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon EC2 Container Service",
+ "description": "This release provides native support for specifying Amazon EFS 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 b4b62e39dd42..684689dea5fb 100644
--- a/services/ecs/src/main/resources/codegen-resources/service-2.json
+++ b/services/ecs/src/main/resources/codegen-resources/service-2.json
@@ -62,7 +62,7 @@
{"shape":"PlatformTaskDefinitionIncompatibilityException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Runs and maintains a desired number of tasks from a specified task definition. If the number of tasks running in a service drops below the desiredCount
, Amazon ECS runs another copy of the task in the specified cluster. To update an existing service, see the UpdateService action.
In addition to maintaining the desired count of tasks in your service, you can optionally run your service behind one or more load balancers. The load balancers distribute traffic across the tasks that are associated with the service. For more information, see Service Load Balancing in the Amazon Elastic Container Service Developer Guide.
Tasks for services that do not use a load balancer are considered healthy if they're in the RUNNING
state. Tasks for services that do use a load balancer are considered healthy if they're in the RUNNING
state and the container instance that they're hosted on is reported as healthy by the load balancer.
There are two service scheduler strategies available:
-
REPLICA
- The replica scheduling strategy places and maintains the desired number of tasks across your cluster. By default, the service scheduler spreads tasks across Availability Zones. You can use task placement strategies and constraints to customize task placement decisions. For more information, see Service Scheduler Concepts in the Amazon Elastic Container Service Developer Guide.
-
DAEMON
- The daemon scheduling strategy deploys exactly one task on each active container instance that meets all of the task placement constraints that you specify in your cluster. When using this strategy, you don't need to specify a desired number of tasks, a task placement strategy, or use Service Auto Scaling policies. For more information, see Service Scheduler Concepts in the Amazon Elastic Container Service Developer Guide.
You can optionally specify a deployment configuration for your service. The deployment is triggered by changing properties, such as the task definition or the desired count of a service, with an UpdateService operation. The default value for a replica service for minimumHealthyPercent
is 100%. The default value for a daemon service for minimumHealthyPercent
is 0%.
If a service is using the ECS
deployment controller, the minimum healthy percent represents a lower limit on the number of tasks in a service that must remain in the RUNNING
state during a deployment, as a percentage of the desired number of tasks (rounded up 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 deploy without using additional cluster capacity. For example, if your service has a desired number of four tasks and a minimum healthy percent of 50%, the scheduler might stop two existing tasks to free up cluster capacity before starting two new tasks. Tasks for services that do not use a load balancer are considered healthy if they're in the RUNNING
state. Tasks for services that do use a load balancer are considered healthy if they're in the RUNNING
state and they're reported as healthy by the load balancer. The default value for minimum healthy percent is 100%.
If a service is using the ECS
deployment controller, 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 either the CODE_DEPLOY
or EXTERNAL
deployment controller types and tasks that use the EC2 launch type, the minimum healthy percent and maximum percent values are used only to define the lower and 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 minimum healthy percent and maximum percent values aren't used, although they're currently visible when describing your service.
When creating a service that uses the EXTERNAL
deployment controller, you can specify only parameters that aren't controlled at the task set level. The only required parameter is the service name. You control your services using the CreateTaskSet operation. For more information, see Amazon ECS Deployment Types in the Amazon Elastic Container Service Developer Guide.
When the service scheduler launches new tasks, it determines task placement in your cluster using the following logic:
-
Determine which of the container instances in your cluster can support your service's task definition (for example, they have the required CPU, memory, ports, and container instance attributes).
-
By default, the service scheduler attempts to balance tasks across Availability Zones in this manner (although you can choose a different placement strategy) with the placementStrategy
parameter):
-
Sort the valid container instances, giving priority to instances that have the fewest number of running tasks for this service in their respective Availability Zone. For example, if zone A has one running service task and zones B and C each have zero, valid container instances in either zone B or C are considered optimal for placement.
-
Place the new service task on a valid container instance in an optimal Availability Zone (based on the previous steps), favoring container instances with the fewest number of running tasks for this service.
"
+ "documentation":"Runs and maintains a desired number of tasks from a specified task definition. If the number of tasks running in a service drops below the desiredCount
, Amazon ECS runs another copy of the task in the specified cluster. To update an existing service, see the UpdateService action.
In addition to maintaining the desired count of tasks in your service, you can optionally run your service behind one or more load balancers. The load balancers distribute traffic across the tasks that are associated with the service. For more information, see Service Load Balancing in the Amazon Elastic Container Service Developer Guide.
Tasks for services that do not use a load balancer are considered healthy if they're in the RUNNING
state. Tasks for services that do use a load balancer are considered healthy if they're in the RUNNING
state and the container instance that they're hosted on is reported as healthy by the load balancer.
There are two service scheduler strategies available:
-
REPLICA
- The replica scheduling strategy places and maintains the desired number of tasks across your cluster. By default, the service scheduler spreads tasks across Availability Zones. You can use task placement strategies and constraints to customize task placement decisions. For more information, see Service Scheduler Concepts in the Amazon Elastic Container Service Developer Guide.
-
DAEMON
- The daemon scheduling strategy deploys exactly one task on each active container instance that meets all of the task placement constraints that you specify in your cluster. The service scheduler also evaluates the task placement constraints for running tasks and will stop tasks that do not meet the placement constraints. When using this strategy, you don't need to specify a desired number of tasks, a task placement strategy, or use Service Auto Scaling policies. For more information, see Service Scheduler Concepts in the Amazon Elastic Container Service Developer Guide.
You can optionally specify a deployment configuration for your service. The deployment is triggered by changing properties, such as the task definition or the desired count of a service, with an UpdateService operation. The default value for a replica service for minimumHealthyPercent
is 100%. The default value for a daemon service for minimumHealthyPercent
is 0%.
If a service is using the ECS
deployment controller, the minimum healthy percent represents a lower limit on the number of tasks in a service that must remain in the RUNNING
state during a deployment, as a percentage of the desired number of tasks (rounded up 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 deploy without using additional cluster capacity. For example, if your service has a desired number of four tasks and a minimum healthy percent of 50%, the scheduler might stop two existing tasks to free up cluster capacity before starting two new tasks. Tasks for services that do not use a load balancer are considered healthy if they're in the RUNNING
state. Tasks for services that do use a load balancer are considered healthy if they're in the RUNNING
state and they're reported as healthy by the load balancer. The default value for minimum healthy percent is 100%.
If a service is using the ECS
deployment controller, 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 either the CODE_DEPLOY
or EXTERNAL
deployment controller types and tasks that use the EC2 launch type, the minimum healthy percent and maximum percent values are used only to define the lower and 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 minimum healthy percent and maximum percent values aren't used, although they're currently visible when describing your service.
When creating a service that uses the EXTERNAL
deployment controller, you can specify only parameters that aren't controlled at the task set level. The only required parameter is the service name. You control your services using the CreateTaskSet operation. For more information, see Amazon ECS Deployment Types in the Amazon Elastic Container Service Developer Guide.
When the service scheduler launches new tasks, it determines task placement in your cluster using the following logic:
-
Determine which of the container instances in your cluster can support your service's task definition (for example, they have the required CPU, memory, ports, and container instance attributes).
-
By default, the service scheduler attempts to balance tasks across Availability Zones in this manner (although you can choose a different placement strategy) with the placementStrategy
parameter):
-
Sort the valid container instances, giving priority to instances that have the fewest number of running tasks for this service in their respective Availability Zone. For example, if zone A has one running service task and zones B and C each have zero, valid container instances in either zone B or C are considered optimal for placement.
-
Place the new service task on a valid container instance in an optimal Availability Zone (based on the previous steps), favoring container instances with the fewest number of running tasks for this service.
"
},
"CreateTaskSet":{
"name":"CreateTaskSet",
@@ -769,7 +769,7 @@
{"shape":"PlatformTaskDefinitionIncompatibilityException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Modifies the parameters of a service.
For services using the rolling update (ECS
) deployment controller, the desired count, deployment configuration, network configuration, or task definition used can be updated.
For services using the blue/green (CODE_DEPLOY
) deployment controller, only the desired count, deployment configuration, and health check grace period can be updated using this API. If the network configuration, platform version, or task definition need to be updated, a new AWS CodeDeploy deployment should be created. For more information, see CreateDeployment in the AWS CodeDeploy API Reference.
For services using an external deployment controller, you can update only the desired count and health check grace period using this API. If the launch type, load balancer, network configuration, platform version, or task definition need to be updated, you should create a new task set. For more information, see CreateTaskSet.
You can add to or subtract from the number of instantiations of a task definition in a service by specifying the cluster that the service is running in and a new desiredCount
parameter.
If you have updated the Docker image of your application, you can create a new task definition with that image and deploy it to your service. The service scheduler uses the minimum healthy percent and maximum percent parameters (in the service's deployment configuration) to determine the deployment strategy.
If your updated Docker image uses the same tag as what is in the existing task definition for your service (for example, my_image:latest
), you do not need to create a new revision of your task definition. You can update the service using the forceNewDeployment
option. The new tasks launched by the deployment pull the current image/tag combination from your repository when they start.
You can also update the deployment configuration of a service. When a deployment is triggered by updating the task definition of a service, the service scheduler uses the deployment configuration parameters, minimumHealthyPercent
and maximumPercent
, to determine the deployment strategy.
-
If minimumHealthyPercent
is below 100%, the scheduler can ignore desiredCount
temporarily during a deployment. For example, if desiredCount
is four tasks, a minimum of 50% allows the scheduler to stop two existing tasks before starting two new tasks. Tasks for services that do not use a load balancer are considered healthy if they are in the RUNNING
state. Tasks for services that use a load balancer are considered healthy if they are in the RUNNING
state and the container instance they are hosted on is reported as healthy by the load balancer.
-
The maximumPercent
parameter represents an upper limit on the number of running tasks during a deployment, which enables you to define the deployment batch size. For example, if desiredCount
is four tasks, a maximum of 200% starts four new tasks before stopping the four older tasks (provided that the cluster resources required to do this are available).
When UpdateService stops a task during a deployment, the equivalent of docker stop
is issued to the containers running in the task. This results in a SIGTERM
and a 30-second timeout, after which SIGKILL
is sent and the containers are forcibly stopped. If the container handles the SIGTERM
gracefully and exits within 30 seconds from receiving it, no SIGKILL
is sent.
When the service scheduler launches new tasks, it determines task placement in your cluster with the following logic:
-
Determine which of the container instances in your cluster can support your service's task definition (for example, they have the required CPU, memory, ports, and container instance attributes).
-
By default, the service scheduler attempts to balance tasks across Availability Zones in this manner (although you can choose a different placement strategy):
-
Sort the valid container instances by the fewest number of running tasks for this service in the same Availability Zone as the instance. For example, if zone A has one running service task and zones B and C each have zero, valid container instances in either zone B or C are considered optimal for placement.
-
Place the new service task on a valid container instance in an optimal Availability Zone (based on the previous steps), favoring container instances with the fewest number of running tasks for this service.
When the service scheduler stops running tasks, it attempts to maintain balance across the Availability Zones in your cluster using the following logic:
-
Sort the container instances by the largest number of running tasks for this service in the same Availability Zone as the instance. For example, if zone A has one running service task and zones B and C each have two, container instances in either zone B or C are considered optimal for termination.
-
Stop the task on a container instance in an optimal Availability Zone (based on the previous steps), favoring container instances with the largest number of running tasks for this service.
"
+ "documentation":" Updating the task placement strategies and constraints on an Amazon ECS service remains in preview and is a Beta Service as defined by and subject to the Beta Service Participation Service Terms located at https://aws.amazon.com/service-terms (\"Beta Terms\"). These Beta Terms apply to your participation in this preview.
Modifies the parameters of a service.
For services using the rolling update (ECS
) deployment controller, the desired count, deployment configuration, network configuration, task placement constraints and strategies, or task definition used can be updated.
For services using the blue/green (CODE_DEPLOY
) deployment controller, only the desired count, deployment configuration, task placement constraints and strategies, and health check grace period can be updated using this API. If the network configuration, platform version, or task definition need to be updated, a new AWS CodeDeploy deployment should be created. For more information, see CreateDeployment in the AWS CodeDeploy API Reference.
For services using an external deployment controller, you can update only the desired count, task placement constraints and strategies, and health check grace period using this API. If the launch type, load balancer, network configuration, platform version, or task definition need to be updated, you should create a new task set. For more information, see CreateTaskSet.
You can add to or subtract from the number of instantiations of a task definition in a service by specifying the cluster that the service is running in and a new desiredCount
parameter.
If you have updated the Docker image of your application, you can create a new task definition with that image and deploy it to your service. The service scheduler uses the minimum healthy percent and maximum percent parameters (in the service's deployment configuration) to determine the deployment strategy.
If your updated Docker image uses the same tag as what is in the existing task definition for your service (for example, my_image:latest
), you do not need to create a new revision of your task definition. You can update the service using the forceNewDeployment
option. The new tasks launched by the deployment pull the current image/tag combination from your repository when they start.
You can also update the deployment configuration of a service. When a deployment is triggered by updating the task definition of a service, the service scheduler uses the deployment configuration parameters, minimumHealthyPercent
and maximumPercent
, to determine the deployment strategy.
-
If minimumHealthyPercent
is below 100%, the scheduler can ignore desiredCount
temporarily during a deployment. For example, if desiredCount
is four tasks, a minimum of 50% allows the scheduler to stop two existing tasks before starting two new tasks. Tasks for services that do not use a load balancer are considered healthy if they are in the RUNNING
state. Tasks for services that use a load balancer are considered healthy if they are in the RUNNING
state and the container instance they are hosted on is reported as healthy by the load balancer.
-
The maximumPercent
parameter represents an upper limit on the number of running tasks during a deployment, which enables you to define the deployment batch size. For example, if desiredCount
is four tasks, a maximum of 200% starts four new tasks before stopping the four older tasks (provided that the cluster resources required to do this are available).
When UpdateService stops a task during a deployment, the equivalent of docker stop
is issued to the containers running in the task. This results in a SIGTERM
and a 30-second timeout, after which SIGKILL
is sent and the containers are forcibly stopped. If the container handles the SIGTERM
gracefully and exits within 30 seconds from receiving it, no SIGKILL
is sent.
When the service scheduler launches new tasks, it determines task placement in your cluster with the following logic:
-
Determine which of the container instances in your cluster can support your service's task definition (for example, they have the required CPU, memory, ports, and container instance attributes).
-
By default, the service scheduler attempts to balance tasks across Availability Zones in this manner (although you can choose a different placement strategy):
-
Sort the valid container instances by the fewest number of running tasks for this service in the same Availability Zone as the instance. For example, if zone A has one running service task and zones B and C each have zero, valid container instances in either zone B or C are considered optimal for placement.
-
Place the new service task on a valid container instance in an optimal Availability Zone (based on the previous steps), favoring container instances with the fewest number of running tasks for this service.
When the service scheduler stops running tasks, it attempts to maintain balance across the Availability Zones in your cluster using the following logic:
-
Sort the container instances by the largest number of running tasks for this service in the same Availability Zone as the instance. For example, if zone A has one running service task and zones B and C each have two, container instances in either zone B or C are considered optimal for termination.
-
Stop the task on a container instance in an optimal Availability Zone (based on the previous steps), favoring container instances with the largest number of running tasks for this service.
"
},
"UpdateServicePrimaryTaskSet":{
"name":"UpdateServicePrimaryTaskSet",
@@ -1028,7 +1028,7 @@
"members":{
"capacityProvider":{
"shape":"String",
- "documentation":"The short name or full Amazon Resource Name (ARN) of the capacity provider.
"
+ "documentation":"The short name of the capacity provider.
"
},
"weight":{
"shape":"CapacityProviderStrategyItemWeight",
@@ -1430,7 +1430,7 @@
},
"healthCheck":{
"shape":"HealthCheck",
- "documentation":"The 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",
@@ -1696,7 +1696,7 @@
},
"capacityProviders":{
"shape":"StringList",
- "documentation":"The short name or full Amazon Resource Name (ARN) of one or more capacity providers to associate with the cluster.
If specifying a capacity provider that uses an Auto Scaling group, the capacity provider must already be created and not already associated with another cluster. New capacity providers can be created with the CreateCapacityProvider API operation.
To use a AWS Fargate capacity provider, specify either the FARGATE
or FARGATE_SPOT
capacity providers. The AWS Fargate capacity providers are available to all accounts and only need to be associated with a cluster to be used.
The PutClusterCapacityProviders API operation is used to update the list of available capacity providers for a cluster after the cluster is created.
"
+ "documentation":"The short name of one or more capacity providers to associate with the cluster.
If specifying a capacity provider that uses an Auto Scaling group, the capacity provider must already be created and not already associated with another cluster. New capacity providers can be created with the CreateCapacityProvider API operation.
To use a AWS Fargate capacity provider, specify either the FARGATE
or FARGATE_SPOT
capacity providers. The AWS Fargate capacity providers are available to all accounts and only need to be associated with a cluster to be used.
The PutClusterCapacityProviders API operation is used to update the list of available capacity providers for a cluster after the cluster is created.
"
},
"defaultCapacityProviderStrategy":{
"shape":"CapacityProviderStrategy",
@@ -1783,7 +1783,7 @@
},
"schedulingStrategy":{
"shape":"SchedulingStrategy",
- "documentation":"The scheduling strategy to use for the service. For more information, see Services.
There are two service scheduler strategies available:
-
REPLICA
-The replica scheduling strategy places and maintains the desired number of tasks across your cluster. By default, the service scheduler spreads tasks across Availability Zones. You can use task placement strategies and constraints to customize task placement decisions. This scheduler strategy is required if the service is using the CODE_DEPLOY
or EXTERNAL
deployment controller types.
-
DAEMON
-The daemon scheduling strategy deploys exactly one task on each active container instance that meets all of the task placement constraints that you specify in your cluster. When you're using this strategy, you don't need to specify a desired number of tasks, a task placement strategy, or use Service Auto Scaling policies.
Tasks using the Fargate launch type or the CODE_DEPLOY
or EXTERNAL
deployment controller types don't support the DAEMON
scheduling strategy.
"
+ "documentation":"The scheduling strategy to use for the service. For more information, see Services.
There are two service scheduler strategies available:
-
REPLICA
-The replica scheduling strategy places and maintains the desired number of tasks across your cluster. By default, the service scheduler spreads tasks across Availability Zones. You can use task placement strategies and constraints to customize task placement decisions. This scheduler strategy is required if the service is using the CODE_DEPLOY
or EXTERNAL
deployment controller types.
-
DAEMON
-The daemon scheduling strategy deploys exactly one task on each active container instance that meets all of the task placement constraints that you specify in your cluster. The service scheduler also evaluates the task placement constraints for running tasks and will stop tasks that do not meet the placement constraints. When you're using this strategy, you don't need to specify a desired number of tasks, a task placement strategy, or use Service Auto Scaling policies.
Tasks using the Fargate launch type or the CODE_DEPLOY
or EXTERNAL
deployment controller types don't support the DAEMON
scheduling strategy.
"
},
"deploymentController":{
"shape":"DeploymentController",
@@ -2458,6 +2458,34 @@
"documentation":"This parameter is specified when you are using Docker volumes. Docker volumes are only supported when you are using the EC2 launch type. Windows containers only support the use of the local
driver. To use bind mounts, specify a host
instead.
"
},
"Double":{"type":"double"},
+ "EFSAuthorizationConfig":{
+ "type":"structure",
+ "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.
"
+ },
+ "iam":{
+ "shape":"EFSAuthorizationConfigIAM",
+ "documentation":"Whether or not to use the Amazon ECS task IAM role defined in a task definition when mounting the Amazon EFS file system. If enabled, transit encryption must be enabled in the EFSVolumeConfiguration
. If this parameter is omitted, the default value of DISABLED
is used. For more information, see Using Amazon EFS Access Points in the Amazon Elastic Container Service Developer Guide.
"
+ }
+ },
+ "documentation":"The authorization configuration details for the Amazon EFS file system.
"
+ },
+ "EFSAuthorizationConfigIAM":{
+ "type":"string",
+ "enum":[
+ "ENABLED",
+ "DISABLED"
+ ]
+ },
+ "EFSTransitEncryption":{
+ "type":"string",
+ "enum":[
+ "ENABLED",
+ "DISABLED"
+ ]
+ },
"EFSVolumeConfiguration":{
"type":"structure",
"required":["fileSystemId"],
@@ -2468,10 +2496,22 @@
},
"rootDirectory":{
"shape":"String",
- "documentation":"The directory within the Amazon EFS file system to mount as the root directory inside the host.
"
+ "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.
"
+ },
+ "transitEncryption":{
+ "shape":"EFSTransitEncryption",
+ "documentation":"Whether or not to enable encryption for Amazon EFS data in transit between the Amazon ECS host and the Amazon EFS server. Transit encryption must be enabled if Amazon EFS IAM authorization is used. If this parameter is omitted, the default value of DISABLED
is used. For more information, see Encrypting Data in Transit in the Amazon Elastic File System User Guide.
"
+ },
+ "transitEncryptionPort":{
+ "shape":"BoxedInteger",
+ "documentation":"The port to use when sending encrypted data between the Amazon ECS host and the Amazon EFS server. If you do not specify a transit encryption port, it will use the port selection strategy that the Amazon EFS mount helper uses. For more information, see EFS Mount Helper in the Amazon Elastic File System User Guide.
"
+ },
+ "authorizationConfig":{
+ "shape":"EFSAuthorizationConfig",
+ "documentation":"The authorization configuration details for the Amazon EFS file system.
"
}
},
- "documentation":"This parameter is specified when you are using an Amazon Elastic File System (Amazon EFS) file storage. Amazon EFS file systems are only supported when you are using the EC2 launch type.
EFSVolumeConfiguration
remains in preview and is a Beta Service as defined by and subject to the Beta Service Participation Service Terms located at https://aws.amazon.com/service-terms (\"Beta Terms\"). These Beta Terms apply to your participation in this preview of EFSVolumeConfiguration
.
"
+ "documentation":"This parameter is specified when you are using an Amazon Elastic File System file system for task storage. For more information, see Amazon EFS Volumes in the Amazon Elastic Container Service Developer Guide.
"
},
"EnvironmentVariables":{
"type":"list",
@@ -2555,7 +2595,7 @@
"documentation":"The optional grace period within which to provide containers time to bootstrap before failed health checks count towards the maximum number of retries. You may specify between 0 and 300 seconds. The startPeriod
is disabled by default.
If a health check succeeds within the startPeriod
, then the container is considered healthy and any subsequent failures count toward the maximum number of retries.
"
}
},
- "documentation":"An object representing a container health check. Health check parameters that are specified in a container definition override any Docker health checks that exist in the container image (such as those specified in a parent image or from the image's Dockerfile).
The following are notes about container health check support:
-
Container health checks require version 1.17.0 or greater of the Amazon ECS container agent. For more information, see Updating the Amazon ECS Container Agent.
-
Container health checks are supported for Fargate tasks if you are using platform version 1.1.0 or greater. For more information, see AWS Fargate Platform Versions.
-
Container health checks are not supported for tasks that are part of a service that is configured to use a Classic Load Balancer.
"
+ "documentation":"An object representing a container health check. Health check parameters that are specified in a container definition override any Docker health checks that exist in the container image (such as those specified in a parent image or from the image's Dockerfile).
You can view the health status of both individual containers and a task with the DescribeTasks API operation or when viewing the task details in the console.
The following describes the possible healthStatus
values for a container:
-
HEALTHY
-The container health check has passed successfully.
-
UNHEALTHY
-The container health check has failed.
-
UNKNOWN
-The container health check is being evaluated or there is no container health check defined.
The following describes the possible healthStatus
values for a task. The container health check status of nonessential containers do not have an effect on the health status of a task.
-
HEALTHY
-All essential containers within the task have passed their health checks.
-
UNHEALTHY
-One or more essential containers have failed their health check.
-
UNKNOWN
-The essential containers within the task are still having their health checks evaluated or there are no container health checks defined.
If a task is run manually, and not as part of a service, the task will continue its lifecycle regardless of its health status. For tasks that are part of a service, if the task reports as unhealthy then the task will be stopped and the service scheduler will replace it.
The following are notes about container health check support:
-
Container health checks require version 1.17.0 or greater of the Amazon ECS container agent. For more information, see Updating the Amazon ECS Container Agent.
-
Container health checks are supported for Fargate tasks if you are using platform version 1.1.0 or greater. For more information, see AWS Fargate Platform Versions.
-
Container health checks are not supported for tasks that are part of a service that is configured to use a Classic Load Balancer.
"
},
"HealthStatus":{
"type":"string",
@@ -3996,7 +4036,7 @@
},
"schedulingStrategy":{
"shape":"SchedulingStrategy",
- "documentation":"The scheduling strategy to use for the service. For more information, see Services.
There are two service scheduler strategies available:
-
REPLICA
-The replica scheduling strategy places and maintains the desired number of tasks across your cluster. By default, the service scheduler spreads tasks across Availability Zones. You can use task placement strategies and constraints to customize task placement decisions.
-
DAEMON
-The daemon scheduling strategy deploys exactly one task on each container instance in your cluster. When you are using this strategy, do not specify a desired number of tasks or any task placement strategies.
Fargate tasks do not support the DAEMON
scheduling strategy.
"
+ "documentation":"The scheduling strategy to use for the service. For more information, see Services.
There are two service scheduler strategies available:
-
REPLICA
-The replica scheduling strategy places and maintains the desired number of tasks across your cluster. By default, the service scheduler spreads tasks across Availability Zones. You can use task placement strategies and constraints to customize task placement decisions.
-
DAEMON
-The daemon scheduling strategy deploys exactly one task on each active container instance that meets all of the task placement constraints that you specify in your cluster. The service scheduler also evaluates the task placement constraints for running tasks and will stop tasks that do not meet the placement constraints.
Fargate tasks do not support the DAEMON
scheduling strategy.
"
},
"deploymentController":{
"shape":"DeploymentController",
@@ -4609,7 +4649,7 @@
},
"taskRoleArn":{
"shape":"String",
- "documentation":"The short name or full Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that grants containers in the task permission to call AWS APIs on your behalf. For more information, see Amazon ECS Task Role in the Amazon Elastic Container Service Developer Guide.
IAM roles for tasks on Windows require that the -EnableTaskIAMRole
option is set when you launch the Amazon ECS-optimized Windows AMI. Your containers must also run some configuration code in order to take advantage of the feature. For more information, see Windows IAM Roles for Tasks in the Amazon Elastic Container Service Developer Guide.
"
+ "documentation":"The short name or full Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that grants containers in the task permission to call AWS APIs on your behalf. For more information, see Amazon ECS Task Role in the Amazon Elastic Container Service Developer Guide.
IAM roles for tasks on Windows require that the -EnableTaskIAMRole
option is set when you launch the Amazon ECS-optimized Windows AMI. Your containers must also run some configuration code in order to take advantage of the feature. For more information, see Windows IAM Roles for Tasks in the Amazon Elastic Container Service Developer Guide.
"
},
"executionRoleArn":{
"shape":"String",
@@ -5133,7 +5173,7 @@
},
"capacityProviderStrategy":{
"shape":"CapacityProviderStrategy",
- "documentation":"The capacity provider strategy to update the service to use.
If the service is using the default capacity provider strategy for the cluster, the service can be updated to use one or more capacity providers. However, when a service is using a non-default capacity provider strategy, the service cannot be updated to use the cluster's default capacity provider strategy.
"
+ "documentation":"The capacity provider strategy to update the service to use.
If the service is using the default capacity provider strategy for the cluster, the service can be updated to use one or more capacity providers as opposed to the default capacity provider strategy. However, when a service is using a capacity provider strategy that is not the default capacity provider strategy, the service cannot be updated to use the cluster's default capacity provider strategy.
A capacity provider strategy consists of one or more capacity providers along with the base
and weight
to assign to them. A capacity provider must be associated with the cluster to be used in a capacity provider strategy. The PutClusterCapacityProviders API is used to associate a capacity provider with a cluster. Only capacity providers with an ACTIVE
or UPDATING
status can be used.
If specifying a capacity provider that uses an Auto Scaling group, the capacity provider must already be created. New capacity providers can be created with the CreateCapacityProvider API operation.
To use a AWS Fargate capacity provider, specify either the FARGATE
or FARGATE_SPOT
capacity providers. The AWS Fargate capacity providers are available to all accounts and only need to be associated with a cluster to be used.
The PutClusterCapacityProviders API operation is used to update the list of available capacity providers for a cluster after the cluster is created.
"
},
"deploymentConfiguration":{
"shape":"DeploymentConfiguration",
From 7573b34d58da4eb8bc25e648456d009dcca53844 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Wed, 8 Apr 2020 18:20:54 +0000
Subject: [PATCH 033/604] AWS Elemental MediaConvert Update: AWS Elemental
MediaConvert SDK adds support for queue hopping. Jobs can now hop from their
original queue to a specified alternate queue, based on the maximum wait time
that you specify in the job settings.
---
...ture-AWSElementalMediaConvert-27aebd8.json | 5 +
.../codegen-resources/service-2.json | 124 +++++++++++++++---
2 files changed, 109 insertions(+), 20 deletions(-)
create mode 100644 .changes/next-release/feature-AWSElementalMediaConvert-27aebd8.json
diff --git a/.changes/next-release/feature-AWSElementalMediaConvert-27aebd8.json b/.changes/next-release/feature-AWSElementalMediaConvert-27aebd8.json
new file mode 100644
index 000000000000..b6e3aba1b89e
--- /dev/null
+++ b/.changes/next-release/feature-AWSElementalMediaConvert-27aebd8.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "AWS Elemental MediaConvert",
+ "description": "AWS Elemental MediaConvert SDK adds support for queue hopping. Jobs can now hop from their original queue to a specified alternate queue, based on the maximum wait time that you specify in the job settings."
+}
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 a131164bb62f..f5f44a1f7696 100644
--- a/services/mediaconvert/src/main/resources/codegen-resources/service-2.json
+++ b/services/mediaconvert/src/main/resources/codegen-resources/service-2.json
@@ -1264,7 +1264,7 @@
"documentation": "Specify the conditions when the service will run your job with accelerated transcoding."
}
},
- "documentation": "Accelerated transcoding can significantly speed up jobs with long, visually complex content. Outputs that use this feature incur pro-tier pricing. For information about feature limitations, see the AWS Elemental MediaConvert User Guide.",
+ "documentation": "Accelerated transcoding can significantly speed up jobs with long, visually complex content.",
"required": [
"Mode"
]
@@ -1824,7 +1824,7 @@
},
"BillingTagsSource": {
"type": "string",
- "documentation": "Optional. Choose a tag type that AWS Billing and Cost Management will use to sort your AWS Elemental MediaConvert costs on any billing report that you set up. Any transcoding outputs that don't have an associated tag will appear in your billing report unsorted. If you don't choose a valid value for this field, your job outputs will appear on the billing report unsorted.",
+ "documentation": "The tag type that AWS Billing and Cost Management will use to sort your AWS Elemental MediaConvert costs on any billing report that you set up.",
"enum": [
"QUEUE",
"PRESET",
@@ -2664,7 +2664,7 @@
"AccelerationSettings": {
"shape": "AccelerationSettings",
"locationName": "accelerationSettings",
- "documentation": "Accelerated transcoding can significantly speed up jobs with long, visually complex content. Outputs that use this feature incur pro-tier pricing. For information about feature limitations, see the AWS Elemental MediaConvert User Guide."
+ "documentation": "Optional. Accelerated transcoding can significantly speed up jobs with long, visually complex content. Outputs that use this feature incur pro-tier pricing. For information about feature limitations, see the AWS Elemental MediaConvert User Guide."
},
"BillingTagsSource": {
"shape": "BillingTagsSource",
@@ -2674,18 +2674,23 @@
"ClientRequestToken": {
"shape": "__string",
"locationName": "clientRequestToken",
- "documentation": "Idempotency token for CreateJob operation.",
+ "documentation": "Optional. Idempotency token for CreateJob operation.",
"idempotencyToken": true
},
+ "HopDestinations": {
+ "shape": "__listOfHopDestination",
+ "locationName": "hopDestinations",
+ "documentation": "Optional. Use queue hopping to avoid overly long waits in the backlog of the queue that you submit your job to. Specify an alternate queue and the maximum time that your job will wait in the initial queue before hopping. For more information about this feature, see the AWS Elemental MediaConvert User Guide."
+ },
"JobTemplate": {
"shape": "__string",
"locationName": "jobTemplate",
- "documentation": "When you create a job, you can either specify a job template or specify the transcoding settings individually"
+ "documentation": "Optional. When you create a job, you can either specify a job template or specify the transcoding settings individually."
},
"Priority": {
"shape": "__integerMinNegative50Max50",
"locationName": "priority",
- "documentation": "Specify the relative priority for this job. In any given queue, the service begins processing the job with the highest value first. When more than one job has the same priority, the service begins processing the job that you submitted first. If you don't specify a priority, the service uses the default value 0."
+ "documentation": "Optional. Specify the relative priority for this job. In any given queue, the service begins processing the job with the highest value first. When more than one job has the same priority, the service begins processing the job that you submitted first. If you don't specify a priority, the service uses the default value 0."
},
"Queue": {
"shape": "__string",
@@ -2705,22 +2710,22 @@
"SimulateReservedQueue": {
"shape": "SimulateReservedQueue",
"locationName": "simulateReservedQueue",
- "documentation": "Enable this setting when you run a test job to estimate how many reserved transcoding slots (RTS) you need. When this is enabled, MediaConvert runs your job from an on-demand queue with similar performance to what you will see with one RTS in a reserved queue. This setting is disabled by default."
+ "documentation": "Optional. Enable this setting when you run a test job to estimate how many reserved transcoding slots (RTS) you need. When this is enabled, MediaConvert runs your job from an on-demand queue with similar performance to what you will see with one RTS in a reserved queue. This setting is disabled by default."
},
"StatusUpdateInterval": {
"shape": "StatusUpdateInterval",
"locationName": "statusUpdateInterval",
- "documentation": "Specify how often MediaConvert sends STATUS_UPDATE events to Amazon CloudWatch Events. Set the interval, in seconds, between status updates. MediaConvert sends an update at this interval from the time the service begins processing your job to the time it completes the transcode or encounters an error."
+ "documentation": "Optional. Specify how often MediaConvert sends STATUS_UPDATE events to Amazon CloudWatch Events. Set the interval, in seconds, between status updates. MediaConvert sends an update at this interval from the time the service begins processing your job to the time it completes the transcode or encounters an error."
},
"Tags": {
"shape": "__mapOf__string",
"locationName": "tags",
- "documentation": "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."
},
"UserMetadata": {
"shape": "__mapOf__string",
"locationName": "userMetadata",
- "documentation": "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."
}
},
"required": [
@@ -2756,6 +2761,11 @@
"locationName": "description",
"documentation": "Optional. A description of the job template you are creating."
},
+ "HopDestinations": {
+ "shape": "__listOfHopDestination",
+ "locationName": "hopDestinations",
+ "documentation": "Optional. Use queue hopping to avoid overly long waits in the backlog of the queue that you submit your job to. Specify an alternate queue and the maximum time that your job will wait in the initial queue before hopping. For more information about this feature, see the AWS Elemental MediaConvert User Guide."
+ },
"Name": {
"shape": "__string",
"locationName": "name",
@@ -5589,6 +5599,27 @@
"TDRL"
]
},
+ "HopDestination": {
+ "type": "structure",
+ "members": {
+ "Priority": {
+ "shape": "__integerMinNegative50Max50",
+ "locationName": "priority",
+ "documentation": "Optional. When you set up a job to use queue hopping, you can specify a different relative priority for the job in the destination queue. If you don't specify, the relative priority will remain the same as in the previous queue."
+ },
+ "Queue": {
+ "shape": "__string",
+ "locationName": "queue",
+ "documentation": "Optional unless the job is submitted on the default queue. When you set up a job to use queue hopping, you can specify a destination queue. This queue cannot be the original queue to which the job is submitted. If the original queue isn't the default queue and you don't specify the destination queue, the job will move to the default queue."
+ },
+ "WaitMinutes": {
+ "shape": "__integer",
+ "locationName": "waitMinutes",
+ "documentation": "Required for setting up a job to use queue hopping. Minimum wait time in minutes until the job can hop to the destination queue. Valid range is 1 to 1440 minutes, inclusive."
+ }
+ },
+ "documentation": "Optional. Configuration for a destination queue to which the job can hop once a customer-defined minimum wait time has passed."
+ },
"Id3Insertion": {
"type": "structure",
"members": {
@@ -6013,7 +6044,7 @@
"BillingTagsSource": {
"shape": "BillingTagsSource",
"locationName": "billingTagsSource",
- "documentation": "Optional. Choose a tag type that AWS Billing and Cost Management will use to sort your AWS Elemental MediaConvert costs on any billing report that you set up. Any transcoding outputs that don't have an associated tag will appear in your billing report unsorted. If you don't choose a valid value for this field, your job outputs will appear on the billing report unsorted."
+ "documentation": "The tag type that AWS Billing and Cost Management will use to sort your AWS Elemental MediaConvert costs on any billing report that you set up."
},
"CreatedAt": {
"shape": "__timestampUnix",
@@ -6035,6 +6066,11 @@
"locationName": "errorMessage",
"documentation": "Error message of Job"
},
+ "HopDestinations": {
+ "shape": "__listOfHopDestination",
+ "locationName": "hopDestinations",
+ "documentation": "Optional list of hop destinations."
+ },
"Id": {
"shape": "__string",
"locationName": "id",
@@ -6068,7 +6104,12 @@
"Queue": {
"shape": "__string",
"locationName": "queue",
- "documentation": "Optional. When you create a job, you can specify a queue to send it to. If you don't specify, the job will go to the default queue. For more about queues, see the User Guide topic at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html"
+ "documentation": "When you create a job, you can specify a queue to send it to. If you don't specify, the job will go to the default queue. For more about queues, see the User Guide topic at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html"
+ },
+ "QueueTransitions": {
+ "shape": "__listOfQueueTransition",
+ "locationName": "queueTransitions",
+ "documentation": "The job's queue hopping history."
},
"RetryCount": {
"shape": "__integer",
@@ -6232,6 +6273,11 @@
"locationName": "description",
"documentation": "An optional description you create for each job template."
},
+ "HopDestinations": {
+ "shape": "__listOfHopDestination",
+ "locationName": "hopDestinations",
+ "documentation": "Optional list of hop destinations."
+ },
"LastUpdated": {
"shape": "__timestampUnix",
"locationName": "lastUpdated",
@@ -6561,7 +6607,7 @@
"Order": {
"shape": "Order",
"locationName": "order",
- "documentation": "When you request lists of resources, you can optionally specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.",
+ "documentation": "Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.",
"location": "querystring"
}
}
@@ -6593,25 +6639,25 @@
"NextToken": {
"shape": "__string",
"locationName": "nextToken",
- "documentation": "Use this string, provided with the response to a previous request, to request the next batch of jobs.",
+ "documentation": "Optional. Use this string, provided with the response to a previous request, to request the next batch of jobs.",
"location": "querystring"
},
"Order": {
"shape": "Order",
"locationName": "order",
- "documentation": "When you request lists of resources, you can optionally specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.",
+ "documentation": "Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.",
"location": "querystring"
},
"Queue": {
"shape": "__string",
"locationName": "queue",
- "documentation": "Provide a queue name to get back only jobs from that queue.",
+ "documentation": "Optional. Provide a queue name to get back only jobs from that queue.",
"location": "querystring"
},
"Status": {
"shape": "JobStatus",
"locationName": "status",
- "documentation": "A job's status can be SUBMITTED, PROGRESSING, COMPLETE, CANCELED, or ERROR.",
+ "documentation": "Optional. A job's status can be SUBMITTED, PROGRESSING, COMPLETE, CANCELED, or ERROR.",
"location": "querystring"
}
}
@@ -6661,7 +6707,7 @@
"Order": {
"shape": "Order",
"locationName": "order",
- "documentation": "When you request lists of resources, you can optionally specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.",
+ "documentation": "Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.",
"location": "querystring"
}
}
@@ -6705,7 +6751,7 @@
"Order": {
"shape": "Order",
"locationName": "order",
- "documentation": "When you request lists of resources, you can optionally specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.",
+ "documentation": "Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.",
"location": "querystring"
}
}
@@ -7997,7 +8043,7 @@
},
"Order": {
"type": "string",
- "documentation": "When you request lists of resources, you can optionally specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.",
+ "documentation": "Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.",
"enum": [
"ASCENDING",
"DESCENDING"
@@ -8476,6 +8522,27 @@
"PAUSED"
]
},
+ "QueueTransition": {
+ "type": "structure",
+ "members": {
+ "DestinationQueue": {
+ "shape": "__string",
+ "locationName": "destinationQueue",
+ "documentation": "The queue that the job was on after the transition."
+ },
+ "SourceQueue": {
+ "shape": "__string",
+ "locationName": "sourceQueue",
+ "documentation": "The queue that the job was on before the transition."
+ },
+ "Timestamp": {
+ "shape": "__timestampUnix",
+ "locationName": "timestamp",
+ "documentation": "The time, in Unix epoch format, that the job moved from the source queue to the destination queue."
+ }
+ },
+ "documentation": "Description of the source and destination queues between which the job has moved, along with the timestamp of the move"
+ },
"Rectangle": {
"type": "structure",
"members": {
@@ -9095,6 +9162,11 @@
"locationName": "description",
"documentation": "The new description for the job template, if you are changing it."
},
+ "HopDestinations": {
+ "shape": "__listOfHopDestination",
+ "locationName": "hopDestinations",
+ "documentation": "Optional list of hop destinations."
+ },
"Name": {
"shape": "__string",
"locationName": "name",
@@ -9947,6 +10019,12 @@
"shape": "HlsCaptionLanguageMapping"
}
},
+ "__listOfHopDestination": {
+ "type": "list",
+ "member": {
+ "shape": "HopDestination"
+ }
+ },
"__listOfId3Insertion": {
"type": "list",
"member": {
@@ -10037,6 +10115,12 @@
"shape": "Queue"
}
},
+ "__listOfQueueTransition": {
+ "type": "list",
+ "member": {
+ "shape": "QueueTransition"
+ }
+ },
"__listOfTeletextPageType": {
"type": "list",
"member": {
From a75367a2c9ddf957517f0fd883e977b9d4cb5d40 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Wed, 8 Apr 2020 18:20:54 +0000
Subject: [PATCH 034/604] Amazon Chime Update: feature: Chime: This release
introduces the ability to tag Amazon Chime SDK meeting resources. You can use
tags to organize and identify your resources for cost allocation.
---
.../feature-AmazonChime-a3b81ab.json | 5 +
.../codegen-resources/service-2.json | 715 ++++++++++++++++--
2 files changed, 667 insertions(+), 53 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonChime-a3b81ab.json
diff --git a/.changes/next-release/feature-AmazonChime-a3b81ab.json b/.changes/next-release/feature-AmazonChime-a3b81ab.json
new file mode 100644
index 000000000000..faab25bcf264
--- /dev/null
+++ b/.changes/next-release/feature-AmazonChime-a3b81ab.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon Chime",
+ "description": "feature: Chime: This release introduces the ability to tag Amazon Chime SDK meeting resources. You can use tags to organize and identify your resources for cost allocation."
+}
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 1e9772275512..d850013caa6c 100644
--- a/services/chime/src/main/resources/codegen-resources/service-2.json
+++ b/services/chime/src/main/resources/codegen-resources/service-2.json
@@ -354,7 +354,8 @@
{"shape":"ThrottledClientException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
- ]
+ ],
+ "documentation":"Creates a proxy session on the specified Amazon Chime Voice Connector for the specified participant phone numbers.
"
},
"CreateRoom":{
"name":"CreateRoom",
@@ -574,7 +575,8 @@
{"shape":"ThrottledClientException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
- ]
+ ],
+ "documentation":"Deletes the specified proxy session from the specified Amazon Chime Voice Connector.
"
},
"DeleteRoom":{
"name":"DeleteRoom",
@@ -689,7 +691,8 @@
{"shape":"ThrottledClientException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
- ]
+ ],
+ "documentation":"Deletes the proxy configuration from the specified Amazon Chime Voice Connector.
"
},
"DeleteVoiceConnectorStreamingConfiguration":{
"name":"DeleteVoiceConnectorStreamingConfiguration",
@@ -1038,7 +1041,8 @@
{"shape":"ThrottledClientException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
- ]
+ ],
+ "documentation":"Gets the specified proxy session details for the specified Amazon Chime Voice Connector.
"
},
"GetRoom":{
"name":"GetRoom",
@@ -1197,7 +1201,8 @@
{"shape":"ThrottledClientException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
- ]
+ ],
+ "documentation":"Gets the proxy configuration details for the specified Amazon Chime Voice Connector.
"
},
"GetVoiceConnectorStreamingConfiguration":{
"name":"GetVoiceConnectorStreamingConfiguration",
@@ -1298,6 +1303,26 @@
],
"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.
"
},
+ "ListAttendeeTags":{
+ "name":"ListAttendeeTags",
+ "http":{
+ "method":"GET",
+ "requestUri":"/meetings/{meetingId}/attendees/{attendeeId}/tags",
+ "responseCode":200
+ },
+ "input":{"shape":"ListAttendeeTagsRequest"},
+ "output":{"shape":"ListAttendeeTagsResponse"},
+ "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 attendee resource.
"
+ },
"ListAttendees":{
"name":"ListAttendees",
"http":{
@@ -1338,6 +1363,26 @@
],
"documentation":"Lists the bots associated with the administrator's Amazon Chime Enterprise account ID.
"
},
+ "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":{
@@ -1411,7 +1456,8 @@
{"shape":"ThrottledClientException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
- ]
+ ],
+ "documentation":"Lists the proxy sessions for the specified Amazon Chime Voice Connector.
"
},
"ListRoomMemberships":{
"name":"ListRoomMemberships",
@@ -1453,6 +1499,24 @@
],
"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.
"
},
+ "ListTagsForResource":{
+ "name":"ListTagsForResource",
+ "http":{
+ "method":"GET",
+ "requestUri":"/tags"
+ },
+ "input":{"shape":"ListTagsForResourceRequest"},
+ "output":{"shape":"ListTagsForResourceResponse"},
+ "errors":[
+ {"shape":"BadRequestException"},
+ {"shape":"ForbiddenException"},
+ {"shape":"NotFoundException"},
+ {"shape":"UnauthorizedClientException"},
+ {"shape":"ServiceUnavailableException"},
+ {"shape":"ServiceFailureException"}
+ ],
+ "documentation":"Lists the tags applied to an Amazon Chime SDK meeting resource.
"
+ },
"ListUsers":{
"name":"ListUsers",
"http":{
@@ -1628,7 +1692,8 @@
{"shape":"ThrottledClientException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
- ]
+ ],
+ "documentation":"Puts the specified proxy configuration to the specified Amazon Chime Voice Connector.
"
},
"PutVoiceConnectorStreamingConfiguration":{
"name":"PutVoiceConnectorStreamingConfiguration",
@@ -1770,6 +1835,120 @@
],
"documentation":"Searches phone numbers that can be ordered.
"
},
+ "TagAttendee":{
+ "name":"TagAttendee",
+ "http":{
+ "method":"POST",
+ "requestUri":"/meetings/{meetingId}/attendees/{attendeeId}/tags?operation=add",
+ "responseCode":204
+ },
+ "input":{"shape":"TagAttendeeRequest"},
+ "errors":[
+ {"shape":"BadRequestException"},
+ {"shape":"ForbiddenException"},
+ {"shape":"NotFoundException"},
+ {"shape":"ResourceLimitExceededException"},
+ {"shape":"ThrottledClientException"},
+ {"shape":"UnauthorizedClientException"},
+ {"shape":"ServiceUnavailableException"},
+ {"shape":"ServiceFailureException"}
+ ],
+ "documentation":"Applies the specified tags to the specified Amazon Chime SDK attendee.
"
+ },
+ "TagMeeting":{
+ "name":"TagMeeting",
+ "http":{
+ "method":"POST",
+ "requestUri":"/meetings/{meetingId}/tags?operation=add",
+ "responseCode":204
+ },
+ "input":{"shape":"TagMeetingRequest"},
+ "errors":[
+ {"shape":"BadRequestException"},
+ {"shape":"ForbiddenException"},
+ {"shape":"NotFoundException"},
+ {"shape":"ResourceLimitExceededException"},
+ {"shape":"ThrottledClientException"},
+ {"shape":"UnauthorizedClientException"},
+ {"shape":"ServiceUnavailableException"},
+ {"shape":"ServiceFailureException"}
+ ],
+ "documentation":"Applies the specified tags to the specified Amazon Chime SDK meeting.
"
+ },
+ "TagResource":{
+ "name":"TagResource",
+ "http":{
+ "method":"POST",
+ "requestUri":"/tags?operation=tag-resource",
+ "responseCode":204
+ },
+ "input":{"shape":"TagResourceRequest"},
+ "errors":[
+ {"shape":"BadRequestException"},
+ {"shape":"ForbiddenException"},
+ {"shape":"NotFoundException"},
+ {"shape":"UnauthorizedClientException"},
+ {"shape":"ServiceUnavailableException"},
+ {"shape":"ServiceFailureException"}
+ ],
+ "documentation":"Applies the specified tags to the specified Amazon Chime SDK meeting resource.
"
+ },
+ "UntagAttendee":{
+ "name":"UntagAttendee",
+ "http":{
+ "method":"POST",
+ "requestUri":"/meetings/{meetingId}/attendees/{attendeeId}/tags?operation=delete",
+ "responseCode":204
+ },
+ "input":{"shape":"UntagAttendeeRequest"},
+ "errors":[
+ {"shape":"BadRequestException"},
+ {"shape":"ForbiddenException"},
+ {"shape":"ThrottledClientException"},
+ {"shape":"NotFoundException"},
+ {"shape":"UnauthorizedClientException"},
+ {"shape":"ServiceUnavailableException"},
+ {"shape":"ServiceFailureException"}
+ ],
+ "documentation":"Untags the specified tags from the specified Amazon Chime SDK attendee.
"
+ },
+ "UntagMeeting":{
+ "name":"UntagMeeting",
+ "http":{
+ "method":"POST",
+ "requestUri":"/meetings/{meetingId}/tags?operation=delete",
+ "responseCode":204
+ },
+ "input":{"shape":"UntagMeetingRequest"},
+ "errors":[
+ {"shape":"BadRequestException"},
+ {"shape":"ForbiddenException"},
+ {"shape":"ThrottledClientException"},
+ {"shape":"NotFoundException"},
+ {"shape":"UnauthorizedClientException"},
+ {"shape":"ServiceUnavailableException"},
+ {"shape":"ServiceFailureException"}
+ ],
+ "documentation":"Untags the specified tags from the specified Amazon Chime SDK meeting.
"
+ },
+ "UntagResource":{
+ "name":"UntagResource",
+ "http":{
+ "method":"POST",
+ "requestUri":"/tags?operation=untag-resource",
+ "responseCode":204
+ },
+ "input":{"shape":"UntagResourceRequest"},
+ "errors":[
+ {"shape":"BadRequestException"},
+ {"shape":"ForbiddenException"},
+ {"shape":"NotFoundException"},
+ {"shape":"UnauthorizedClientException"},
+ {"shape":"ServiceUnavailableException"},
+ {"shape":"ServiceFailureException"}
+ ],
+ "documentation":"Untags the specified tags from the specified Amazon Chime SDK meeting resource.
"
+ },
"UpdateAccount":{
"name":"UpdateAccount",
"http":{
@@ -1904,7 +2083,8 @@
{"shape":"ThrottledClientException"},
{"shape":"ServiceUnavailableException"},
{"shape":"ServiceFailureException"}
- ]
+ ],
+ "documentation":"Updates the specified proxy session details, such as voice or SMS capabilities.
"
},
"UpdateRoom":{
"name":"UpdateRoom",
@@ -2274,6 +2454,18 @@
"type":"list",
"member":{"shape":"Attendee"}
},
+ "AttendeeTagKeyList":{
+ "type":"list",
+ "member":{"shape":"TagKey"},
+ "max":10,
+ "min":1
+ },
+ "AttendeeTagList":{
+ "type":"list",
+ "member":{"shape":"Tag"},
+ "max":10,
+ "min":1
+ },
"BadRequestException":{
"type":"structure",
"members":{
@@ -2653,6 +2845,10 @@
"ExternalUserId":{
"shape":"ExternalUserIdType",
"documentation":"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.
"
}
}
},
@@ -2663,6 +2859,10 @@
"ExternalUserId":{
"shape":"ExternalUserIdType",
"documentation":"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.
"
@@ -2721,6 +2921,10 @@
"documentation":"The unique identifier for the client request. Use a different token for different meetings.
",
"idempotencyToken":true
},
+ "ExternalMeetingId":{
+ "shape":"ExternalMeetingIdType",
+ "documentation":"The external meeting ID.
"
+ },
"MeetingHostId":{
"shape":"ExternalUserIdType",
"documentation":"Reserved.
"
@@ -2729,6 +2933,10 @@
"shape":"String",
"documentation":"The Region in which to create the meeting. Available values: ap-northeast-1
, ap-southeast-1
, ap-southeast-2
, ca-central-1
, eu-central-1
, eu-north-1
, eu-west-1
, eu-west-2
, eu-west-3
, sa-east-1
, us-east-1
, us-east-2
, us-west-1
, us-west-2
.
"
},
+ "Tags":{
+ "shape":"MeetingTagList",
+ "documentation":"The tag key-value pairs.
"
+ },
"NotificationsConfiguration":{
"shape":"MeetingNotificationConfiguration",
"documentation":"The configuration for resource targets to receive notifications when meeting and attendee events occur.
"
@@ -2780,22 +2988,47 @@
"members":{
"VoiceConnectorId":{
"shape":"NonEmptyString128",
+ "documentation":"The Amazon Chime voice connector ID.
",
"location":"uri",
"locationName":"voiceConnectorId"
},
- "ParticipantPhoneNumbers":{"shape":"ParticipantPhoneNumberList"},
- "Name":{"shape":"ProxySessionNameString"},
- "ExpiryMinutes":{"shape":"PositiveInteger"},
- "Capabilities":{"shape":"CapabilityList"},
- "NumberSelectionBehavior":{"shape":"NumberSelectionBehavior"},
- "GeoMatchLevel":{"shape":"GeoMatchLevel"},
- "GeoMatchParams":{"shape":"GeoMatchParams"}
+ "ParticipantPhoneNumbers":{
+ "shape":"ParticipantPhoneNumberList",
+ "documentation":"The participant phone numbers.
"
+ },
+ "Name":{
+ "shape":"ProxySessionNameString",
+ "documentation":"The name of the proxy session.
"
+ },
+ "ExpiryMinutes":{
+ "shape":"PositiveInteger",
+ "documentation":"The number of minutes allowed for the proxy session.
"
+ },
+ "Capabilities":{
+ "shape":"CapabilityList",
+ "documentation":"The proxy session capabilities.
"
+ },
+ "NumberSelectionBehavior":{
+ "shape":"NumberSelectionBehavior",
+ "documentation":"The preference for proxy phone number reuse, or stickiness, between the same participants across sessions.
"
+ },
+ "GeoMatchLevel":{
+ "shape":"GeoMatchLevel",
+ "documentation":"The preference for matching the country or area code of the proxy phone number with that of the first participant.
"
+ },
+ "GeoMatchParams":{
+ "shape":"GeoMatchParams",
+ "documentation":"The country and area code for the proxy phone number.
"
+ }
}
},
"CreateProxySessionResponse":{
"type":"structure",
"members":{
- "ProxySession":{"shape":"ProxySession"}
+ "ProxySession":{
+ "shape":"ProxySession",
+ "documentation":"The proxy session details.
"
+ }
}
},
"CreateRoomMembershipRequest":{
@@ -3067,11 +3300,13 @@
"members":{
"VoiceConnectorId":{
"shape":"NonEmptyString128",
+ "documentation":"The Amazon Chime voice connector ID.
",
"location":"uri",
"locationName":"voiceConnectorId"
},
"ProxySessionId":{
"shape":"NonEmptyString128",
+ "documentation":"The proxy session ID.
",
"location":"uri",
"locationName":"proxySessionId"
}
@@ -3156,6 +3391,7 @@
"members":{
"VoiceConnectorId":{
"shape":"NonEmptyString128",
+ "documentation":"The Amazon Chime Voice Connector ID.
",
"location":"uri",
"locationName":"voiceConnectorId"
}
@@ -3372,6 +3608,12 @@
},
"documentation":"The configuration that allows a bot to receive outgoing events. Can be either an HTTPS endpoint or a Lambda function ARN.
"
},
+ "ExternalMeetingIdType":{
+ "type":"string",
+ "max":64,
+ "min":2,
+ "sensitive":true
+ },
"ExternalUserIdType":{
"type":"string",
"max":64,
@@ -3402,9 +3644,16 @@
"AreaCode"
],
"members":{
- "Country":{"shape":"Country"},
- "AreaCode":{"shape":"AreaCode"}
- }
+ "Country":{
+ "shape":"Country",
+ "documentation":"The country.
"
+ },
+ "AreaCode":{
+ "shape":"AreaCode",
+ "documentation":"The area code.
"
+ }
+ },
+ "documentation":"The country and area code for a proxy phone number in a proxy phone session.
"
},
"GetAccountRequest":{
"type":"structure",
@@ -3636,11 +3885,13 @@
"members":{
"VoiceConnectorId":{
"shape":"NonEmptyString128",
+ "documentation":"The Amazon Chime voice connector ID.
",
"location":"uri",
"locationName":"voiceConnectorId"
},
"ProxySessionId":{
"shape":"NonEmptyString128",
+ "documentation":"The proxy session ID.
",
"location":"uri",
"locationName":"proxySessionId"
}
@@ -3649,7 +3900,10 @@
"GetProxySessionResponse":{
"type":"structure",
"members":{
- "ProxySession":{"shape":"ProxySession"}
+ "ProxySession":{
+ "shape":"ProxySession",
+ "documentation":"The proxy session details.
"
+ }
}
},
"GetRoomRequest":{
@@ -3811,6 +4065,7 @@
"members":{
"VoiceConnectorId":{
"shape":"NonEmptyString128",
+ "documentation":"The Amazon Chime voice connector ID.
",
"location":"uri",
"locationName":"voiceConnectorId"
}
@@ -3819,7 +4074,10 @@
"GetVoiceConnectorProxyResponse":{
"type":"structure",
"members":{
- "Proxy":{"shape":"Proxy"}
+ "Proxy":{
+ "shape":"Proxy",
+ "documentation":"The proxy configuration details.
"
+ }
}
},
"GetVoiceConnectorRequest":{
@@ -4042,6 +4300,36 @@
}
}
},
+ "ListAttendeeTagsRequest":{
+ "type":"structure",
+ "required":[
+ "MeetingId",
+ "AttendeeId"
+ ],
+ "members":{
+ "MeetingId":{
+ "shape":"GuidString",
+ "documentation":"The Amazon Chime SDK meeting ID.
",
+ "location":"uri",
+ "locationName":"meetingId"
+ },
+ "AttendeeId":{
+ "shape":"GuidString",
+ "documentation":"The Amazon Chime SDK attendee ID.
",
+ "location":"uri",
+ "locationName":"attendeeId"
+ }
+ }
+ },
+ "ListAttendeeTagsResponse":{
+ "type":"structure",
+ "members":{
+ "Tags":{
+ "shape":"TagList",
+ "documentation":"A list of tag key-value pairs.
"
+ }
+ }
+ },
"ListAttendeesRequest":{
"type":"structure",
"required":["MeetingId"],
@@ -4116,6 +4404,27 @@
}
}
},
+ "ListMeetingTagsRequest":{
+ "type":"structure",
+ "required":["MeetingId"],
+ "members":{
+ "MeetingId":{
+ "shape":"GuidString",
+ "documentation":"The Amazon Chime SDK meeting ID.
",
+ "location":"uri",
+ "locationName":"meetingId"
+ }
+ }
+ },
+ "ListMeetingTagsResponse":{
+ "type":"structure",
+ "members":{
+ "Tags":{
+ "shape":"TagList",
+ "documentation":"A list of tag key-value pairs.
"
+ }
+ }
+ },
"ListMeetingsRequest":{
"type":"structure",
"members":{
@@ -4236,21 +4545,25 @@
"members":{
"VoiceConnectorId":{
"shape":"NonEmptyString128",
+ "documentation":"The Amazon Chime voice connector ID.
",
"location":"uri",
"locationName":"voiceConnectorId"
},
"Status":{
"shape":"ProxySessionStatus",
+ "documentation":"The proxy session status.
",
"location":"querystring",
"locationName":"status"
},
"NextToken":{
"shape":"NextTokenString",
+ "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"
}
@@ -4259,8 +4572,14 @@
"ListProxySessionsResponse":{
"type":"structure",
"members":{
- "ProxySessions":{"shape":"ProxySessions"},
- "NextToken":{"shape":"NextTokenString"}
+ "ProxySessions":{
+ "shape":"ProxySessions",
+ "documentation":"The proxy session details.
"
+ },
+ "NextToken":{
+ "shape":"NextTokenString",
+ "documentation":"The token to use to retrieve the next page of results.
"
+ }
}
},
"ListRoomMembershipsRequest":{
@@ -4352,6 +4671,27 @@
}
}
},
+ "ListTagsForResourceRequest":{
+ "type":"structure",
+ "required":["ResourceARN"],
+ "members":{
+ "ResourceARN":{
+ "shape":"Arn",
+ "documentation":"The resource ARN.
",
+ "location":"querystring",
+ "locationName":"arn"
+ }
+ }
+ },
+ "ListTagsForResourceResponse":{
+ "type":"structure",
+ "members":{
+ "Tags":{
+ "shape":"TagList",
+ "documentation":"A list of tag-key value pairs.
"
+ }
+ }
+ },
"ListUsersRequest":{
"type":"structure",
"required":["AccountId"],
@@ -4559,6 +4899,10 @@
"shape":"GuidString",
"documentation":"The Amazon Chime SDK meeting ID.
"
},
+ "ExternalMeetingId":{
+ "shape":"ExternalMeetingIdType",
+ "documentation":"The external meeting ID.
"
+ },
"MediaPlacement":{
"shape":"MediaPlacement",
"documentation":"The media placement for the meeting.
"
@@ -4588,6 +4932,18 @@
},
"documentation":"The configuration for resource targets to receive notifications when Amazon Chime SDK meeting and attendee events occur.
"
},
+ "MeetingTagKeyList":{
+ "type":"list",
+ "member":{"shape":"TagKey"},
+ "max":50,
+ "min":1
+ },
+ "MeetingTagList":{
+ "type":"list",
+ "member":{"shape":"Tag"},
+ "max":50,
+ "min":1
+ },
"Member":{
"type":"structure",
"members":{
@@ -4790,9 +5146,16 @@
"Participant":{
"type":"structure",
"members":{
- "PhoneNumber":{"shape":"E164PhoneNumber"},
- "ProxyPhoneNumber":{"shape":"E164PhoneNumber"}
- }
+ "PhoneNumber":{
+ "shape":"E164PhoneNumber",
+ "documentation":"The participant's phone number.
"
+ },
+ "ProxyPhoneNumber":{
+ "shape":"E164PhoneNumber",
+ "documentation":"The participant's proxy phone number.
"
+ }
+ },
+ "documentation":"The phone number and proxy phone number for a participant in an Amazon Chime Voice Connector proxy session.
"
},
"ParticipantPhoneNumberList":{
"type":"list",
@@ -5037,29 +5400,82 @@
"Proxy":{
"type":"structure",
"members":{
- "DefaultSessionExpiryMinutes":{"shape":"Integer"},
- "Disabled":{"shape":"Boolean"},
- "FallBackPhoneNumber":{"shape":"E164PhoneNumber"},
- "PhoneNumberCountries":{"shape":"StringList"}
- }
+ "DefaultSessionExpiryMinutes":{
+ "shape":"Integer",
+ "documentation":"The default number of minutes allowed for proxy sessions.
"
+ },
+ "Disabled":{
+ "shape":"Boolean",
+ "documentation":"When true, stops proxy sessions from being created on the specified Amazon Chime Voice Connector.
"
+ },
+ "FallBackPhoneNumber":{
+ "shape":"E164PhoneNumber",
+ "documentation":"The phone number to route calls to after a proxy session expires.
"
+ },
+ "PhoneNumberCountries":{
+ "shape":"StringList",
+ "documentation":"The countries for proxy phone numbers to be selected from.
"
+ }
+ },
+ "documentation":"The proxy configuration for an Amazon Chime Voice Connector.
"
},
"ProxySession":{
"type":"structure",
"members":{
- "VoiceConnectorId":{"shape":"NonEmptyString128"},
- "ProxySessionId":{"shape":"NonEmptyString128"},
- "Name":{"shape":"String128"},
- "Status":{"shape":"ProxySessionStatus"},
- "ExpiryMinutes":{"shape":"PositiveInteger"},
- "Capabilities":{"shape":"CapabilityList"},
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
- "UpdatedTimestamp":{"shape":"Iso8601Timestamp"},
- "EndedTimestamp":{"shape":"Iso8601Timestamp"},
- "Participants":{"shape":"Participants"},
- "NumberSelectionBehavior":{"shape":"NumberSelectionBehavior"},
- "GeoMatchLevel":{"shape":"GeoMatchLevel"},
- "GeoMatchParams":{"shape":"GeoMatchParams"}
- }
+ "VoiceConnectorId":{
+ "shape":"NonEmptyString128",
+ "documentation":"The Amazon Chime voice connector ID.
"
+ },
+ "ProxySessionId":{
+ "shape":"NonEmptyString128",
+ "documentation":"The proxy session ID.
"
+ },
+ "Name":{
+ "shape":"String128",
+ "documentation":"The name of the proxy session.
"
+ },
+ "Status":{
+ "shape":"ProxySessionStatus",
+ "documentation":"The status of the proxy session.
"
+ },
+ "ExpiryMinutes":{
+ "shape":"PositiveInteger",
+ "documentation":"The number of minutes allowed for the proxy session.
"
+ },
+ "Capabilities":{
+ "shape":"CapabilityList",
+ "documentation":"The proxy session capabilities.
"
+ },
+ "CreatedTimestamp":{
+ "shape":"Iso8601Timestamp",
+ "documentation":"The created timestamp, in ISO 8601 format.
"
+ },
+ "UpdatedTimestamp":{
+ "shape":"Iso8601Timestamp",
+ "documentation":"The updated timestamp, in ISO 8601 format.
"
+ },
+ "EndedTimestamp":{
+ "shape":"Iso8601Timestamp",
+ "documentation":"The ended timestamp, in ISO 8601 format.
"
+ },
+ "Participants":{
+ "shape":"Participants",
+ "documentation":"The proxy session participants.
"
+ },
+ "NumberSelectionBehavior":{
+ "shape":"NumberSelectionBehavior",
+ "documentation":"The preference for proxy phone number reuse, or stickiness, between the same participants across sessions.
"
+ },
+ "GeoMatchLevel":{
+ "shape":"GeoMatchLevel",
+ "documentation":"The preference for matching the country or area code of the proxy phone number with that of the first participant.
"
+ },
+ "GeoMatchParams":{
+ "shape":"GeoMatchParams",
+ "documentation":"The country and area code for the proxy phone number.
"
+ }
+ },
+ "documentation":"The proxy session for an Amazon Chime Voice Connector.
"
},
"ProxySessionNameString":{
"type":"string",
@@ -5179,19 +5595,35 @@
"members":{
"VoiceConnectorId":{
"shape":"NonEmptyString128",
+ "documentation":"The Amazon Chime voice connector ID.
",
"location":"uri",
"locationName":"voiceConnectorId"
},
- "DefaultSessionExpiryMinutes":{"shape":"Integer"},
- "PhoneNumberPoolCountries":{"shape":"CountryList"},
- "FallBackPhoneNumber":{"shape":"E164PhoneNumber"},
- "Disabled":{"shape":"Boolean"}
+ "DefaultSessionExpiryMinutes":{
+ "shape":"Integer",
+ "documentation":"The default number of minutes allowed for proxy sessions.
"
+ },
+ "PhoneNumberPoolCountries":{
+ "shape":"CountryList",
+ "documentation":"The countries for proxy phone numbers to be selected from.
"
+ },
+ "FallBackPhoneNumber":{
+ "shape":"E164PhoneNumber",
+ "documentation":"The phone number to route calls to after a proxy session expires.
"
+ },
+ "Disabled":{
+ "shape":"Boolean",
+ "documentation":"When true, stops proxy sessions from being created on the specified Amazon Chime Voice Connector.
"
+ }
}
},
"PutVoiceConnectorProxyResponse":{
"type":"structure",
"members":{
- "Proxy":{"shape":"Proxy"}
+ "Proxy":{
+ "shape":"Proxy",
+ "documentation":"The proxy configuration details.
"
+ }
}
},
"PutVoiceConnectorStreamingConfigurationRequest":{
@@ -5559,6 +5991,110 @@
"type":"list",
"member":{"shape":"String"}
},
+ "Tag":{
+ "type":"structure",
+ "required":[
+ "Key",
+ "Value"
+ ],
+ "members":{
+ "Key":{
+ "shape":"TagKey",
+ "documentation":"The key of the tag.
"
+ },
+ "Value":{
+ "shape":"TagValue",
+ "documentation":"The value of the tag.
"
+ }
+ },
+ "documentation":"Describes a tag applied to a resource.
"
+ },
+ "TagAttendeeRequest":{
+ "type":"structure",
+ "required":[
+ "MeetingId",
+ "AttendeeId",
+ "Tags"
+ ],
+ "members":{
+ "MeetingId":{
+ "shape":"GuidString",
+ "documentation":"The Amazon Chime SDK meeting ID.
",
+ "location":"uri",
+ "locationName":"meetingId"
+ },
+ "AttendeeId":{
+ "shape":"GuidString",
+ "documentation":"The Amazon Chime SDK attendee ID.
",
+ "location":"uri",
+ "locationName":"attendeeId"
+ },
+ "Tags":{
+ "shape":"AttendeeTagList",
+ "documentation":"The tag key-value pairs.
"
+ }
+ }
+ },
+ "TagKey":{
+ "type":"string",
+ "max":128,
+ "min":1,
+ "sensitive":true
+ },
+ "TagKeyList":{
+ "type":"list",
+ "member":{"shape":"TagKey"},
+ "max":50,
+ "min":1
+ },
+ "TagList":{
+ "type":"list",
+ "member":{"shape":"Tag"},
+ "max":50,
+ "min":1
+ },
+ "TagMeetingRequest":{
+ "type":"structure",
+ "required":[
+ "MeetingId",
+ "Tags"
+ ],
+ "members":{
+ "MeetingId":{
+ "shape":"GuidString",
+ "documentation":"The Amazon Chime SDK meeting ID.
",
+ "location":"uri",
+ "locationName":"meetingId"
+ },
+ "Tags":{
+ "shape":"MeetingTagList",
+ "documentation":"The tag key-value pairs.
"
+ }
+ }
+ },
+ "TagResourceRequest":{
+ "type":"structure",
+ "required":[
+ "ResourceARN",
+ "Tags"
+ ],
+ "members":{
+ "ResourceARN":{
+ "shape":"Arn",
+ "documentation":"The resource ARN.
"
+ },
+ "Tags":{
+ "shape":"TagList",
+ "documentation":"The tag key-value pairs.
"
+ }
+ }
+ },
+ "TagValue":{
+ "type":"string",
+ "max":256,
+ "min":1,
+ "sensitive":true
+ },
"TelephonySettings":{
"type":"structure",
"required":[
@@ -5658,6 +6194,68 @@
"error":{"httpStatusCode":422},
"exception":true
},
+ "UntagAttendeeRequest":{
+ "type":"structure",
+ "required":[
+ "MeetingId",
+ "TagKeys",
+ "AttendeeId"
+ ],
+ "members":{
+ "MeetingId":{
+ "shape":"GuidString",
+ "documentation":"The Amazon Chime SDK meeting ID.
",
+ "location":"uri",
+ "locationName":"meetingId"
+ },
+ "AttendeeId":{
+ "shape":"GuidString",
+ "documentation":"The Amazon Chime SDK attendee ID.
",
+ "location":"uri",
+ "locationName":"attendeeId"
+ },
+ "TagKeys":{
+ "shape":"AttendeeTagKeyList",
+ "documentation":"The tag keys.
"
+ }
+ }
+ },
+ "UntagMeetingRequest":{
+ "type":"structure",
+ "required":[
+ "MeetingId",
+ "TagKeys"
+ ],
+ "members":{
+ "MeetingId":{
+ "shape":"GuidString",
+ "documentation":"The Amazon Chime SDK meeting ID.
",
+ "location":"uri",
+ "locationName":"meetingId"
+ },
+ "TagKeys":{
+ "shape":"MeetingTagKeyList",
+ "documentation":"The tag keys.
"
+ }
+ }
+ },
+ "UntagResourceRequest":{
+ "type":"structure",
+ "required":[
+ "ResourceARN",
+ "TagKeys"
+ ],
+ "members":{
+ "ResourceARN":{
+ "shape":"Arn",
+ "documentation":"The resource ARN.
"
+ },
+ "TagKeys":{
+ "shape":"TagKeyList",
+ "documentation":"The tag keys.
"
+ }
+ }
+ },
"UpdateAccountRequest":{
"type":"structure",
"required":["AccountId"],
@@ -5830,22 +6428,33 @@
"members":{
"VoiceConnectorId":{
"shape":"NonEmptyString128",
+ "documentation":"The Amazon Chime voice connector ID.
",
"location":"uri",
"locationName":"voiceConnectorId"
},
"ProxySessionId":{
"shape":"NonEmptyString128",
+ "documentation":"The proxy session ID.
",
"location":"uri",
"locationName":"proxySessionId"
},
- "Capabilities":{"shape":"CapabilityList"},
- "ExpiryMinutes":{"shape":"PositiveInteger"}
+ "Capabilities":{
+ "shape":"CapabilityList",
+ "documentation":"The proxy session capabilities.
"
+ },
+ "ExpiryMinutes":{
+ "shape":"PositiveInteger",
+ "documentation":"The number of minutes allowed for the proxy session.
"
+ }
}
},
"UpdateProxySessionResponse":{
"type":"structure",
"members":{
- "ProxySession":{"shape":"ProxySession"}
+ "ProxySession":{
+ "shape":"ProxySession",
+ "documentation":"The proxy session details.
"
+ }
}
},
"UpdateRoomMembershipRequest":{
From d53c7cb998f4728b60f10b1af1774ceee4f4ec72 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Wed, 8 Apr 2020 18:20:58 +0000
Subject: [PATCH 035/604] AWS Migration Hub Config Update: Adding
ThrottlingException
---
...feature-AWSMigrationHubConfig-299a822.json | 5 +++++
.../codegen-resources/service-2.json | 21 +++++++++++++++++--
2 files changed, 24 insertions(+), 2 deletions(-)
create mode 100644 .changes/next-release/feature-AWSMigrationHubConfig-299a822.json
diff --git a/.changes/next-release/feature-AWSMigrationHubConfig-299a822.json b/.changes/next-release/feature-AWSMigrationHubConfig-299a822.json
new file mode 100644
index 000000000000..1fbe1ed16907
--- /dev/null
+++ b/.changes/next-release/feature-AWSMigrationHubConfig-299a822.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "AWS Migration Hub Config",
+ "description": "Adding ThrottlingException"
+}
diff --git a/services/migrationhubconfig/src/main/resources/codegen-resources/service-2.json b/services/migrationhubconfig/src/main/resources/codegen-resources/service-2.json
index 7534a7068276..10e600c096c3 100644
--- a/services/migrationhubconfig/src/main/resources/codegen-resources/service-2.json
+++ b/services/migrationhubconfig/src/main/resources/codegen-resources/service-2.json
@@ -25,6 +25,7 @@
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"DryRunOperation"},
{"shape":"InvalidInputException"}
],
@@ -42,9 +43,10 @@
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InvalidInputException"}
],
- "documentation":"This API permits filtering on the ControlId
, HomeRegion
, and RegionControlScope
fields.
"
+ "documentation":"This API permits filtering on the ControlId
and HomeRegion
fields.
"
},
"GetHomeRegion":{
"name":"GetHomeRegion",
@@ -58,6 +60,7 @@
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InvalidInputException"}
],
"documentation":"Returns the calling account’s home region, if configured. This API is used by other AWS services to determine the regional endpoint for calling AWS Application Discovery Service and Migration Hub. You must call GetHomeRegion
at least once before you call any other AWS Application Discovery Service and AWS Migration Hub APIs, to obtain the account's Migration Hub home region.
"
@@ -227,6 +230,7 @@
"exception":true
},
"RequestedTime":{"type":"timestamp"},
+ "RetryAfterSeconds":{"type":"integer"},
"ServiceUnavailableException":{
"type":"structure",
"members":{
@@ -261,6 +265,19 @@
"type":"string",
"enum":["ACCOUNT"]
},
+ "ThrottlingException":{
+ "type":"structure",
+ "required":["Message"],
+ "members":{
+ "Message":{"shape":"ErrorMessage"},
+ "RetryAfterSeconds":{
+ "shape":"RetryAfterSeconds",
+ "documentation":"The number of seconds the caller should wait before retrying.
"
+ }
+ },
+ "documentation":"The request was denied due to request throttling.
",
+ "exception":true
+ },
"Token":{
"type":"string",
"max":2048,
@@ -268,5 +285,5 @@
"pattern":"^[a-zA-Z0-9\\/\\+\\=]{0,2048}$"
}
},
- "documentation":"The AWS Migration Hub home region APIs are available specifically for working with your Migration Hub home region. You can use these APIs to determine a home region, as well as to create and work with controls that describe the home region.
You can use these APIs within your home region only. If you call these APIs from outside your home region, your calls are rejected, except for the ability to register your agents and connectors.
You must call GetHomeRegion
at least once before you call any other AWS Application Discovery Service and AWS Migration Hub APIs, to obtain the account's Migration Hub home region.
The StartDataCollection
API call in AWS Application Discovery Service allows your agents and connectors to begin collecting data that flows directly into the home region, and it will prevent you from enabling data collection information to be sent outside the home region.
For specific API usage, see the sections that follow in this AWS Migration Hub Home Region API reference.
The Migration Hub Home Region APIs do not support AWS Organizations.
"
+ "documentation":"The AWS Migration Hub home region APIs are available specifically for working with your Migration Hub home region. You can use these APIs to determine a home region, as well as to create and work with controls that describe the home region.
-
You must make API calls for write actions (create, notify, associate, disassociate, import, or put) while in your home region, or a HomeRegionNotSetException
error is returned.
-
API calls for read actions (list, describe, stop, and delete) are permitted outside of your home region.
-
If you call a write API outside the home region, an InvalidInputException
is returned.
-
You can call GetHomeRegion
action to obtain the account's Migration Hub home region.
For specific API usage, see the sections that follow in this AWS Migration Hub Home Region API reference.
"
}
From af6a835288ff94d0cc73496322af08ad242c1b7c Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Wed, 8 Apr 2020 18:20:59 +0000
Subject: [PATCH 036/604] Amazon CodeGuru Profiler Update: CodeGuruProfiler
adds support for resource based authorization to submit profile data.
---
...eature-AmazonCodeGuruProfiler-5298c5d.json | 5 +
.../codegen-resources/paginators-1.json | 3 +-
.../codegen-resources/service-2.json | 195 ++++++++++++++++++
3 files changed, 202 insertions(+), 1 deletion(-)
create mode 100644 .changes/next-release/feature-AmazonCodeGuruProfiler-5298c5d.json
diff --git a/.changes/next-release/feature-AmazonCodeGuruProfiler-5298c5d.json b/.changes/next-release/feature-AmazonCodeGuruProfiler-5298c5d.json
new file mode 100644
index 000000000000..628548f6a7e6
--- /dev/null
+++ b/.changes/next-release/feature-AmazonCodeGuruProfiler-5298c5d.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon CodeGuru Profiler",
+ "description": "CodeGuruProfiler adds support for resource based authorization to submit profile data."
+}
diff --git a/services/codeguruprofiler/src/main/resources/codegen-resources/paginators-1.json b/services/codeguruprofiler/src/main/resources/codegen-resources/paginators-1.json
index afbbca8aabb5..9dbcc85954ce 100644
--- a/services/codeguruprofiler/src/main/resources/codegen-resources/paginators-1.json
+++ b/services/codeguruprofiler/src/main/resources/codegen-resources/paginators-1.json
@@ -3,7 +3,8 @@
"ListProfileTimes": {
"input_token": "nextToken",
"output_token": "nextToken",
- "limit_key": "maxResults"
+ "limit_key": "maxResults",
+ "result_key": "profileTimes"
},
"ListProfilingGroups": {
"input_token": "nextToken",
diff --git a/services/codeguruprofiler/src/main/resources/codegen-resources/service-2.json b/services/codeguruprofiler/src/main/resources/codegen-resources/service-2.json
index f9f10049de00..1190d1579726 100644
--- a/services/codeguruprofiler/src/main/resources/codegen-resources/service-2.json
+++ b/services/codeguruprofiler/src/main/resources/codegen-resources/service-2.json
@@ -83,6 +83,22 @@
],
"documentation":"Describes a profiling group.
"
},
+ "GetPolicy":{
+ "name":"GetPolicy",
+ "http":{
+ "method":"GET",
+ "requestUri":"/profilingGroups/{profilingGroupName}/policy",
+ "responseCode":200
+ },
+ "input":{"shape":"GetPolicyRequest"},
+ "output":{"shape":"GetPolicyResponse"},
+ "errors":[
+ {"shape":"InternalServerException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"ResourceNotFoundException"}
+ ],
+ "documentation":"Gets the profiling group policy.
"
+ },
"GetProfile":{
"name":"GetProfile",
"http":{
@@ -149,6 +165,43 @@
],
"documentation":""
},
+ "PutPermission":{
+ "name":"PutPermission",
+ "http":{
+ "method":"PUT",
+ "requestUri":"/profilingGroups/{profilingGroupName}/policy/{actionGroup}",
+ "responseCode":200
+ },
+ "input":{"shape":"PutPermissionRequest"},
+ "output":{"shape":"PutPermissionResponse"},
+ "errors":[
+ {"shape":"InternalServerException"},
+ {"shape":"ConflictException"},
+ {"shape":"ValidationException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"ResourceNotFoundException"}
+ ],
+ "documentation":"Provides permission to the principals. This overwrites the existing permissions, and is not additive.
",
+ "idempotent":true
+ },
+ "RemovePermission":{
+ "name":"RemovePermission",
+ "http":{
+ "method":"DELETE",
+ "requestUri":"/profilingGroups/{profilingGroupName}/policy/{actionGroup}",
+ "responseCode":200
+ },
+ "input":{"shape":"RemovePermissionRequest"},
+ "output":{"shape":"RemovePermissionResponse"},
+ "errors":[
+ {"shape":"InternalServerException"},
+ {"shape":"ConflictException"},
+ {"shape":"ValidationException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"ResourceNotFoundException"}
+ ],
+ "documentation":"Removes statement for the provided action group from the policy.
"
+ },
"UpdateProfilingGroup":{
"name":"UpdateProfilingGroup",
"http":{
@@ -170,6 +223,10 @@
}
},
"shapes":{
+ "ActionGroup":{
+ "type":"string",
+ "enum":["agentPermissions"]
+ },
"AgentConfiguration":{
"type":"structure",
"required":[
@@ -362,6 +419,37 @@
"min":1,
"pattern":"^[\\w-.:/]+$"
},
+ "GetPolicyRequest":{
+ "type":"structure",
+ "required":["profilingGroupName"],
+ "members":{
+ "profilingGroupName":{
+ "shape":"ProfilingGroupName",
+ "documentation":"The name of the profiling group.
",
+ "location":"uri",
+ "locationName":"profilingGroupName"
+ }
+ },
+ "documentation":"The structure representing the getPolicyRequest.
"
+ },
+ "GetPolicyResponse":{
+ "type":"structure",
+ "required":[
+ "policy",
+ "revisionId"
+ ],
+ "members":{
+ "policy":{
+ "shape":"String",
+ "documentation":"The resource-based policy attached to the ProfilingGroup
.
"
+ },
+ "revisionId":{
+ "shape":"RevisionId",
+ "documentation":"A unique identifier for the current revision of the policy.
"
+ }
+ },
+ "documentation":"The structure representing the getPolicyResponse.
"
+ },
"GetProfileRequest":{
"type":"structure",
"required":["profilingGroupName"],
@@ -630,6 +718,13 @@
},
"documentation":"The structure representing the postAgentProfileResponse.
"
},
+ "Principal":{"type":"string"},
+ "Principals":{
+ "type":"list",
+ "member":{"shape":"Principal"},
+ "max":50,
+ "min":1
+ },
"ProfileTime":{
"type":"structure",
"members":{
@@ -707,6 +802,102 @@
},
"documentation":"Information about the profiling status.
"
},
+ "PutPermissionRequest":{
+ "type":"structure",
+ "required":[
+ "actionGroup",
+ "principals",
+ "profilingGroupName"
+ ],
+ "members":{
+ "actionGroup":{
+ "shape":"ActionGroup",
+ "documentation":"The list of actions that the users and roles can perform on the profiling group.
",
+ "location":"uri",
+ "locationName":"actionGroup"
+ },
+ "principals":{
+ "shape":"Principals",
+ "documentation":"The list of role and user ARNs or the accountId that needs access (wildcards are not allowed).
"
+ },
+ "profilingGroupName":{
+ "shape":"ProfilingGroupName",
+ "documentation":"The name of the profiling group.
",
+ "location":"uri",
+ "locationName":"profilingGroupName"
+ },
+ "revisionId":{
+ "shape":"RevisionId",
+ "documentation":"A unique identifier for the current revision of the policy. This is required, if a policy exists for the profiling group. This is not required when creating the policy for the first time.
"
+ }
+ },
+ "documentation":"The structure representing the putPermissionRequest.
"
+ },
+ "PutPermissionResponse":{
+ "type":"structure",
+ "required":[
+ "policy",
+ "revisionId"
+ ],
+ "members":{
+ "policy":{
+ "shape":"String",
+ "documentation":"The resource-based policy.
"
+ },
+ "revisionId":{
+ "shape":"RevisionId",
+ "documentation":"A unique identifier for the current revision of the policy.
"
+ }
+ },
+ "documentation":"The structure representing the putPermissionResponse.
"
+ },
+ "RemovePermissionRequest":{
+ "type":"structure",
+ "required":[
+ "actionGroup",
+ "profilingGroupName",
+ "revisionId"
+ ],
+ "members":{
+ "actionGroup":{
+ "shape":"ActionGroup",
+ "documentation":"The list of actions that the users and roles can perform on the profiling group.
",
+ "location":"uri",
+ "locationName":"actionGroup"
+ },
+ "profilingGroupName":{
+ "shape":"ProfilingGroupName",
+ "documentation":"The name of the profiling group.
",
+ "location":"uri",
+ "locationName":"profilingGroupName"
+ },
+ "revisionId":{
+ "shape":"RevisionId",
+ "documentation":"A unique identifier for the current revision of the policy.
",
+ "location":"querystring",
+ "locationName":"revisionId"
+ }
+ },
+ "documentation":"The structure representing the removePermissionRequest.
"
+ },
+ "RemovePermissionResponse":{
+ "type":"structure",
+ "required":[
+ "policy",
+ "revisionId"
+ ],
+ "members":{
+ "policy":{
+ "shape":"String",
+ "documentation":"The resource-based policy.
"
+ },
+ "revisionId":{
+ "shape":"RevisionId",
+ "documentation":"A unique identifier for the current revision of the policy.
"
+ }
+ },
+ "documentation":"The structure representing the removePermissionResponse.
"
+ },
"ResourceNotFoundException":{
"type":"structure",
"required":["message"],
@@ -720,6 +911,10 @@
},
"exception":true
},
+ "RevisionId":{
+ "type":"string",
+ "pattern":"[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}"
+ },
"ServiceQuotaExceededException":{
"type":"structure",
"required":["message"],
From 7c6cdf9ab3fa2b269b597c221a8368d1ca8c57e8 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Wed, 8 Apr 2020 18:20:53 +0000
Subject: [PATCH 037/604] Amazon Elastic Compute Cloud Update: This release
provides the ability to include tags in EC2 event notifications.
---
...ure-AmazonElasticComputeCloud-f5a7f99.json | 5 +
.../codegen-resources/service-2.json | 174 ++++++++++++++++--
2 files changed, 166 insertions(+), 13 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-f5a7f99.json
diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-f5a7f99.json b/.changes/next-release/feature-AmazonElasticComputeCloud-f5a7f99.json
new file mode 100644
index 000000000000..11e509702152
--- /dev/null
+++ b/.changes/next-release/feature-AmazonElasticComputeCloud-f5a7f99.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon Elastic Compute Cloud",
+ "description": "This release provides the ability to include tags in EC2 event notifications."
+}
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 21b7803c1fdf..a0e3349c083e 100755
--- a/services/ec2/src/main/resources/codegen-resources/service-2.json
+++ b/services/ec2/src/main/resources/codegen-resources/service-2.json
@@ -1411,6 +1411,16 @@
"input":{"shape":"DeregisterImageRequest"},
"documentation":"Deregisters the specified AMI. After you deregister an AMI, it can't be used to launch new instances; however, it doesn't affect any instances that you've already launched from the AMI. You'll continue to incur usage costs for those instances until you terminate them.
When you deregister an Amazon EBS-backed AMI, it doesn't affect the snapshot that was created for the root volume of the instance during the AMI creation process. When you deregister an instance store-backed AMI, it doesn't affect the files that you uploaded to Amazon S3 when you created the AMI.
"
},
+ "DeregisterInstanceEventNotificationAttributes":{
+ "name":"DeregisterInstanceEventNotificationAttributes",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"DeregisterInstanceEventNotificationAttributesRequest"},
+ "output":{"shape":"DeregisterInstanceEventNotificationAttributesResult"},
+ "documentation":"Deregisters tag keys to prevent tags that have the specified tag keys from being included in scheduled event notifications for resources in the Region.
For more information, see Customizing Scheduled Event Notifications.
"
+ },
"DeregisterTransitGatewayMulticastGroupMembers":{
"name":"DeregisterTransitGatewayMulticastGroupMembers",
"http":{
@@ -1831,6 +1841,16 @@
"output":{"shape":"DescribeInstanceCreditSpecificationsResult"},
"documentation":"Describes the credit option for CPU usage of the specified burstable performance instances. The credit options are standard
and unlimited
.
If you do not specify an instance ID, Amazon EC2 returns burstable performance instances with the unlimited
credit option, as well as instances that were previously configured as T2, T3, and T3a with the unlimited
credit option. For example, if you resize a T2 instance, while it is configured as unlimited
, to an M4 instance, Amazon EC2 returns the M4 instance.
If you specify one or more instance IDs, Amazon EC2 returns the credit option (standard
or unlimited
) of those instances. If you specify an instance ID that is not valid, such as an instance that is not a burstable performance instance, an error is returned.
Recently terminated instances might appear in the returned results. This interval is usually less than one hour.
If an Availability Zone is experiencing a service disruption and you specify instance IDs in the affected zone, or do not specify any instance IDs at all, the call fails. If you specify only instance IDs in an unaffected zone, the call works normally.
For more information, see Burstable Performance Instances in the Amazon Elastic Compute Cloud User Guide.
"
},
+ "DescribeInstanceEventNotificationAttributes":{
+ "name":"DescribeInstanceEventNotificationAttributes",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"DescribeInstanceEventNotificationAttributesRequest"},
+ "output":{"shape":"DescribeInstanceEventNotificationAttributesResult"},
+ "documentation":"Describes the tag keys that are registered to appear in scheduled event notifications for resources in the current Region.
"
+ },
"DescribeInstanceStatus":{
"name":"DescribeInstanceStatus",
"http":{
@@ -2249,7 +2269,7 @@
},
"input":{"shape":"DescribeSpotInstanceRequestsRequest"},
"output":{"shape":"DescribeSpotInstanceRequestsResult"},
- "documentation":"Describes the specified Spot Instance requests.
You can use DescribeSpotInstanceRequests
to find a running Spot Instance by examining the response. If the status of the Spot Instance is fulfilled
, the instance ID appears in the response and contains the identifier of the instance. Alternatively, you can use DescribeInstances with a filter to look for instances where the instance lifecycle is spot
.
We recommend that you set MaxResults
to a value between 5 and 1000 to limit the number of results returned. This paginates the output, which makes the list more manageable and returns the results faster. 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 DescribeSpotInstanceRequests
request to retrieve the remaining results.
Spot Instance requests are deleted four hours after they are canceled and their instances are terminated.
"
+ "documentation":"Describes the specified Spot Instance requests.
You can use DescribeSpotInstanceRequests
to find a running Spot Instance by examining the response. If the status of the Spot Instance is fulfilled
, the instance ID appears in the response and contains the identifier of the instance. Alternatively, you can use DescribeInstances with a filter to look for instances where the instance lifecycle is spot
.
We recommend that you set MaxResults
to a value between 5 and 1000 to limit the number of results returned. This paginates the output, which makes the list more manageable and returns the results faster. 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 DescribeSpotInstanceRequests
request to retrieve the remaining results.
Spot Instance requests are deleted four hours after they are canceled and their instances are terminated.
"
},
"DescribeSpotPriceHistory":{
"name":"DescribeSpotPriceHistory",
@@ -3523,6 +3543,16 @@
"output":{"shape":"RegisterImageResult"},
"documentation":"Registers an AMI. When you're creating an AMI, this is the final step you must complete before you can launch an instance from the AMI. For more information about creating AMIs, see Creating Your Own AMIs in the Amazon Elastic Compute Cloud User Guide.
For Amazon EBS-backed instances, CreateImage creates and registers the AMI in a single request, so you don't have to register the AMI yourself.
You can also use RegisterImage
to create an Amazon EBS-backed Linux AMI from a snapshot of a root device volume. You specify the snapshot using the block device mapping. For more information, see Launching a Linux Instance from a Backup in the Amazon Elastic Compute Cloud User Guide.
You can't register an image where a secondary (non-root) snapshot has AWS Marketplace product codes.
Windows and some Linux distributions, such as Red Hat Enterprise Linux (RHEL) and SUSE Linux Enterprise Server (SLES), use the EC2 billing product code associated with an AMI to verify the subscription status for package updates. To create a new AMI for operating systems that require a billing product code, instead of registering the AMI, do the following to preserve the billing product code association:
-
Launch an instance from an existing AMI with that billing product code.
-
Customize the instance.
-
Create an AMI from the instance using CreateImage.
If you purchase a Reserved Instance to apply to an On-Demand Instance that was launched from an AMI with a billing product code, make sure that the Reserved Instance has the matching billing product code. If you purchase a Reserved Instance without the matching billing product code, the Reserved Instance will not be applied to the On-Demand Instance. For information about how to obtain the platform details and billing information of an AMI, see Obtaining Billing Information in the Amazon Elastic Compute Cloud User Guide.
If needed, you can deregister an AMI at any time. Any modifications you make to an AMI backed by an instance store volume invalidates its registration. If you make changes to an image, deregister the previous image and register the new image.
"
},
+ "RegisterInstanceEventNotificationAttributes":{
+ "name":"RegisterInstanceEventNotificationAttributes",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"RegisterInstanceEventNotificationAttributesRequest"},
+ "output":{"shape":"RegisterInstanceEventNotificationAttributesResult"},
+ "documentation":"Registers a set of tag keys to include in scheduled event notifications for your resources. For more information, see Customizing Scheduled Event Notifications.
To remove tags, use .
"
+ },
"RegisterTransitGatewayMulticastGroupMembers":{
"name":"RegisterTransitGatewayMulticastGroupMembers",
"http":{
@@ -3791,7 +3821,7 @@
},
"input":{"shape":"RunInstancesRequest"},
"output":{"shape":"Reservation"},
- "documentation":"Launches the specified number of instances using an AMI for which you have permissions.
You can specify a number of options, or leave the default options. The following rules apply:
-
[EC2-VPC] If you don't specify a subnet ID, we choose a default subnet from your default VPC for you. If you don't have a default VPC, you must specify a subnet ID in the request.
-
[EC2-Classic] If don't specify an Availability Zone, we choose one for you.
-
Some instance types must be launched into a VPC. If you do not have a default VPC, or if you do not specify a subnet ID, the request fails. For more information, see Instance Types Available Only in a VPC.
-
[EC2-VPC] All instances have a network interface with a primary private IPv4 address. If you don't specify this address, we choose one from the IPv4 range of your subnet.
-
Not all instance types support IPv6 addresses. For more information, see Instance Types.
-
If you don't specify a security group ID, we use the default security group. For more information, see Security Groups.
-
If any of the AMIs have a product code attached for which the user has not subscribed, the request fails.
You can create a launch template, which is a resource that contains the parameters to launch an instance. When you launch an instance using RunInstances, you can specify the launch template instead of specifying the launch parameters.
To ensure faster instance launches, break up large requests into smaller batches. For example, create five separate launch requests for 100 instances each instead of one launch request for 500 instances.
An instance is ready for you to use when it's in the running
state. You can check the state of your instance using DescribeInstances. You can tag instances and EBS volumes during launch, after launch, or both. For more information, see CreateTags and Tagging Your Amazon EC2 Resources.
Linux instances have access to the public key of the key pair at boot. You can use this key to provide secure access to the instance. Amazon EC2 public images use this feature to provide secure access without passwords. For more information, see Key Pairs in the Amazon Elastic Compute Cloud User Guide.
For troubleshooting, see What To Do If An Instance Immediately Terminates, and Troubleshooting Connecting to Your Instance in the Amazon Elastic Compute Cloud User Guide.
"
+ "documentation":"Launches the specified number of instances using an AMI for which you have permissions.
You can specify a number of options, or leave the default options. The following rules apply:
-
[EC2-VPC] If you don't specify a subnet ID, we choose a default subnet from your default VPC for you. If you don't have a default VPC, you must specify a subnet ID in the request.
-
[EC2-Classic] If don't specify an Availability Zone, we choose one for you.
-
Some instance types must be launched into a VPC. If you do not have a default VPC, or if you do not specify a subnet ID, the request fails. For more information, see Instance Types Available Only in a VPC.
-
[EC2-VPC] All instances have a network interface with a primary private IPv4 address. If you don't specify this address, we choose one from the IPv4 range of your subnet.
-
Not all instance types support IPv6 addresses. For more information, see Instance Types.
-
If you don't specify a security group ID, we use the default security group. For more information, see Security Groups.
-
If any of the AMIs have a product code attached for which the user has not subscribed, the request fails.
You can create a launch template, which is a resource that contains the parameters to launch an instance. When you launch an instance using RunInstances, you can specify the launch template instead of specifying the launch parameters.
To ensure faster instance launches, break up large requests into smaller batches. For example, create five separate launch requests for 100 instances each instead of one launch request for 500 instances.
An instance is ready for you to use when it's in the running
state. You can check the state of your instance using DescribeInstances. You can tag instances and EBS volumes during launch, after launch, or both. For more information, see CreateTags and Tagging Your Amazon EC2 Resources.
Linux instances have access to the public key of the key pair at boot. You can use this key to provide secure access to the instance. Amazon EC2 public images use this feature to provide secure access without passwords. For more information, see Key Pairs in the Amazon Elastic Compute Cloud User Guide.
For troubleshooting, see What To Do If An Instance Immediately Terminates, and Troubleshooting Connecting to Your Instance in the Amazon Elastic Compute Cloud User Guide.
"
},
"RunScheduledInstances":{
"name":"RunScheduledInstances",
@@ -11242,6 +11272,44 @@
},
"documentation":"Contains the parameters for DeregisterImage.
"
},
+ "DeregisterInstanceEventNotificationAttributesRequest":{
+ "type":"structure",
+ "members":{
+ "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
.
"
+ },
+ "InstanceTagAttribute":{
+ "shape":"DeregisterInstanceTagAttributeRequest",
+ "documentation":"Information about the tag keys to deregister.
"
+ }
+ }
+ },
+ "DeregisterInstanceEventNotificationAttributesResult":{
+ "type":"structure",
+ "members":{
+ "InstanceTagAttribute":{
+ "shape":"InstanceTagNotificationAttribute",
+ "documentation":"The resulting set of tag keys.
",
+ "locationName":"instanceTagAttribute"
+ }
+ }
+ },
+ "DeregisterInstanceTagAttributeRequest":{
+ "type":"structure",
+ "members":{
+ "IncludeAllTagsOfInstance":{
+ "shape":"Boolean",
+ "documentation":"Indicates whether to deregister all tag keys in the current Region. Specify false
to deregister all tag keys.
"
+ },
+ "InstanceTagKeys":{
+ "shape":"InstanceTagKeySet",
+ "documentation":"Information about the tag keys to deregister.
",
+ "locationName":"InstanceTagKey"
+ }
+ },
+ "documentation":"Information about the tag keys to deregister for the current Region. You can either specify individual tag keys or deregister all tag keys in the current Region. You must specify either IncludeAllTagsOfInstance
or InstanceTagKeys
in the request
"
+ },
"DeregisterTransitGatewayMulticastGroupMembersRequest":{
"type":"structure",
"members":{
@@ -13042,6 +13110,25 @@
}
}
},
+ "DescribeInstanceEventNotificationAttributesRequest":{
+ "type":"structure",
+ "members":{
+ "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
.
"
+ }
+ }
+ },
+ "DescribeInstanceEventNotificationAttributesResult":{
+ "type":"structure",
+ "members":{
+ "InstanceTagAttribute":{
+ "shape":"InstanceTagNotificationAttribute",
+ "documentation":"Information about the registered tag keys.
",
+ "locationName":"instanceTagAttribute"
+ }
+ }
+ },
"DescribeInstanceStatusRequest":{
"type":"structure",
"members":{
@@ -22506,6 +22593,29 @@
},
"documentation":"Describes the disks that are available for the instance type.
"
},
+ "InstanceTagKeySet":{
+ "type":"list",
+ "member":{
+ "shape":"String",
+ "locationName":"item"
+ }
+ },
+ "InstanceTagNotificationAttribute":{
+ "type":"structure",
+ "members":{
+ "InstanceTagKeys":{
+ "shape":"InstanceTagKeySet",
+ "documentation":"The registered tag keys.
",
+ "locationName":"instanceTagKeySet"
+ },
+ "IncludeAllTagsOfInstance":{
+ "shape":"Boolean",
+ "documentation":"Indicates wheter all tag keys in the current Region are registered to appear in scheduled event notifications. true
indicates that all tag keys in the current Region are registered.
",
+ "locationName":"includeAllTagsOfInstance"
+ }
+ },
+ "documentation":"Describes the registered tag keys for the current Region.
"
+ },
"InstanceType":{
"type":"string",
"enum":[
@@ -27830,12 +27940,12 @@
"members":{
"AvailabilityZone":{
"shape":"String",
- "documentation":"The Availability Zone of the instance.
If not specified, an Availability Zone will be automatically chosen for you based on the load balancing criteria for the Region.
This parameter is not supported by .
",
+ "documentation":"The Availability Zone of the instance.
If not specified, an Availability Zone will be automatically chosen for you based on the load balancing criteria for the Region.
This parameter is not supported by CreateFleet.
",
"locationName":"availabilityZone"
},
"Affinity":{
"shape":"String",
- "documentation":"The affinity setting for the instance on the Dedicated Host. This parameter is not supported for the ImportInstance command.
This parameter is not supported by .
",
+ "documentation":"The affinity setting for the instance on the Dedicated Host. This parameter is not supported for the ImportInstance command.
This parameter is not supported by CreateFleet.
",
"locationName":"affinity"
},
"GroupName":{
@@ -27845,27 +27955,27 @@
},
"PartitionNumber":{
"shape":"Integer",
- "documentation":"The number of the partition the instance is in. Valid only if the placement group strategy is set to partition
.
This parameter is not supported by .
",
+ "documentation":"The number of the partition the instance is in. Valid only if the placement group strategy is set to partition
.
This parameter is not supported by CreateFleet.
",
"locationName":"partitionNumber"
},
"HostId":{
"shape":"String",
- "documentation":"The ID of the Dedicated Host on which the instance resides. This parameter is not supported for the ImportInstance command.
This parameter is not supported by .
",
+ "documentation":"The ID of the Dedicated Host on which the instance resides. This parameter is not supported for the ImportInstance command.
This parameter is not supported by CreateFleet.
",
"locationName":"hostId"
},
"Tenancy":{
"shape":"Tenancy",
- "documentation":"The tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of dedicated
runs on single-tenant hardware. The host
tenancy is not supported for the ImportInstance command.
This parameter is not supported by .
",
+ "documentation":"The tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of dedicated
runs on single-tenant hardware. The host
tenancy is not supported for the ImportInstance command.
This parameter is not supported by CreateFleet.
",
"locationName":"tenancy"
},
"SpreadDomain":{
"shape":"String",
- "documentation":"Reserved for future use.
This parameter is not supported by .
",
+ "documentation":"Reserved for future use.
This parameter is not supported by CreateFleet.
",
"locationName":"spreadDomain"
},
"HostResourceGroupArn":{
"shape":"String",
- "documentation":"The ARN of the host resource group in which to launch the instances. If you specify a host resource group ARN, omit the Tenancy parameter or set it to host
.
This parameter is not supported by .
",
+ "documentation":"The ARN of the host resource group in which to launch the instances. If you specify a host resource group ARN, omit the Tenancy parameter or set it to host
.
This parameter is not supported by CreateFleet.
",
"locationName":"hostResourceGroupArn"
}
},
@@ -28901,6 +29011,44 @@
},
"documentation":"Contains the output of RegisterImage.
"
},
+ "RegisterInstanceEventNotificationAttributesRequest":{
+ "type":"structure",
+ "members":{
+ "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
.
"
+ },
+ "InstanceTagAttribute":{
+ "shape":"RegisterInstanceTagAttributeRequest",
+ "documentation":"Information about the tag keys to register.
"
+ }
+ }
+ },
+ "RegisterInstanceEventNotificationAttributesResult":{
+ "type":"structure",
+ "members":{
+ "InstanceTagAttribute":{
+ "shape":"InstanceTagNotificationAttribute",
+ "documentation":"The resulting set of tag keys.
",
+ "locationName":"instanceTagAttribute"
+ }
+ }
+ },
+ "RegisterInstanceTagAttributeRequest":{
+ "type":"structure",
+ "members":{
+ "IncludeAllTagsOfInstance":{
+ "shape":"Boolean",
+ "documentation":"Indicates whether to register all tag keys in the current Region. Specify true
to register all tag keys.
"
+ },
+ "InstanceTagKeys":{
+ "shape":"InstanceTagKeySet",
+ "documentation":"The tag keys to register.
",
+ "locationName":"InstanceTagKey"
+ }
+ },
+ "documentation":"Information about the tag keys to register for the current Region. You can either specify individual tag keys or register all tag keys in the current Region. You must specify either IncludeAllTagsOfInstance
or InstanceTagKeys
in the request
"
+ },
"RegisterTransitGatewayMulticastGroupMembersRequest":{
"type":"structure",
"members":{
@@ -32877,7 +33025,7 @@
},
"IamFleetRole":{
"shape":"String",
- "documentation":"The Amazon Resource Name (ARN) of an AWS Identity and Access Management (IAM) role that grants the Spot Fleet the permission to request, launch, terminate, and tag instances on your behalf. For more information, see Spot Fleet Prerequisites in the Amazon EC2 User Guide for Linux Instances. Spot Fleet can terminate Spot Instances on your behalf when you cancel its Spot Fleet request using CancelSpotFleetRequests or when the Spot Fleet request expires, if you set TerminateInstancesWithExpiration
.
",
+ "documentation":"The Amazon Resource Name (ARN) of an AWS Identity and Access Management (IAM) role that grants the Spot Fleet the permission to request, launch, terminate, and tag instances on your behalf. For more information, see Spot Fleet Prerequisites in the Amazon EC2 User Guide for Linux Instances. Spot Fleet can terminate Spot Instances on your behalf when you cancel its Spot Fleet request using CancelSpotFleetRequests or when the Spot Fleet request expires, if you set TerminateInstancesWithExpiration
.
",
"locationName":"iamFleetRole"
},
"LaunchSpecifications":{
@@ -33188,7 +33336,7 @@
},
"SpotInstanceType":{
"shape":"SpotInstanceType",
- "documentation":"The Spot Instance request type. For RunInstances, persistent Spot Instance requests are only supported when InstanceInterruptionBehavior is set to either hibernate
or stop
.
"
+ "documentation":"The Spot Instance request type. For RunInstances, persistent Spot Instance requests are only supported when InstanceInterruptionBehavior is set to either hibernate
or stop
.
"
},
"BlockDurationMinutes":{
"shape":"Integer",
@@ -33922,7 +34070,7 @@
"locationName":"defaultTargetCapacityType"
}
},
- "documentation":"The number of units to request. You can choose to set the target capacity in terms of instances or a performance characteristic that is important to your application workload, such as vCPUs, memory, or I/O. If the request type is maintain
, you can specify a target capacity of 0 and add capacity later.
You can use the On-Demand Instance MaxTotalPrice
parameter, the Spot Instance MaxTotalPrice
, or both to ensure that your fleet cost does not exceed your budget. If you set a maximum price per hour for the On-Demand Instances and Spot Instances in your request, EC2 Fleet will launch instances until it reaches the maximum amount that you're willing to pay. When the maximum amount you're willing to pay is reached, the fleet stops launching instances even if it hasn’t met the target capacity. The MaxTotalPrice
parameters are located in and
"
+ "documentation":"The number of units to request. You can choose to set the target capacity in terms of instances or a performance characteristic that is important to your application workload, such as vCPUs, memory, or I/O. If the request type is maintain
, you can specify a target capacity of 0 and add capacity later.
You can use the On-Demand Instance MaxTotalPrice
parameter, the Spot Instance MaxTotalPrice
, or both to ensure that your fleet cost does not exceed your budget. If you set a maximum price per hour for the On-Demand Instances and Spot Instances in your request, EC2 Fleet will launch instances until it reaches the maximum amount that you're willing to pay. When the maximum amount you're willing to pay is reached, the fleet stops launching instances even if it hasn’t met the target capacity. The MaxTotalPrice
parameters are located in OnDemandOptions and SpotOptions
"
},
"TargetCapacitySpecificationRequest":{
"type":"structure",
@@ -33945,7 +34093,7 @@
"documentation":"The default TotalTargetCapacity
, which is either Spot
or On-Demand
.
"
}
},
- "documentation":"The number of units to request. You can choose to set the target capacity as the number of instances. Or you can set the target capacity to a performance characteristic that is important to your application workload, such as vCPUs, memory, or I/O. If the request type is maintain
, you can specify a target capacity of 0 and add capacity later.
You can use the On-Demand Instance MaxTotalPrice
parameter, the Spot Instance MaxTotalPrice
parameter, or both parameters to ensure that your fleet cost does not exceed your budget. If you set a maximum price per hour for the On-Demand Instances and Spot Instances in your request, EC2 Fleet will launch instances until it reaches the maximum amount that you're willing to pay. When the maximum amount you're willing to pay is reached, the fleet stops launching instances even if it hasn’t met the target capacity. The MaxTotalPrice
parameters are located in and .
"
+ "documentation":"The number of units to request. You can choose to set the target capacity as the number of instances. Or you can set the target capacity to a performance characteristic that is important to your application workload, such as vCPUs, memory, or I/O. If the request type is maintain
, you can specify a target capacity of 0 and add capacity later.
You can use the On-Demand Instance MaxTotalPrice
parameter, the Spot Instance MaxTotalPrice
parameter, or both parameters to ensure that your fleet cost does not exceed your budget. If you set a maximum price per hour for the On-Demand Instances and Spot Instances in your request, EC2 Fleet will launch instances until it reaches the maximum amount that you're willing to pay. When the maximum amount you're willing to pay is reached, the fleet stops launching instances even if it hasn’t met the target capacity. The MaxTotalPrice
parameters are located in OnDemandOptionsRequest and SpotOptionsRequest.
"
},
"TargetConfiguration":{
"type":"structure",
From 04fb2c43af0c16481edc6d60105c4a25246e9d26 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Wed, 8 Apr 2020 18:22:20 +0000
Subject: [PATCH 038/604] Updated endpoints.json.
---
.../feature-AWSSDKforJavav2-e97801d.json | 5 +
.../regions/internal/region/endpoints.json | 111 +++++++++++++-----
2 files changed, 89 insertions(+), 27 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 588d2d418ed6..efe6f4c5d5a9 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
@@ -1412,6 +1412,30 @@
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
+ "fips-us-east-1" : {
+ "credentialScope" : {
+ "region" : "us-east-1"
+ },
+ "hostname" : "directconnect-fips.us-east-1.amazonaws.com"
+ },
+ "fips-us-east-2" : {
+ "credentialScope" : {
+ "region" : "us-east-2"
+ },
+ "hostname" : "directconnect-fips.us-east-2.amazonaws.com"
+ },
+ "fips-us-west-1" : {
+ "credentialScope" : {
+ "region" : "us-west-1"
+ },
+ "hostname" : "directconnect-fips.us-west-1.amazonaws.com"
+ },
+ "fips-us-west-2" : {
+ "credentialScope" : {
+ "region" : "us-west-2"
+ },
+ "hostname" : "directconnect-fips.us-west-2.amazonaws.com"
+ },
"me-south-1" : { },
"sa-east-1" : { },
"us-east-1" : { },
@@ -2315,6 +2339,30 @@
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
+ "fips-us-east-1" : {
+ "credentialScope" : {
+ "region" : "us-east-1"
+ },
+ "hostname" : "glue-fips.us-east-1.amazonaws.com"
+ },
+ "fips-us-east-2" : {
+ "credentialScope" : {
+ "region" : "us-east-2"
+ },
+ "hostname" : "glue-fips.us-east-2.amazonaws.com"
+ },
+ "fips-us-west-1" : {
+ "credentialScope" : {
+ "region" : "us-west-1"
+ },
+ "hostname" : "glue-fips.us-west-1.amazonaws.com"
+ },
+ "fips-us-west-2" : {
+ "credentialScope" : {
+ "region" : "us-west-2"
+ },
+ "hostname" : "glue-fips.us-west-2.amazonaws.com"
+ },
"me-south-1" : { },
"sa-east-1" : { },
"us-east-1" : { },
@@ -3324,30 +3372,6 @@
"ap-southeast-2" : { },
"eu-central-1" : { },
"eu-west-1" : { },
- "fips-us-east-1" : {
- "credentialScope" : {
- "region" : "us-east-1"
- },
- "hostname" : "opsworks-cm-fips.us-east-1.amazonaws.com"
- },
- "fips-us-east-2" : {
- "credentialScope" : {
- "region" : "us-east-2"
- },
- "hostname" : "opsworks-cm-fips.us-east-2.amazonaws.com"
- },
- "fips-us-west-1" : {
- "credentialScope" : {
- "region" : "us-west-1"
- },
- "hostname" : "opsworks-cm-fips.us-west-1.amazonaws.com"
- },
- "fips-us-west-2" : {
- "credentialScope" : {
- "region" : "us-west-2"
- },
- "hostname" : "opsworks-cm-fips.us-west-2.amazonaws.com"
- },
"us-east-1" : { },
"us-east-2" : { },
"us-west-1" : { },
@@ -4292,7 +4316,18 @@
"sslCommonName" : "shield.us-east-1.amazonaws.com"
},
"endpoints" : {
- "us-east-1" : { }
+ "fips-us-east-1" : {
+ "credentialScope" : {
+ "region" : "us-east-1"
+ },
+ "hostname" : "shield-fips.us-east-1.amazonaws.com"
+ },
+ "us-east-1" : {
+ "credentialScope" : {
+ "region" : "us-east-1"
+ },
+ "hostname" : "shield.us-east-1.amazonaws.com"
+ }
},
"isRegionalized" : false
},
@@ -6181,8 +6216,18 @@
},
"directconnect" : {
"endpoints" : {
- "us-gov-east-1" : { },
- "us-gov-west-1" : { }
+ "us-gov-east-1" : {
+ "credentialScope" : {
+ "region" : "us-gov-east-1"
+ },
+ "hostname" : "directconnect.us-gov-east-1.amazonaws.com"
+ },
+ "us-gov-west-1" : {
+ "credentialScope" : {
+ "region" : "us-gov-west-1"
+ },
+ "hostname" : "directconnect.us-gov-west-1.amazonaws.com"
+ }
}
},
"dms" : {
@@ -6350,6 +6395,18 @@
},
"glue" : {
"endpoints" : {
+ "fips-us-gov-east-1" : {
+ "credentialScope" : {
+ "region" : "us-gov-east-1"
+ },
+ "hostname" : "glue-fips.us-gov-east-1.amazonaws.com"
+ },
+ "fips-us-gov-west-1" : {
+ "credentialScope" : {
+ "region" : "us-gov-west-1"
+ },
+ "hostname" : "glue-fips.us-gov-west-1.amazonaws.com"
+ },
"us-gov-east-1" : { },
"us-gov-west-1" : { }
}
From e3813e32809fe068c638ad23d8edc504bc6921b7 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Wed, 8 Apr 2020 18:22:54 +0000
Subject: [PATCH 039/604] Release 2.11.12. Updated CHANGELOG.md, README.md and
all pom.xml.
---
.changes/2.11.12.json | 46 +++++++++++++++++++
.../feature-AWSCloudFormation-274b657.json | 5 --
...ture-AWSElementalMediaConvert-27aebd8.json | 5 --
...feature-AWSMigrationHubConfig-299a822.json | 5 --
.../feature-AWSSDKforJavav2-e97801d.json | 5 --
.../feature-AmazonChime-a3b81ab.json | 5 --
...eature-AmazonCodeGuruProfiler-5298c5d.json | 5 --
...ure-AmazonEC2ContainerService-e5fff53.json | 5 --
...ure-AmazonElasticComputeCloud-f5a7f99.json | 5 --
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/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/netty-nio-client/pom.xml | 2 +-
http-clients/pom.xml | 2 +-
http-clients/url-connection-client/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/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/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/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/iam/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/iotthingsgraph/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/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/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/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/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/textract/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 +-
273 files changed, 345 insertions(+), 306 deletions(-)
create mode 100644 .changes/2.11.12.json
delete mode 100644 .changes/next-release/feature-AWSCloudFormation-274b657.json
delete mode 100644 .changes/next-release/feature-AWSElementalMediaConvert-27aebd8.json
delete mode 100644 .changes/next-release/feature-AWSMigrationHubConfig-299a822.json
delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-e97801d.json
delete mode 100644 .changes/next-release/feature-AmazonChime-a3b81ab.json
delete mode 100644 .changes/next-release/feature-AmazonCodeGuruProfiler-5298c5d.json
delete mode 100644 .changes/next-release/feature-AmazonEC2ContainerService-e5fff53.json
delete mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-f5a7f99.json
diff --git a/.changes/2.11.12.json b/.changes/2.11.12.json
new file mode 100644
index 000000000000..3a48687df2cd
--- /dev/null
+++ b/.changes/2.11.12.json
@@ -0,0 +1,46 @@
+{
+ "version": "2.11.12",
+ "date": "2020-04-08",
+ "entries": [
+ {
+ "type": "feature",
+ "category": "AWS Migration Hub Config",
+ "description": "Adding ThrottlingException"
+ },
+ {
+ "type": "feature",
+ "category": "AWS SDK for Java v2",
+ "description": "Updated service endpoint metadata."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon CodeGuru Profiler",
+ "description": "CodeGuruProfiler adds support for resource based authorization to submit profile data."
+ },
+ {
+ "type": "feature",
+ "category": "AWS CloudFormation",
+ "description": "The OrganizationalUnitIds parameter on StackSet and the OrganizationalUnitId parameter on StackInstance, StackInstanceSummary, and StackSetOperationResultSummary are now reserved for internal use. No data is returned for this parameter."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Elastic Compute Cloud",
+ "description": "This release provides the ability to include tags in EC2 event notifications."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon EC2 Container Service",
+ "description": "This release provides native support for specifying Amazon EFS file systems as volumes in your Amazon ECS task definitions."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Chime",
+ "description": "feature: Chime: This release introduces the ability to tag Amazon Chime SDK meeting resources. You can use tags to organize and identify your resources for cost allocation."
+ },
+ {
+ "type": "feature",
+ "category": "AWS Elemental MediaConvert",
+ "description": "AWS Elemental MediaConvert SDK adds support for queue hopping. Jobs can now hop from their original queue to a specified alternate queue, based on the maximum wait time that you specify in the job settings."
+ }
+ ]
+}
\ No newline at end of file
diff --git a/.changes/next-release/feature-AWSCloudFormation-274b657.json b/.changes/next-release/feature-AWSCloudFormation-274b657.json
deleted file mode 100644
index 1011488ab53c..000000000000
--- a/.changes/next-release/feature-AWSCloudFormation-274b657.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "AWS CloudFormation",
- "description": "The OrganizationalUnitIds parameter on StackSet and the OrganizationalUnitId parameter on StackInstance, StackInstanceSummary, and StackSetOperationResultSummary are now reserved for internal use. No data is returned for this parameter."
-}
diff --git a/.changes/next-release/feature-AWSElementalMediaConvert-27aebd8.json b/.changes/next-release/feature-AWSElementalMediaConvert-27aebd8.json
deleted file mode 100644
index b6e3aba1b89e..000000000000
--- a/.changes/next-release/feature-AWSElementalMediaConvert-27aebd8.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Elemental MediaConvert",
- "description": "AWS Elemental MediaConvert SDK adds support for queue hopping. Jobs can now hop from their original queue to a specified alternate queue, based on the maximum wait time that you specify in the job settings."
-}
diff --git a/.changes/next-release/feature-AWSMigrationHubConfig-299a822.json b/.changes/next-release/feature-AWSMigrationHubConfig-299a822.json
deleted file mode 100644
index 1fbe1ed16907..000000000000
--- a/.changes/next-release/feature-AWSMigrationHubConfig-299a822.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Migration Hub Config",
- "description": "Adding ThrottlingException"
-}
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-AmazonChime-a3b81ab.json b/.changes/next-release/feature-AmazonChime-a3b81ab.json
deleted file mode 100644
index faab25bcf264..000000000000
--- a/.changes/next-release/feature-AmazonChime-a3b81ab.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Chime",
- "description": "feature: Chime: This release introduces the ability to tag Amazon Chime SDK meeting resources. You can use tags to organize and identify your resources for cost allocation."
-}
diff --git a/.changes/next-release/feature-AmazonCodeGuruProfiler-5298c5d.json b/.changes/next-release/feature-AmazonCodeGuruProfiler-5298c5d.json
deleted file mode 100644
index 628548f6a7e6..000000000000
--- a/.changes/next-release/feature-AmazonCodeGuruProfiler-5298c5d.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon CodeGuru Profiler",
- "description": "CodeGuruProfiler adds support for resource based authorization to submit profile data."
-}
diff --git a/.changes/next-release/feature-AmazonEC2ContainerService-e5fff53.json b/.changes/next-release/feature-AmazonEC2ContainerService-e5fff53.json
deleted file mode 100644
index 9f0b3b7a99f9..000000000000
--- a/.changes/next-release/feature-AmazonEC2ContainerService-e5fff53.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon EC2 Container Service",
- "description": "This release provides native support for specifying Amazon EFS file systems as volumes in your Amazon ECS task definitions."
-}
diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-f5a7f99.json b/.changes/next-release/feature-AmazonElasticComputeCloud-f5a7f99.json
deleted file mode 100644
index 11e509702152..000000000000
--- a/.changes/next-release/feature-AmazonElasticComputeCloud-f5a7f99.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Elastic Compute Cloud",
- "description": "This release provides the ability to include tags in EC2 event notifications."
-}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d7f2e8288dc1..38dcc3e5a9ac 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,36 @@
+# __2.11.12__ __2020-04-08__
+## __AWS CloudFormation__
+ - ### Features
+ - The OrganizationalUnitIds parameter on StackSet and the OrganizationalUnitId parameter on StackInstance, StackInstanceSummary, and StackSetOperationResultSummary are now reserved for internal use. No data is returned for this parameter.
+
+## __AWS Elemental MediaConvert__
+ - ### Features
+ - AWS Elemental MediaConvert SDK adds support for queue hopping. Jobs can now hop from their original queue to a specified alternate queue, based on the maximum wait time that you specify in the job settings.
+
+## __AWS Migration Hub Config__
+ - ### Features
+ - Adding ThrottlingException
+
+## __AWS SDK for Java v2__
+ - ### Features
+ - Updated service endpoint metadata.
+
+## __Amazon Chime__
+ - ### Features
+ - feature: Chime: This release introduces the ability to tag Amazon Chime SDK meeting resources. You can use tags to organize and identify your resources for cost allocation.
+
+## __Amazon CodeGuru Profiler__
+ - ### Features
+ - CodeGuruProfiler adds support for resource based authorization to submit profile data.
+
+## __Amazon EC2 Container Service__
+ - ### Features
+ - This release provides native support for specifying Amazon EFS file systems as volumes in your Amazon ECS task definitions.
+
+## __Amazon Elastic Compute Cloud__
+ - ### Features
+ - This release provides the ability to include tags in EC2 event notifications.
+
# __2.11.11__ __2020-04-07__
## __AWS MediaConnect__
- ### Features
diff --git a/README.md b/README.md
index bc3124bdd7a9..234f8e69d7dc 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.11.11
+ 2.11.12
pom
import
@@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only:
software.amazon.awssdk
ec2
- 2.11.11
+ 2.11.12
software.amazon.awssdk
s3
- 2.11.11
+ 2.11.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.11.11
+ 2.11.12
```
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index df029d620a93..099f8eb8bda8 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
archetype-lambda
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index 3a9a4d2d8600..aa74bb0a1d0c 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index f42a643ddabb..9d97f9afe7b6 100644
--- a/aws-sdk-java/pom.xml
+++ b/aws-sdk-java/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12-SNAPSHOT
+ 2.11.12
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index 29c9501000a2..86e2d9e5f8c8 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index c9b8ccf4d307..cf837c7f62d2 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12-SNAPSHOT
+ 2.11.12
../pom.xml
bom
diff --git a/bundle/pom.xml b/bundle/pom.xml
index b2a3f467a479..e8fe9960ee8e 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12-SNAPSHOT
+ 2.11.12
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index cad328f3d097..25265bd08a61 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.11.12-SNAPSHOT
+ 2.11.12
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index d88bc818f132..a8e451b41acc 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12-SNAPSHOT
+ 2.11.12
codegen-lite
AWS Java SDK :: Code Generator Lite
diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml
index d003bacec63a..9cd105e44af6 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.11.12-SNAPSHOT
+ 2.11.12
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index 2051b831cdcb..ad2ff2bc63bb 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12-SNAPSHOT
+ 2.11.12
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index 95d135eb9dc6..b5096ba0ddcf 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index c4dcae776e24..040b4873482b 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index 6718d5c27e75..022eb6fe2539 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.12-SNAPSHOT
+ 2.11.12
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index 49132c036787..f2b06dee36ac 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.12-SNAPSHOT
+ 2.11.12
aws-core
diff --git a/core/pom.xml b/core/pom.xml
index 0211c0394deb..bdd181d98e88 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index f0e9e93a9dda..f1e440a0e59c 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.12-SNAPSHOT
+ 2.11.12
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index 75ab951050ad..29024d76272f 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.11.12-SNAPSHOT
+ 2.11.12
4.0.0
diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml
index 6e07405c020e..3d185d197571 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.11.12-SNAPSHOT
+ 2.11.12
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index 0f341e58d568..37dce207985e 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.11.12-SNAPSHOT
+ 2.11.12
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index 437f19564fde..3d09dfc8d5e8 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.11.12-SNAPSHOT
+ 2.11.12
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index 842e71edb65c..00eab2d11765 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.11.12-SNAPSHOT
+ 2.11.12
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index e85158c8b226..0eb10499e3c9 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index 7ceffdedef78..3b155e7191e0 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index b0c0079a08e0..02c7fc4cf1c7 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.12-SNAPSHOT
+ 2.11.12
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index 497a4782f53f..40a59e522fec 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.11.12-SNAPSHOT
+ 2.11.12
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index 9d9416f882ee..80f3409af318 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.11.12-SNAPSHOT
+ 2.11.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 0e85ce285f4f..fa7c20211b2a 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.11.12-SNAPSHOT
+ 2.11.12
apache-client
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index a5946107ba75..05e0bfe03eee 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.11.12-SNAPSHOT
+ 2.11.12
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index 43f5e9414526..da8c40b0df88 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index 0cf1ae5ada44..0f11c3b13831 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.11.12-SNAPSHOT
+ 2.11.12
4.0.0
diff --git a/pom.xml b/pom.xml
index 70aa44f534eb..22a44a755396 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12-SNAPSHOT
+ 2.11.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 17614f9542b7..0a7eb61c4a56 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12-SNAPSHOT
+ 2.11.12
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index a7b2fb2d6d93..86f38481e5ad 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.11.12-SNAPSHOT
+ 2.11.12
dynamodb-enhanced
${awsjavasdk.version}-PREVIEW
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index c9dd6a9eaab9..f7977d63c6be 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12-SNAPSHOT
+ 2.11.12
services-custom
AWS Java SDK :: Custom Services
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index a1547cae0d4c..8bd57d7cd9de 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 033b68b056e4..1c927042dca0 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index 52b8c59c56de..13ace4e9d03b 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml
index 709bb8a395ac..cae9532aaca1 100644
--- a/services/alexaforbusiness/pom.xml
+++ b/services/alexaforbusiness/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
alexaforbusiness
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index a232793f3474..7fa5e1813725 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index 6b6c94f36d69..42b44166be9d 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index b5dd04d9a9dc..d1379b00e289 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index dda9aa8e0cb3..aa6a81aee9e8 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index ad8a3d8707f0..5762458b39e1 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index ae1112e5699c..e48503e26278 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 483e9bab8a96..6f4032f7cf6c 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index 756b5ccf80fe..fc21249eab68 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index 4c022a933489..2d9b3ba06791 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index 8327d8c30d9b..be042ae2939b 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index 7f9bb58675ac..1ac8db332241 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
appsync
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index 21920b7d6809..55dd48b57778 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index 512e7916ef52..e33cfe82f0af 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index 263a9969b473..0cfc5ce87a21 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index 62fd08bb76be..3338e917b4f4 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index 41abde14c9d2..16b7e6936fe5 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 4a1b4b861989..6486b52457a8 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index f7c1a29f85c9..d0b1b1392150 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index b30bb796c74e..45b624d988da 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
cloud9
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index c5e33490f663..467b8bd3c78e 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index a1a896b231d2..ecbeaa5d87c8 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index 2730dc3f2552..d61ac98f84c4 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index c79fa494a72d..6a89dc25a056 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index dd1d84b9faa0..6d0d0c4f4e4b 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index 09ac346a2e2b..7e93beb7ea3d 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index d59701c8d275..bdf25fa04fde 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index c27889af27e7..1fb45b950be9 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index df70def3e278..811697c774d3 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index 1034597104c3..7884b0bd4d1c 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index bda5000b1f25..91e07b290592 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index 7ba6b0a858e5..03a7ab05b9fb 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index c74c813a52cf..ba13538d9b38 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index eb1973926f02..ca1e2566de54 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index b04ea0b7b94a..c8841302bf26 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index 1771e55c4604..d0e03807ef90 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index 5eb93c9ed857..663f0b1a1630 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index bb9bf9ff0dba..06db1e1af360 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index 8eccc1870abd..c1f6bdb3a136 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index dc3809934332..07d460a2401b 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index 0749f0da860f..27bd05ae704f 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index 697a532630c4..b5592244aee7 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
cognitoidentityprovider
AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service
diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml
index a35ecdc2ad14..344cdfa5e7e4 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index cbab85dd279e..4b70f9282c1a 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index 18671be9f72f..39fa46021b3d 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index 73eb5df4bf8d..fdf188604b97 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index 1f2010a1ab05..f81021486b19 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index 9a309d61747f..a73dd28fdb7a 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index f6489cbd4b43..f761be64a23c 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index fd34d3f9bd55..30adb6ca75e5 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
costandusagereport
AWS Java SDK :: Services :: AWS Cost and Usage Report
diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml
index acb2e5344ab7..72899fd355c6 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
costexplorer
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index e1676c5b1757..a3352914c0cf 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index 02d3923fd283..1b9a1e0d9ee4 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index 8edd5e86bf5c..872ec4ae58e5 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index a62992470684..176aa4463e01 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index 06f06ca7283c..6d77cddcb819 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index 3d5469bf0552..2d5271df74af 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index 35f22fcaa0d6..5ec944e7c00b 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index 99e06c4d1ec6..35b7a48f6121 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index a400d48a9124..21d954d0fd16 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index 160feabc52e2..47596e4f9e9c 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index 4181ea2f3ab2..f6d542f3156b 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index 4a119bf008b7..c5bf8e2fb544 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index feceb8b21985..05f248985377 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 506ca6da6646..518236960a21 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index b318b2e9eadb..eb90586379fd 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index aaffa8c4d017..e07e8c3c90fb 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index 34c761b12f8c..add029697bf9 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index 741cb6738cf3..276c68be5de2 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index 94d7f25c1302..a253e8343aad 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index 08e79969d377..5939a635e110 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index 1c4b365b7a13..e27ec8a31531 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index 7d265d5b63c9..3aae612888c9 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index 1512160339f1..3d7f53ccdaba 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index d90c28269f0f..50de577961e6 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index 9097fa01d4ed..e09f644af903 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 3c9bea7e2f02..f880316937c9 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index 7a9704d54343..69d79237bc25 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index adb5860f621a..389cfa4a305a 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index bb96779909f4..d202188bbf19 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index 0c697ff4f923..1394245f4cbe 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index f1dd3bd6a543..4ca6b2c46d36 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index 78eb7f5dd524..0965cd50b31b 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index a54fadfb2635..19ca99e80435 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index 069ba9e09007..fc9d13badaf1 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index b28cb565c63f..b9c1a9b5f6c1 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index 52f0c4159621..d2ea1b37c9de 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index a0ba89969dd8..05fd5c6b0727 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index 02cd8ed201a9..fdc1933fe77f 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
glue
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index 8075f982936f..e7fd2defcd9d 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index 184633915e94..dc1dda3dd80d 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index bb0c5e8201fd..26958f83dc3e 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index 990868a3cc5a..c3380e6c7791 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index fb8dcd1a00d7..0a4e7401c7a3 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index 09b74621f223..22b9265139de 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 2720938a05af..2b343db73962 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index b7c34f684208..7aeb41e1b52e 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index 023f559d7039..a90a75088806 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index 1261f8a9638b..e8f00b1ca2dd 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index 33617be8e48f..9006169910aa 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index 35c2bad53cff..92eaf18215d9 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index 296317738420..5e40e2faddf3 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 9e10295cd276..7349680501c0 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 4e8473397bc3..2e55ec8d2fa4 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index c6cf13ef2580..b94d67586e03 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index fcc10efe52a7..f07d68bc1b82 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index bcfe4e2fed5c..542bf4483741 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 838c9beb3e53..1521da3dbe57 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index ebd568a921b2..e5ee1149e829 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index b2fb88bcf872..a8ec0e9c39ce 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index b7730598096b..4e3b2ee92dc9 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index d2af7721c61c..3d331ed5cf6c 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index 4d6a4f84502d..06cc8c2cfd8d 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index fd2c8ecede7a..ac2f99151fe5 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index 6656a74f8763..18e53af3602c 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index 0e2336c37067..94b293728845 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index 9303241a9820..114bae344557 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index 7636f935b421..975e4aa8c7c0 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index c4ac4e20a091..433acf40d0f8 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index 41ef7ae6ca3e..9e124bffa108 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index f38dcc0749b2..6afbfa885d85 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index 4776f774a11a..effcf6d590a0 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index 2c2bcd720e53..b2103648f0f5 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie/pom.xml b/services/macie/pom.xml
index c582cf82abfd..a3777f40f1e0 100644
--- a/services/macie/pom.xml
+++ b/services/macie/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
macie
AWS Java SDK :: Services :: Macie
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index a63caeef2880..89fd77cf877f 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index 1848e10c6fd9..8715f01323a4 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 27590dfaa895..12be75958c59 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index 3a8b7bc0a5aa..ab8e757a8ae9 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index 042881b5b942..88ee097de712 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 4811d75101ca..12cff535f10b 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index c3ef7696d87b..ca47398dee2f 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index bb98c470e99b..030f16162200 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index dcbd7efadcd4..19e740227ae6 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
mediapackage
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 0c52041e3048..4617710b2f4e 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index b2038e5d275c..a44148a2058a 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index 70c3887c6afa..21805300891b 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 830c60438b49..f0f95ce642d3 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index dc9d949dba64..0e63bd7872d9 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index 02c4cddad293..8afa9ab629d3 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index f4a1090cb7e5..d41a67df72ff 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index 4b7ae875b31f..f57a5762dba2 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index f29b81154101..1fe83598f4b6 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index 84fdf7de4089..61f771d5db13 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index 0668f2def53e..ffa1104d107d 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index dd409e38175c..1dd4f011c76d 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index a1c3612c4507..6bfeb395d299 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
opsworkscm
AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate
diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml
index 412107969dfe..7fd797a3462e 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index 269b68edcbf6..8185a71a988a 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index df0129f0b4c6..2197aaf7c4ec 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index 505591ed28af..0096214bcdbc 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 1fc3cbc25619..0fc8cf9a2780 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 0832adbffe09..149cf530d734 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index fbe8fe395aa0..66e6fc706625 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index 6e47a2aad05e..e2a5e109b2e9 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index 8aa867874c17..2ad874f7a49f 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index 0a7cac63a950..c29b5ea8c1fe 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index 9e0b7ed9fd9d..e4d116277433 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12-SNAPSHOT
+ 2.11.12
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index f8e5ef191a8f..38f86f4b5e01 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
pricing
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index ca02a2dd59ce..f4757a444f8d 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index 389252875873..fda7a1d981ac 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index 17f60a8eb0a6..12e7102218f5 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index 9097beac5ab0..eb7898f57ebf 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index afff37bb9f05..ca750a1d3c1c 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index 87862e8351a8..b6ce31a5a8d6 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index f1b288b20a77..57b152e699c4 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index ba8c90a13018..2f0e20919276 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index 97a283bcbecd..51ac22476006 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index 061d8e17ef59..2244f508eb69 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
resourcegroupstaggingapi
AWS Java SDK :: Services :: AWS Resource Groups Tagging API
diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml
index c7eeed258b48..ef48dc620a09 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index e81c76e48239..2763ea1364f7 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index 11ff6b816635..c6f1d4658f19 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index 8416a04f167c..03342c8b4e1f 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index 6aa0dbf51518..6d6f45690887 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index 189b0c4e7f77..f462f09e64d0 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index b12d95d1320d..c01538afef86 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 93eed0acfd12..2815a8b25a50 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index 7905c270f551..2eb6e4b6b044 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index 56934662ee8e..5cff05612d32 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index 8ef34e1d7502..5c75f753d26a 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index 1491b524998a..001eb1383c9a 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index 886162efa7f8..69e546f37f0b 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index 2765a2b34c7e..fc28bc5b9d9f 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 19ab1bd498e1..8320ada731ca 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index 607deeff7858..0de0894a0bcd 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index b4269acdf92f..d9add7faf5c9 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index 71df3c0e4ca9..1cffedc01251 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index 6c7c11d132ee..9c7b34dfb86a 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index 298adfa71169..8dc6c8866c8d 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index ed9944e8297a..54c9e0506e45 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index e405419342bb..a11ccb5e2659 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index 88adeaf44282..6b1f32aec5d4 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index 27d2102e3eb2..f224000ebaea 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 3bb4ea747df5..fa1cf0806eaf 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index 6f452afba95e..6e7b7bd36c5a 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index 41f84a1c1329..d48a31fcb1ca 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
ssm
AWS Java SDK :: Services :: AWS Simple Systems Management (SSM)
diff --git a/services/sso/pom.xml b/services/sso/pom.xml
index dc8883217891..1a61cc400e36 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index bdee4ddc2446..75eff03332a5 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index de7bfc1be40e..9e60c962638e 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index c215cdb38d23..6d2db7bd2a4e 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/support/pom.xml b/services/support/pom.xml
index 2c7f119bc466..263f618caba5 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 026e216fec44..9fad88b5129b 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index 61e424033943..23696ba9e034 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index 7a4df33b99f5..867e0e99adc1 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index 134f209391c8..4841b79d0315 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index 2a66f5d206bf..c6618a8a6a93 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index 5093cf225ab4..b4fd49aede24 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
translate
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index fc4440425d28..990ab6819321 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index 7055ad4ea438..7289e9111280 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index ee2826a08b89..8a6317d90767 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index 52dd8df8b3e6..f05d5094a0d6 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index fdb3d0e9deb0..c7bb6d58b692 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index 727ff1d20dca..740ada248464 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 5a8cb9eafbed..6f10e702e943 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.12
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index 4b4cc84b78d8..139e70a86bd7 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12-SNAPSHOT
+ 2.11.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 c5ba98edb9d7..51c0d3d309b1 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.11.12-SNAPSHOT
+ 2.11.12
../../pom.xml
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index c0c8af4a2258..7bc485ad58cd 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.11.12-SNAPSHOT
+ 2.11.12
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index ac243c68f9b5..447820c73f37 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.11.12-SNAPSHOT
+ 2.11.12
../../pom.xml
4.0.0
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index 347f03727054..e5cc04c60d98 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.11.12-SNAPSHOT
+ 2.11.12
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index be39c983a501..3696fb820a01 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.11.12-SNAPSHOT
+ 2.11.12
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index d7b0d11562d3..9193c3c31675 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.11.12-SNAPSHOT
+ 2.11.12
../../pom.xml
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index 0e719937802b..260e81377993 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.11.12-SNAPSHOT
+ 2.11.12
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index 056e28a5a472..e01dff210611 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.11.12-SNAPSHOT
+ 2.11.12
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index 0a228677dcca..6a658c906f17 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.11.12-SNAPSHOT
+ 2.11.12
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index cb589e90fae0..4d86552b54b2 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.11.12-SNAPSHOT
+ 2.11.12
../../pom.xml
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index 094b4f0e75da..5dd57dc6c43b 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.12-SNAPSHOT
+ 2.11.12
4.0.0
From 854e94f22e353fc8d3327ae880e22e1bf00dd546 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Wed, 8 Apr 2020 18:49:13 +0000
Subject: [PATCH 040/604] Update to next snapshot version: 2.11.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/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/netty-nio-client/pom.xml | 2 +-
http-clients/pom.xml | 2 +-
http-clients/url-connection-client/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/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/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/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/iam/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/iotthingsgraph/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/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/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/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/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/textract/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 +-
262 files changed, 262 insertions(+), 262 deletions(-)
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index 099f8eb8bda8..846ba817421b 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
archetype-lambda
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index aa74bb0a1d0c..335e6ac73fda 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index 9d97f9afe7b6..5521e8e7848b 100644
--- a/aws-sdk-java/pom.xml
+++ b/aws-sdk-java/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12
+ 2.11.13-SNAPSHOT
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index 86e2d9e5f8c8..d180e37fa1e2 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index cf837c7f62d2..5d3d4de10cf9 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12
+ 2.11.13-SNAPSHOT
../pom.xml
bom
diff --git a/bundle/pom.xml b/bundle/pom.xml
index e8fe9960ee8e..90eb83ad3852 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12
+ 2.11.13-SNAPSHOT
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 25265bd08a61..6b57c02ccb06 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.11.12
+ 2.11.13-SNAPSHOT
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index a8e451b41acc..15d25cb18013 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12
+ 2.11.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 9cd105e44af6..2b056f71be14 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.11.12
+ 2.11.13-SNAPSHOT
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index ad2ff2bc63bb..56f54da6b782 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12
+ 2.11.13-SNAPSHOT
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index b5096ba0ddcf..e06bf28a0310 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index 040b4873482b..e448223b426d 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index 022eb6fe2539..9caf7fe0747e 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.12
+ 2.11.13-SNAPSHOT
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index f2b06dee36ac..6d97a3a539df 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.12
+ 2.11.13-SNAPSHOT
aws-core
diff --git a/core/pom.xml b/core/pom.xml
index bdd181d98e88..ffbb209fa1e5 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index f1e440a0e59c..997ed084672c 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.12
+ 2.11.13-SNAPSHOT
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index 29024d76272f..1d08314fd22e 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.11.12
+ 2.11.13-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml
index 3d185d197571..3945b61e051f 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.11.12
+ 2.11.13-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index 37dce207985e..b2aa7bf04efd 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.11.12
+ 2.11.13-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index 3d09dfc8d5e8..6a0e7fa320a6 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.11.12
+ 2.11.13-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index 00eab2d11765..5c35a84eda86 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.11.12
+ 2.11.13-SNAPSHOT
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index 0eb10499e3c9..08ce6a7af5b0 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index 3b155e7191e0..9859d026dcaa 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index 02c7fc4cf1c7..d1d97603ed0e 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.12
+ 2.11.13-SNAPSHOT
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index 40a59e522fec..777351a0e940 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.11.12
+ 2.11.13-SNAPSHOT
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index 80f3409af318..fd1b832895bb 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.11.12
+ 2.11.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 fa7c20211b2a..7ba2cc452794 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.11.12
+ 2.11.13-SNAPSHOT
apache-client
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index 05e0bfe03eee..71aa34039764 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.11.12
+ 2.11.13-SNAPSHOT
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index da8c40b0df88..8c4a6f391f21 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index 0f11c3b13831..c17caefd93ab 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.11.12
+ 2.11.13-SNAPSHOT
4.0.0
diff --git a/pom.xml b/pom.xml
index 22a44a755396..939d25781c94 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12
+ 2.11.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 0a7eb61c4a56..f08a9124472e 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12
+ 2.11.13-SNAPSHOT
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index 86f38481e5ad..a3d4186fff03 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.11.12
+ 2.11.13-SNAPSHOT
dynamodb-enhanced
${awsjavasdk.version}-PREVIEW
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index f7977d63c6be..0069483000d7 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12
+ 2.11.13-SNAPSHOT
services-custom
AWS Java SDK :: Custom Services
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index 8bd57d7cd9de..ce77b207c712 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 1c927042dca0..3219ad09e8c5 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index 13ace4e9d03b..dcb0e3c3d2b3 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml
index cae9532aaca1..497a7a2ed637 100644
--- a/services/alexaforbusiness/pom.xml
+++ b/services/alexaforbusiness/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
alexaforbusiness
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index 7fa5e1813725..02d56a3f8b1d 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index 42b44166be9d..ce86b3819346 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index d1379b00e289..80f48f021cab 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index aa6a81aee9e8..9e5b561f20f6 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index 5762458b39e1..287712fe0904 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index e48503e26278..c760c8d0d763 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 6f4032f7cf6c..92fdf66555fd 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index fc21249eab68..caf48d2cb01d 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index 2d9b3ba06791..645797b30de1 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index be042ae2939b..0a4b9b12e306 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index 1ac8db332241..1325dda2bba2 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
appsync
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index 55dd48b57778..f574ae63a6ae 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index e33cfe82f0af..e9fea00ba3d5 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index 0cfc5ce87a21..827d9c001fc5 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index 3338e917b4f4..95e69ffdb53f 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index 16b7e6936fe5..8eab551b85d2 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 6486b52457a8..13ccf4dfdcbd 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index d0b1b1392150..aa9a633f6daf 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index 45b624d988da..b657e4860420 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
cloud9
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index 467b8bd3c78e..0ffffed92f81 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index ecbeaa5d87c8..0c9c4139ea8d 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index d61ac98f84c4..6f547517d361 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index 6a89dc25a056..0fd991887fe0 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index 6d0d0c4f4e4b..f2c5187a02f2 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index 7e93beb7ea3d..a07a3faa1ffb 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index bdf25fa04fde..4e8f8c44eec5 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index 1fb45b950be9..ee1a2fa842be 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index 811697c774d3..46def4eb26e6 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index 7884b0bd4d1c..0eff29409762 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index 91e07b290592..b5903f4eb806 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index 03a7ab05b9fb..cbb13d625317 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index ba13538d9b38..dbae30667a5b 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index ca1e2566de54..ff762f3aa28f 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index c8841302bf26..6296fb55fdb6 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index d0e03807ef90..972dc8b3b7aa 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index 663f0b1a1630..a4f3f6d89b67 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index 06db1e1af360..b8c38962d3df 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index c1f6bdb3a136..3282f4eb06ed 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index 07d460a2401b..2f7b89e7baa6 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index 27bd05ae704f..8ba4f43b8597 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index b5592244aee7..7f34c6e2fa98 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.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 344cdfa5e7e4..3d3ad82c28a6 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index 4b70f9282c1a..e121ee567732 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index 39fa46021b3d..b1b3518db068 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index fdf188604b97..aa495112c748 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index f81021486b19..cd0c720ad793 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index a73dd28fdb7a..516a94a460c9 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index f761be64a23c..6cff50328a41 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index 30adb6ca75e5..60a66ccad037 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.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 72899fd355c6..a763eea2c573 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
costexplorer
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index a3352914c0cf..b9983cd7270f 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index 1b9a1e0d9ee4..f21fa1f4dd29 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index 872ec4ae58e5..014c25b5dd8f 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index 176aa4463e01..4d751a30b1c6 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index 6d77cddcb819..2cc7cdf8569d 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index 2d5271df74af..a20f04f0db9a 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index 5ec944e7c00b..a636d0b74b45 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index 35b7a48f6121..66e048f37a39 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index 21d954d0fd16..a0ff72bde7f9 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index 47596e4f9e9c..5506e66e3ea9 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index f6d542f3156b..fa9247c90ae1 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index c5bf8e2fb544..6484473fc785 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index 05f248985377..f591ccc4df32 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 518236960a21..8ae93b1e25db 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index eb90586379fd..fb917bb77c42 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index e07e8c3c90fb..19e53a0dede0 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index add029697bf9..945650f1a618 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index 276c68be5de2..c382b07147b8 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index a253e8343aad..491672eccace 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index 5939a635e110..2823394aaf8e 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index e27ec8a31531..777d0a784783 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index 3aae612888c9..a4fb7217c20e 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index 3d7f53ccdaba..6e575eb650f3 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index 50de577961e6..ad7d3f9dcd6f 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index e09f644af903..595fd7941286 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index f880316937c9..d2ec15161dc9 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index 69d79237bc25..ee28e0e60f04 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index 389cfa4a305a..a946638c9446 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index d202188bbf19..17f13763f014 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index 1394245f4cbe..7ac461a3c3ad 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index 4ca6b2c46d36..9a7ceb63a71d 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index 0965cd50b31b..98e6f3d53dcb 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index 19ca99e80435..1b280b889fa0 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index fc9d13badaf1..00fde3102e3f 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index b9c1a9b5f6c1..35225f8feda0 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index d2ea1b37c9de..b7106cbb88e1 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index 05fd5c6b0727..834952c1e1f6 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index fdc1933fe77f..26048a8265a3 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
glue
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index e7fd2defcd9d..7037ca6228dc 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index dc1dda3dd80d..fbdb371fdf63 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index 26958f83dc3e..55ba4aa77209 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index c3380e6c7791..c84c9e65b352 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index 0a4e7401c7a3..e2ad859ed4d6 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index 22b9265139de..1dfe2090b0b6 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 2b343db73962..ad53e8a50dc4 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index 7aeb41e1b52e..9858b9498216 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index a90a75088806..ae79f542af6d 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index e8f00b1ca2dd..1e587e654e10 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index 9006169910aa..69a00a367749 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index 92eaf18215d9..4be43b3e5263 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index 5e40e2faddf3..c01bd31ad4a8 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 7349680501c0..0b3ac7bf8de2 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 2e55ec8d2fa4..ace2d5477c84 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index b94d67586e03..18644da67b4d 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index f07d68bc1b82..552c0093466d 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index 542bf4483741..736fae78ab30 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 1521da3dbe57..2e0194edd014 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index e5ee1149e829..b7bda7293cb0 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index a8ec0e9c39ce..a5cde558a344 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index 4e3b2ee92dc9..07836e310d48 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index 3d331ed5cf6c..c557bca29a25 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index 06cc8c2cfd8d..48682a317b8e 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index ac2f99151fe5..8eefdf5331d8 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index 18e53af3602c..a631f2b8d991 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index 94b293728845..846f3323a775 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index 114bae344557..ef60413dc9d0 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index 975e4aa8c7c0..ce1681d17109 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index 433acf40d0f8..9353237b5b0f 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index 9e124bffa108..e97947decede 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index 6afbfa885d85..0f59209891ec 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index effcf6d590a0..5e548f87ffeb 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index b2103648f0f5..20ac0f0d2281 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie/pom.xml b/services/macie/pom.xml
index a3777f40f1e0..602e1b8fe598 100644
--- a/services/macie/pom.xml
+++ b/services/macie/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
macie
AWS Java SDK :: Services :: Macie
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index 89fd77cf877f..4e128d53ba33 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index 8715f01323a4..53dfc0b986a4 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 12be75958c59..0aa90bd61a2f 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index ab8e757a8ae9..bd499be4b9e2 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index 88ee097de712..e80752dd9fc5 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 12cff535f10b..457b7c53b06e 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index ca47398dee2f..7cf2121cd7ef 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 030f16162200..3d00b42bd83a 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index 19e740227ae6..cc91439e327f 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
mediapackage
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 4617710b2f4e..b68eaaeca4e9 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index a44148a2058a..204f04d2fed3 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index 21805300891b..d6a16df22298 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index f0f95ce642d3..7ea065df0198 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index 0e63bd7872d9..52fc86553bee 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index 8afa9ab629d3..d1616328c847 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index d41a67df72ff..1ad74bcfe8a9 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index f57a5762dba2..2cb640c4c22d 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index 1fe83598f4b6..d13d1c2efcfe 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index 61f771d5db13..5ecef1212cc7 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index ffa1104d107d..1929a3c7bbee 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index 1dd4f011c76d..c392528034a5 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index 6bfeb395d299..b42dfb89db05 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.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 7fd797a3462e..26b67c50e0df 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index 8185a71a988a..d8aa8bd126a6 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index 2197aaf7c4ec..0f980a2db729 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index 0096214bcdbc..31d223b4a1da 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 0fc8cf9a2780..6fe1bca9d7e8 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 149cf530d734..8a878d808db3 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index 66e6fc706625..9395f645a4e7 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index e2a5e109b2e9..e2a8cf49a4cb 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index 2ad874f7a49f..2c746608b257 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index c29b5ea8c1fe..8ab645c6d246 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index e4d116277433..b1c7d9ce8ece 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.12
+ 2.11.13-SNAPSHOT
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index 38f86f4b5e01..6f57e7c6d74e 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
pricing
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index f4757a444f8d..a23ed07983b1 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index fda7a1d981ac..f2d4b61e21d2 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index 12e7102218f5..0294d2aa4e00 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index eb7898f57ebf..00b1730aa76f 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index ca750a1d3c1c..19f92d838c0c 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index b6ce31a5a8d6..10bd100880cd 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index 57b152e699c4..311f6cd0626c 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index 2f0e20919276..978e6f55e68c 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index 51ac22476006..2a2f7e7e7861 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index 2244f508eb69..3d0e35430a0f 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.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 ef48dc620a09..d3274a339cad 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index 2763ea1364f7..1ceb6dce40df 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index c6f1d4658f19..1e19d9a00676 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index 03342c8b4e1f..687dac1a5ce3 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index 6d6f45690887..a91fa8bc9ab4 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index f462f09e64d0..106fae4fd21c 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index c01538afef86..d91ef14d9f64 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 2815a8b25a50..bdc0edd51b9c 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index 2eb6e4b6b044..2ca77a77f70c 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index 5cff05612d32..087f820b153c 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index 5c75f753d26a..d9ade2167049 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index 001eb1383c9a..2f9439fe48a2 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index 69e546f37f0b..872880747073 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index fc28bc5b9d9f..86a686cd8953 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 8320ada731ca..2a6d883bebb8 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index 0de0894a0bcd..460aa7c783dc 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index d9add7faf5c9..2b2b1fee81cc 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index 1cffedc01251..69ac0cc67570 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index 9c7b34dfb86a..5ab1509f13cc 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index 8dc6c8866c8d..f2c179f21333 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index 54c9e0506e45..b10dcb1afbe4 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index a11ccb5e2659..9118b699274e 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index 6b1f32aec5d4..1f81d2fc2472 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index f224000ebaea..7038a1bcb7b9 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index fa1cf0806eaf..03325f584ccc 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index 6e7b7bd36c5a..a9b19bd9c531 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index d48a31fcb1ca..3006f4b33690 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.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 1a61cc400e36..984521e1b8c9 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index 75eff03332a5..3e42c224fad7 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index 9e60c962638e..866cc57eb1c3 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index 6d2db7bd2a4e..320ee5abc102 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/support/pom.xml b/services/support/pom.xml
index 263f618caba5..4feabddb59da 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 9fad88b5129b..753a0f0511f2 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index 23696ba9e034..c57f35e679bf 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index 867e0e99adc1..ebce238311c7 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index 4841b79d0315..c09dd083db00 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index c6618a8a6a93..ad7fed3d56cb 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index b4fd49aede24..088b703eaf06 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
translate
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index 990ab6819321..2977daf9b3f1 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index 7289e9111280..4dc8c15d3f03 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index 8a6317d90767..8e13eda8ee8e 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index f05d5094a0d6..c1701c2c381d 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index c7bb6d58b692..01bb1c4093d1 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index 740ada248464..4044c955d68a 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 6f10e702e943..e21b1b98606d 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.13-SNAPSHOT
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index 139e70a86bd7..fd302ea146d1 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.12
+ 2.11.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 51c0d3d309b1..0d24d7735377 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.11.12
+ 2.11.13-SNAPSHOT
../../pom.xml
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index 7bc485ad58cd..18bb9c5303d1 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.11.12
+ 2.11.13-SNAPSHOT
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index 447820c73f37..9af517e390cf 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.11.12
+ 2.11.13-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index e5cc04c60d98..f791c383a7ae 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.11.12
+ 2.11.13-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 3696fb820a01..b71a10f614f2 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.11.12
+ 2.11.13-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index 9193c3c31675..5a6c4de98e70 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.11.12
+ 2.11.13-SNAPSHOT
../../pom.xml
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index 260e81377993..22b71c0d29a7 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.11.12
+ 2.11.13-SNAPSHOT
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index e01dff210611..dc1060ab364d 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.11.12
+ 2.11.13-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index 6a658c906f17..364bb5c34df8 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.11.12
+ 2.11.13-SNAPSHOT
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index 4d86552b54b2..6e1587c896b5 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.11.12
+ 2.11.13-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index 5dd57dc6c43b..209285e4cf9b 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.12
+ 2.11.13-SNAPSHOT
4.0.0
From 3d2e2e5ffe164e1876dbeccf5ef9fb486b2725b2 Mon Sep 17 00:00:00 2001
From: Zoe Wang
Date: Fri, 3 Apr 2020 18:09:29 -0700
Subject: [PATCH 041/604] Mark a connection as unreusable if there was a 5xx
error so that new request will execute on new connection
---
.../bugfix-NettyNIOHTTPClient-20fc78a.json | 5 +
.../nio/netty/internal/ResponseHandler.java | 10 +-
.../Http2ConnectionTerminatingException.java | 29 +++
.../http2/Http2MultiplexedChannelPool.java | 2 +-
.../http2/Http2StreamExceptionHandler.java | 14 +-
.../http2/Http2ToHttpInboundAdapter.java | 22 +-
.../awssdk/http/nio/netty/TestUtils.java | 63 ++++++
.../nio/netty/fault/H1ServerErrorTest.java | 173 ++++++++++++++++
.../nio/netty/fault/H2ServerErrorTest.java | 192 ++++++++++++++++++
.../Http2StreamExceptionHandlerTest.java | 4 +-
10 files changed, 499 insertions(+), 15 deletions(-)
create mode 100644 .changes/next-release/bugfix-NettyNIOHTTPClient-20fc78a.json
create mode 100644 http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2ConnectionTerminatingException.java
create mode 100644 http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/TestUtils.java
create mode 100644 http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/fault/H1ServerErrorTest.java
create mode 100644 http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/fault/H2ServerErrorTest.java
diff --git a/.changes/next-release/bugfix-NettyNIOHTTPClient-20fc78a.json b/.changes/next-release/bugfix-NettyNIOHTTPClient-20fc78a.json
new file mode 100644
index 000000000000..5d801e5546e5
--- /dev/null
+++ b/.changes/next-release/bugfix-NettyNIOHTTPClient-20fc78a.json
@@ -0,0 +1,5 @@
+{
+ "category": "Netty NIO HTTP Client",
+ "type": "bugfix",
+ "description": "Mark a connection as unreusable if there was a 5xx server error so that a new request will establish a new connection."
+}
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 3c66a69253a2..8019d0816a93 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
@@ -52,6 +52,7 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import software.amazon.awssdk.annotations.SdkInternalApi;
+import software.amazon.awssdk.http.HttpStatusFamily;
import software.amazon.awssdk.http.Protocol;
import software.amazon.awssdk.http.SdkCancellationException;
import software.amazon.awssdk.http.SdkHttpFullResponse;
@@ -85,7 +86,7 @@ protected void channelRead0(ChannelHandlerContext channelContext, HttpObject msg
.statusCode(response.status().code())
.statusText(response.status().reasonPhrase())
.build();
- channelContext.channel().attr(KEEP_ALIVE).set(HttpUtil.isKeepAlive(response));
+ channelContext.channel().attr(KEEP_ALIVE).set(shouldKeepAlive(response));
requestContext.handler().onHeaders(sdkResponse);
}
@@ -128,6 +129,13 @@ private static void finalizeResponse(RequestContext requestContext, ChannelHandl
}
}
+ private boolean shouldKeepAlive(HttpResponse response) {
+ if (HttpStatusFamily.of(response.status().code()) == HttpStatusFamily.SERVER_ERROR) {
+ return false;
+ }
+ return HttpUtil.isKeepAlive(response);
+ }
+
@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
RequestContext requestContext = ctx.channel().attr(REQUEST_CONTEXT_KEY).get();
diff --git a/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2ConnectionTerminatingException.java b/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2ConnectionTerminatingException.java
new file mode 100644
index 000000000000..e241eb98c572
--- /dev/null
+++ b/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2ConnectionTerminatingException.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.http.nio.netty.internal.http2;
+
+import software.amazon.awssdk.annotations.SdkInternalApi;
+
+/**
+ * Exception indicating a connection is terminating
+ */
+@SdkInternalApi
+final class Http2ConnectionTerminatingException extends RuntimeException {
+
+ Http2ConnectionTerminatingException(String message) {
+ super(message);
+ }
+}
diff --git a/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2MultiplexedChannelPool.java b/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2MultiplexedChannelPool.java
index 0b720f52170b..6118ba0b1230 100644
--- a/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2MultiplexedChannelPool.java
+++ b/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2MultiplexedChannelPool.java
@@ -426,7 +426,7 @@ public void channelInactive(ChannelHandlerContext ctx) {
@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {
- if (cause instanceof Http2StreamExceptionHandler.Http2StreamIoException) {
+ if (cause instanceof Http2ConnectionTerminatingException) {
closeConnectionToNewRequests(ctx, cause);
} else {
closeAndReleaseParent(ctx, cause);
diff --git a/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2StreamExceptionHandler.java b/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2StreamExceptionHandler.java
index 46b9f9df5fdd..d1ff14628f0a 100644
--- a/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2StreamExceptionHandler.java
+++ b/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2StreamExceptionHandler.java
@@ -19,7 +19,6 @@
import io.netty.channel.ChannelHandler;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelInboundHandlerAdapter;
-import io.netty.handler.codec.http2.Http2Stream;
import io.netty.handler.timeout.TimeoutException;
import java.io.IOException;
import software.amazon.awssdk.annotations.SdkInternalApi;
@@ -31,7 +30,7 @@
@ChannelHandler.Sharable
@SdkInternalApi
public final class Http2StreamExceptionHandler extends ChannelInboundHandlerAdapter {
- private static final Logger log = Logger.loggerFor(Http2Stream.class);
+ private static final Logger log = Logger.loggerFor(Http2StreamExceptionHandler.class);
private static final Http2StreamExceptionHandler INSTANCE = new Http2StreamExceptionHandler();
private Http2StreamExceptionHandler() {
@@ -46,8 +45,9 @@ public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {
if (isIoError(cause) && ctx.channel().parent() != null) {
Channel parent = ctx.channel().parent();
log.debug(() -> "An I/O error occurred on an Http2 stream, notifying the connection channel " + parent);
- parent.pipeline().fireExceptionCaught(new Http2StreamIoException("An I/O error occurred on an associated Http2 "
- + "stream"));
+ parent.pipeline().fireExceptionCaught(new Http2ConnectionTerminatingException("An I/O error occurred on an "
+ + "associated Http2 "
+ + "stream " + ctx.channel()));
}
ctx.fireExceptionCaught(cause);
@@ -56,10 +56,4 @@ public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {
private boolean isIoError(Throwable cause) {
return cause instanceof TimeoutException || cause instanceof IOException;
}
-
- static final class Http2StreamIoException extends IOException {
- Http2StreamIoException(String message) {
- super(message);
- }
- }
}
diff --git a/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2ToHttpInboundAdapter.java b/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2ToHttpInboundAdapter.java
index eecb2054b0c6..b4c55c0e96eb 100644
--- a/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2ToHttpInboundAdapter.java
+++ b/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2ToHttpInboundAdapter.java
@@ -16,11 +16,13 @@
package software.amazon.awssdk.http.nio.netty.internal.http2;
import io.netty.buffer.ByteBuf;
+import io.netty.channel.Channel;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.SimpleChannelInboundHandler;
import io.netty.handler.codec.http.DefaultHttpContent;
import io.netty.handler.codec.http.DefaultLastHttpContent;
import io.netty.handler.codec.http.HttpObject;
+import io.netty.handler.codec.http.HttpResponse;
import io.netty.handler.codec.http2.Http2DataFrame;
import io.netty.handler.codec.http2.Http2Error;
import io.netty.handler.codec.http2.Http2Exception;
@@ -30,6 +32,8 @@
import io.netty.handler.codec.http2.HttpConversionUtil;
import java.io.IOException;
import software.amazon.awssdk.annotations.SdkInternalApi;
+import software.amazon.awssdk.http.HttpStatusFamily;
+import software.amazon.awssdk.utils.Logger;
/**
* Converts {@link Http2Frame}s to {@link HttpObject}s. Ignores the majority of {@link Http2Frame}s like PING
@@ -37,6 +41,7 @@
*/
@SdkInternalApi
public class Http2ToHttpInboundAdapter extends SimpleChannelInboundHandler {
+ private static final Logger log = Logger.loggerFor(Http2ToHttpInboundAdapter.class);
@Override
protected void channelRead0(ChannelHandlerContext ctx, Http2Frame frame) throws Exception {
@@ -54,7 +59,22 @@ protected void channelRead0(ChannelHandlerContext ctx, Http2Frame frame) throws
}
private void onHeadersRead(Http2HeadersFrame headersFrame, ChannelHandlerContext ctx) throws Http2Exception {
- ctx.fireChannelRead(HttpConversionUtil.toHttpResponse(headersFrame.stream().id(), headersFrame.headers(), true));
+
+ HttpResponse httpResponse = HttpConversionUtil.toHttpResponse(headersFrame.stream().id(), headersFrame.headers(), true);
+ ctx.fireChannelRead(httpResponse);
+
+ if (HttpStatusFamily.of(httpResponse.status().code()) == HttpStatusFamily.SERVER_ERROR) {
+ fireConnectionExceptionForServerError(ctx);
+ }
+ }
+
+ private void fireConnectionExceptionForServerError(ChannelHandlerContext ctx) {
+ if (ctx.channel().parent() != null) {
+ Channel parent = ctx.channel().parent();
+ log.debug(() -> "A 5xx server error occurred on an Http2 stream, notifying the connection channel " + ctx.channel());
+ parent.pipeline().fireExceptionCaught(new Http2ConnectionTerminatingException("A 5xx server error occurred on an "
+ + "Http2 stream " + ctx.channel()));
+ }
}
private void onDataRead(Http2DataFrame dataFrame, ChannelHandlerContext ctx) throws Http2Exception {
diff --git a/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/TestUtils.java b/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/TestUtils.java
new file mode 100644
index 000000000000..af007e9c6d5a
--- /dev/null
+++ b/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/TestUtils.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.http.nio.netty;
+
+
+import io.reactivex.Flowable;
+import java.nio.ByteBuffer;
+import java.util.concurrent.CompletableFuture;
+import org.reactivestreams.Publisher;
+import software.amazon.awssdk.http.SdkHttpFullRequest;
+import software.amazon.awssdk.http.SdkHttpMethod;
+import software.amazon.awssdk.http.SdkHttpResponse;
+import software.amazon.awssdk.http.async.AsyncExecuteRequest;
+import software.amazon.awssdk.http.async.SdkAsyncHttpClient;
+import software.amazon.awssdk.http.async.SdkAsyncHttpResponseHandler;
+
+public class TestUtils {
+
+ public static CompletableFuture sendGetRequest(int serverPort, SdkAsyncHttpClient client) {
+ AsyncExecuteRequest req = AsyncExecuteRequest.builder()
+ .responseHandler(new SdkAsyncHttpResponseHandler() {
+ private SdkHttpResponse headers;
+
+ @Override
+ public void onHeaders(SdkHttpResponse headers) {
+ this.headers = headers;
+ }
+
+ @Override
+ public void onStream(Publisher stream) {
+ Flowable.fromPublisher(stream).forEach(b -> {
+ });
+ }
+
+ @Override
+ public void onError(Throwable error) {
+ }
+ })
+ .request(SdkHttpFullRequest.builder()
+ .method(SdkHttpMethod.GET)
+ .protocol("https")
+ .host("localhost")
+ .port(serverPort)
+ .build())
+ .requestContentPublisher(new EmptyPublisher())
+ .build();
+
+ return client.execute(req);
+ }
+}
diff --git a/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/fault/H1ServerErrorTest.java b/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/fault/H1ServerErrorTest.java
new file mode 100644
index 000000000000..27d886fd6fb1
--- /dev/null
+++ b/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/fault/H1ServerErrorTest.java
@@ -0,0 +1,173 @@
+/*
+ * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License").
+ * You may not use this file except in compliance with the License.
+ * A copy of the License is located at
+ *
+ * http://aws.amazon.com/apache2.0
+ *
+ * or in the "license" file accompanying this file. This file is distributed
+ * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
+ * express or implied. See the License for the specific language governing
+ * permissions and limitations under the License.
+ */
+
+package software.amazon.awssdk.http.nio.netty.fault;
+
+import static io.netty.handler.codec.http.HttpHeaderNames.CONTENT_LENGTH;
+import static io.netty.handler.codec.http.HttpHeaderNames.CONTENT_TYPE;
+import static io.netty.handler.codec.http.HttpHeaderValues.TEXT_PLAIN;
+import static io.netty.handler.codec.http.HttpResponseStatus.INTERNAL_SERVER_ERROR;
+import static io.netty.handler.codec.http.HttpResponseStatus.OK;
+import static org.assertj.core.api.AssertionsForInterfaceTypes.assertThat;
+import static software.amazon.awssdk.http.SdkHttpConfigurationOption.TRUST_ALL_CERTIFICATES;
+import static software.amazon.awssdk.http.nio.netty.TestUtils.sendGetRequest;
+
+import io.netty.bootstrap.ServerBootstrap;
+import io.netty.buffer.Unpooled;
+import io.netty.channel.ChannelDuplexHandler;
+import io.netty.channel.ChannelHandlerContext;
+import io.netty.channel.ChannelInitializer;
+import io.netty.channel.ChannelPipeline;
+import io.netty.channel.nio.NioEventLoopGroup;
+import io.netty.channel.socket.ServerSocketChannel;
+import io.netty.channel.socket.SocketChannel;
+import io.netty.channel.socket.nio.NioServerSocketChannel;
+import io.netty.handler.codec.http.DefaultFullHttpResponse;
+import io.netty.handler.codec.http.FullHttpResponse;
+import io.netty.handler.codec.http.HttpRequest;
+import io.netty.handler.codec.http.HttpResponseStatus;
+import io.netty.handler.codec.http.HttpServerCodec;
+import io.netty.handler.codec.http.HttpVersion;
+import io.netty.handler.logging.LogLevel;
+import io.netty.handler.logging.LoggingHandler;
+import io.netty.handler.ssl.SslContext;
+import io.netty.handler.ssl.SslContextBuilder;
+import io.netty.handler.ssl.util.SelfSignedCertificate;
+import java.util.ArrayList;
+import java.util.List;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+import software.amazon.awssdk.http.Protocol;
+import software.amazon.awssdk.http.async.SdkAsyncHttpClient;
+import software.amazon.awssdk.http.nio.netty.NettyNioAsyncHttpClient;
+import software.amazon.awssdk.http.nio.netty.SdkEventLoopGroup;
+import software.amazon.awssdk.utils.AttributeMap;
+
+
+/**
+ * Testing the scenario where h1 server sends 5xx errors.
+ */
+public class H1ServerErrorTest {
+ private SdkAsyncHttpClient netty;
+ private Server server;
+
+
+ @Before
+ public void setup() throws Exception {
+ server = new Server();
+ server.init();
+
+ netty = NettyNioAsyncHttpClient.builder()
+ .eventLoopGroup(SdkEventLoopGroup.builder().numberOfThreads(2).build())
+ .protocol(Protocol.HTTP1_1)
+ .buildWithDefaults(AttributeMap.builder().put(TRUST_ALL_CERTIFICATES, true).build());
+ }
+
+
+ @After
+ public void teardown() throws InterruptedException {
+ if (server != null) {
+ server.shutdown();
+ }
+ server = null;
+
+ if (netty != null) {
+ netty.close();
+ }
+ netty = null;
+ }
+
+ @Test
+ public void connectionReceive500_shouldNotReuseConnection() throws Exception {
+ server.return500OnFirstRequest = true;
+
+ sendGetRequest(server.port(), netty).join();
+ sendGetRequest(server.port(), netty).join();
+ assertThat(server.channels.size()).isEqualTo(2);
+ }
+
+ @Test
+ public void connectionReceive200_shouldReuseConnection() {
+ server.return500OnFirstRequest = false;
+
+ sendGetRequest(server.port(), netty).join();
+ sendGetRequest(server.port(), netty).join();
+ assertThat(server.channels.size()).isEqualTo(1);
+ }
+
+ private static class Server extends ChannelInitializer {
+ private static final byte[] CONTENT = "helloworld".getBytes();
+ private ServerBootstrap bootstrap;
+ private ServerSocketChannel serverSock;
+ private List channels = new ArrayList<>();
+ private final NioEventLoopGroup group = new NioEventLoopGroup();
+ private SslContext sslCtx;
+ private boolean return500OnFirstRequest;
+
+ public void init() throws Exception {
+ SelfSignedCertificate ssc = new SelfSignedCertificate();
+ sslCtx = SslContextBuilder.forServer(ssc.certificate(), ssc.privateKey()).build();
+
+ bootstrap = new ServerBootstrap()
+ .channel(NioServerSocketChannel.class)
+ .handler(new LoggingHandler(LogLevel.DEBUG))
+ .group(group)
+ .childHandler(this);
+
+ serverSock = (ServerSocketChannel) bootstrap.bind(0).sync().channel();
+ }
+
+ @Override
+ protected void initChannel(SocketChannel ch) throws Exception {
+ channels.add(ch);
+ ChannelPipeline pipeline = ch.pipeline();
+ pipeline.addLast(sslCtx.newHandler(ch.alloc()));
+ pipeline.addLast(new HttpServerCodec());
+ pipeline.addLast(new MightReturn500ChannelHandler());
+ }
+
+ public void shutdown() throws InterruptedException {
+ group.shutdownGracefully().await();
+ }
+
+ public int port() {
+ return serverSock.localAddress().getPort();
+ }
+
+ private class MightReturn500ChannelHandler extends ChannelDuplexHandler {
+
+ @Override
+ public void channelRead(ChannelHandlerContext ctx, Object msg) {
+ if (msg instanceof HttpRequest) {
+ HttpResponseStatus status;
+ if (ctx.channel().equals(channels.get(0)) && return500OnFirstRequest) {
+ status = INTERNAL_SERVER_ERROR;
+ } else {
+ status = OK;
+ }
+
+ FullHttpResponse response = new DefaultFullHttpResponse(HttpVersion.HTTP_1_1, status,
+ Unpooled.wrappedBuffer(CONTENT));
+
+ response.headers()
+ .set(CONTENT_TYPE, TEXT_PLAIN)
+ .setInt(CONTENT_LENGTH, response.content().readableBytes());
+ ctx.writeAndFlush(response);
+ }
+ }
+ }
+ }
+}
diff --git a/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/fault/H2ServerErrorTest.java b/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/fault/H2ServerErrorTest.java
new file mode 100644
index 000000000000..ebd11e7a2c58
--- /dev/null
+++ b/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/fault/H2ServerErrorTest.java
@@ -0,0 +1,192 @@
+/*
+ * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License").
+ * You may not use this file except in compliance with the License.
+ * A copy of the License is located at
+ *
+ * http://aws.amazon.com/apache2.0
+ *
+ * or in the "license" file accompanying this file. This file is distributed
+ * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
+ * express or implied. See the License for the specific language governing
+ * permissions and limitations under the License.
+ */
+
+package software.amazon.awssdk.http.nio.netty.fault;
+
+import static io.netty.handler.codec.http.HttpResponseStatus.INTERNAL_SERVER_ERROR;
+import static io.netty.handler.codec.http.HttpResponseStatus.OK;
+import static org.assertj.core.api.Assertions.assertThat;
+import static software.amazon.awssdk.http.SdkHttpConfigurationOption.TRUST_ALL_CERTIFICATES;
+import static software.amazon.awssdk.http.nio.netty.TestUtils.sendGetRequest;
+
+import io.netty.bootstrap.ServerBootstrap;
+import io.netty.channel.Channel;
+import io.netty.channel.ChannelHandlerContext;
+import io.netty.channel.ChannelInitializer;
+import io.netty.channel.ChannelPipeline;
+import io.netty.channel.SimpleChannelInboundHandler;
+import io.netty.channel.nio.NioEventLoopGroup;
+import io.netty.channel.socket.ServerSocketChannel;
+import io.netty.channel.socket.nio.NioServerSocketChannel;
+import io.netty.handler.codec.http2.DefaultHttp2DataFrame;
+import io.netty.handler.codec.http2.DefaultHttp2Headers;
+import io.netty.handler.codec.http2.DefaultHttp2HeadersFrame;
+import io.netty.handler.codec.http2.Http2DataFrame;
+import io.netty.handler.codec.http2.Http2Frame;
+import io.netty.handler.codec.http2.Http2FrameCodec;
+import io.netty.handler.codec.http2.Http2FrameCodecBuilder;
+import io.netty.handler.codec.http2.Http2Headers;
+import io.netty.handler.codec.http2.Http2MultiplexHandler;
+import io.netty.handler.codec.http2.Http2Settings;
+import io.netty.handler.ssl.SslContext;
+import io.netty.handler.ssl.SslContextBuilder;
+import io.netty.handler.ssl.util.SelfSignedCertificate;
+import java.util.concurrent.CompletableFuture;
+import java.util.concurrent.atomic.AtomicInteger;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+import software.amazon.awssdk.http.Protocol;
+import software.amazon.awssdk.http.async.SdkAsyncHttpClient;
+import software.amazon.awssdk.http.nio.netty.NettyNioAsyncHttpClient;
+import software.amazon.awssdk.http.nio.netty.SdkEventLoopGroup;
+import software.amazon.awssdk.utils.AttributeMap;
+import software.amazon.awssdk.utils.Logger;
+
+/**
+ * Testing the scenario where h2 server sends 5xx errors.
+ */
+public class H2ServerErrorTest {
+ private static final Logger LOGGER = Logger.loggerFor(ServerNotRespondingTest.class);
+ private SdkAsyncHttpClient netty;
+ private Server server;
+
+ @Before
+ public void setup() throws Exception {
+ server = new Server();
+ server.init();
+
+ netty = NettyNioAsyncHttpClient.builder()
+ .eventLoopGroup(SdkEventLoopGroup.builder().numberOfThreads(3).build())
+ .protocol(Protocol.HTTP2)
+ .buildWithDefaults(AttributeMap.builder().put(TRUST_ALL_CERTIFICATES, true).build());
+ }
+
+ @After
+ public void teardown() throws InterruptedException {
+ if (server != null) {
+ server.shutdown();
+ }
+ server = null;
+
+ if (netty != null) {
+ netty.close();
+ }
+ netty = null;
+ }
+
+ @Test
+ public void serviceReturn500_newRequestShouldUseNewConnection() {
+ server.return500OnFirstRequest = true;
+ CompletableFuture firstRequest = sendGetRequest(server.port(), netty);
+ firstRequest.join();
+
+ sendGetRequest(server.port(), netty).join();
+ assertThat(server.h2ConnectionCount.get()).isEqualTo(2);
+ }
+
+ @Test
+ public void serviceReturn200_newRequestShouldReuseNewConnection() {
+ server.return500OnFirstRequest = false;
+ CompletableFuture firstRequest = sendGetRequest(server.port(), netty);
+ firstRequest.join();
+
+ sendGetRequest(server.port(), netty).join();
+ assertThat(server.h2ConnectionCount.get()).isEqualTo(1);
+ }
+
+ private static class Server extends ChannelInitializer {
+ private ServerBootstrap bootstrap;
+ private ServerSocketChannel serverSock;
+ private String[] channelIds = new String[5];
+ private final NioEventLoopGroup group = new NioEventLoopGroup();
+ private SslContext sslCtx;
+ private boolean return500OnFirstRequest;
+ private AtomicInteger h2ConnectionCount = new AtomicInteger(0);
+
+ void init() throws Exception {
+ SelfSignedCertificate ssc = new SelfSignedCertificate();
+ sslCtx = SslContextBuilder.forServer(ssc.certificate(), ssc.privateKey()).build();
+
+ bootstrap = new ServerBootstrap()
+ .channel(NioServerSocketChannel.class)
+ .group(group)
+ .childHandler(this);
+
+ serverSock = (ServerSocketChannel) bootstrap.bind(0).sync().channel();
+ }
+
+ @Override
+ protected void initChannel(Channel ch) {
+ channelIds[h2ConnectionCount.get()] = ch.id().asShortText();
+ LOGGER.debug(() -> "init channel " + ch);
+ h2ConnectionCount.incrementAndGet();
+
+ ChannelPipeline pipeline = ch.pipeline();
+ pipeline.addLast(sslCtx.newHandler(ch.alloc()));
+
+
+ Http2FrameCodec http2Codec = Http2FrameCodecBuilder.forServer()
+ .autoAckPingFrame(true)
+ .initialSettings(Http2Settings.defaultSettings().maxConcurrentStreams(1))
+ .build();
+
+ Http2MultiplexHandler http2Handler = new Http2MultiplexHandler(new ChannelInitializer() {
+ @Override
+ protected void initChannel(Channel ch) throws Exception {
+ ch.pipeline().addLast(new MightReturn500StreamFrameHandler());
+ }
+ });
+
+ pipeline.addLast(http2Codec);
+ pipeline.addLast(http2Handler);
+ }
+
+ public void shutdown() throws InterruptedException {
+ group.shutdownGracefully().await();
+ serverSock.close();
+ }
+
+ public int port() {
+ return serverSock.localAddress().getPort();
+ }
+
+ private class MightReturn500StreamFrameHandler extends SimpleChannelInboundHandler {
+
+ @Override
+ protected void channelRead0(ChannelHandlerContext ctx, Http2Frame frame) {
+ if (frame instanceof Http2DataFrame) {
+ DefaultHttp2DataFrame dataFrame = new DefaultHttp2DataFrame(true);
+
+ // returning 500 this is channel 1
+ if (channelIds[0].equals(ctx.channel().parent().id().asShortText()) && return500OnFirstRequest) {
+ LOGGER.info(() -> "This is the first request, returning 500" + ctx.channel());
+ Http2Headers headers = new DefaultHttp2Headers().status(INTERNAL_SERVER_ERROR.codeAsText());
+ ctx.write(new DefaultHttp2HeadersFrame(headers, false));
+ ctx.write(new DefaultHttp2DataFrame(true));
+ ctx.flush();
+ } else {
+ LOGGER.info(() -> "return empty data " + ctx.channel() + " frame " + frame.getClass());
+ Http2Headers headers = new DefaultHttp2Headers().status(OK.codeAsText());
+ ctx.write(new DefaultHttp2HeadersFrame(headers, false));
+ ctx.write(dataFrame);
+ ctx.flush();
+ }
+ }
+ }
+ }
+ }
+
+}
diff --git a/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2StreamExceptionHandlerTest.java b/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2StreamExceptionHandlerTest.java
index 6eac08f8269d..ec1519a2b17e 100644
--- a/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2StreamExceptionHandlerTest.java
+++ b/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/http2/Http2StreamExceptionHandlerTest.java
@@ -85,7 +85,7 @@ public void timeoutException_shouldFireExceptionAndPropagateException() {
when(streamChannel.parent()).thenReturn(embeddedParentChannel);
handler.exceptionCaught(context, ReadTimeoutException.INSTANCE);
- assertThat(verifyExceptionHandler.exceptionCaught).isExactlyInstanceOf(Http2StreamExceptionHandler.Http2StreamIoException.class);
+ assertThat(verifyExceptionHandler.exceptionCaught).isExactlyInstanceOf(Http2ConnectionTerminatingException.class);
verify(context).fireExceptionCaught(ReadTimeoutException.INSTANCE);
}
@@ -95,7 +95,7 @@ public void ioException_shouldFireExceptionAndPropagateException() {
when(streamChannel.parent()).thenReturn(embeddedParentChannel);
handler.exceptionCaught(context, ioException);
- assertThat(verifyExceptionHandler.exceptionCaught).isExactlyInstanceOf(Http2StreamExceptionHandler.Http2StreamIoException.class);
+ assertThat(verifyExceptionHandler.exceptionCaught).isExactlyInstanceOf(Http2ConnectionTerminatingException.class);
verify(context).fireExceptionCaught(ioException);
}
From cfa6f9875a5901e65bc4bc5ab5f71e7f76478624 Mon Sep 17 00:00:00 2001
From: Bret Ambrose
Date: Mon, 13 Apr 2020 12:39:46 -0700
Subject: [PATCH 042/604] Update crt depdendency version
---
http-clients/aws-crt-client/pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml
index 55a360c5e780..74f018be55f8 100644
--- a/http-clients/aws-crt-client/pom.xml
+++ b/http-clients/aws-crt-client/pom.xml
@@ -33,7 +33,7 @@
software.amazon.awssdk.crt
aws-crt
- 0.5.1
+ 0.5.2
From 609635a471e0ad906fb44633a0483db29aebfe8d Mon Sep 17 00:00:00 2001
From: Bret Ambrose
Date: Tue, 14 Apr 2020 11:49:18 -0700
Subject: [PATCH 043/604] Remove most code smells
---
.../awssdk/http/crt/AwsCrtAsyncHttpClient.java | 16 +++++++++-------
.../internal/AwsCrtRequestBodySubscriber.java | 4 ++--
.../internal/AwsCrtResponseBodyPublisher.java | 4 ++--
.../internal/AwsCrtResponseBodySubscription.java | 1 -
.../httpclient/async/AwsCrtClientBenchmark.java | 2 +-
5 files changed, 14 insertions(+), 13 deletions(-)
diff --git a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
index 69add45a203a..20b95910c186 100644
--- a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
+++ b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
@@ -66,6 +66,8 @@ public class AwsCrtAsyncHttpClient implements SdkAsyncHttpClient {
private static final String CONNECTION = "Connection";
private static final String KEEP_ALIVE = "keep-alive";
private static final String AWS_COMMON_RUNTIME = "AwsCommonRuntime";
+ private static final String NULL_REQUEST_ERROR_MESSAGE = "SdkHttpRequest must not be null";
+ private static final String NULL_URI_ERROR_MESSAGE = "URI must not be null";
private static final int DEFAULT_STREAM_WINDOW_SIZE = 16 * 1024 * 1024; // 16 MB
private final Map connectionPools = new ConcurrentHashMap<>();
@@ -128,7 +130,7 @@ private T own(T subresource) {
}
private static URI toUri(SdkHttpRequest sdkRequest) {
- Validate.notNull(sdkRequest, "SdkHttpRequest must not be null");
+ Validate.notNull(sdkRequest, NULL_REQUEST_ERROR_MESSAGE);
return invokeSafely(() -> new URI(sdkRequest.protocol(), null, sdkRequest.host(), sdkRequest.port(),
null, null, null));
}
@@ -143,7 +145,7 @@ public String clientName() {
}
private HttpClientConnectionManager createConnectionPool(URI uri) {
- Validate.notNull(uri, "URI must not be null");
+ Validate.notNull(uri, NULL_URI_ERROR_MESSAGE);
log.debug(() -> "Creating ConnectionPool for: URI:" + uri + ", MaxConns: " + maxConnectionsPerEndpoint);
HttpClientConnectionManagerOptions options = new HttpClientConnectionManagerOptions()
@@ -159,7 +161,7 @@ private HttpClientConnectionManager createConnectionPool(URI uri) {
}
private HttpClientConnectionManager getOrCreateConnectionPool(URI uri) {
- Validate.notNull(uri, "URI must not be null");
+ Validate.notNull(uri, NULL_URI_ERROR_MESSAGE);
HttpClientConnectionManager connPool = connectionPools.get(uri);
if (connPool == null) {
@@ -215,8 +217,8 @@ private HttpHeader[] asArray(List crtHeaderList) {
private HttpRequest toCrtRequest(URI uri, AsyncExecuteRequest asyncRequest, AwsCrtAsyncHttpStreamAdapter crtToSdkAdapter) {
SdkHttpRequest sdkRequest = asyncRequest.request();
- Validate.notNull(uri, "URI must not be null");
- Validate.notNull(sdkRequest, "SdkHttpRequest must not be null");
+ Validate.notNull(uri, NULL_URI_ERROR_MESSAGE);
+ Validate.notNull(sdkRequest, NULL_REQUEST_ERROR_MESSAGE);
String method = sdkRequest.method().name();
String encodedPath = sdkRequest.encodedPath();
@@ -235,7 +237,7 @@ public CompletableFuture execute(AsyncExecuteRequest asyncRequest) {
throw new IllegalStateException("Client is closed. No more requests can be made with this client.");
}
Validate.notNull(asyncRequest, "AsyncExecuteRequest must not be null");
- Validate.notNull(asyncRequest.request(), "SdkHttpRequest must not be null");
+ Validate.notNull(asyncRequest.request(), NULL_REQUEST_ERROR_MESSAGE);
Validate.notNull(asyncRequest.requestContentPublisher(), "RequestContentPublisher must not be null");
Validate.notNull(asyncRequest.responseHandler(), "ResponseHandler must not be null");
@@ -270,7 +272,7 @@ public void close() {
IoUtils.closeQuietly(connPool, log.logger());
}
- while (ownedSubResources.size() > 0) {
+ while (!ownedSubResources.isEmpty()) {
CrtResource r = ownedSubResources.pop();
IoUtils.closeQuietly(r, log.logger());
}
diff --git a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/internal/AwsCrtRequestBodySubscriber.java b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/internal/AwsCrtRequestBodySubscriber.java
index b9790dcb1f1d..15bb7835719f 100644
--- a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/internal/AwsCrtRequestBodySubscriber.java
+++ b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/internal/AwsCrtRequestBodySubscriber.java
@@ -109,7 +109,7 @@ public synchronized boolean transferRequestBody(ByteBuffer out) {
throw new RuntimeException(error.get());
}
- while (out.remaining() > 0 && queuedBuffers.size() > 0) {
+ while (out.remaining() > 0 && !queuedBuffers.isEmpty()) {
ByteBuffer nextBuffer = queuedBuffers.peek();
int amtTransferred = transferData(nextBuffer, out);
queuedByteCount.addAndGet(-amtTransferred);
@@ -119,7 +119,7 @@ public synchronized boolean transferRequestBody(ByteBuffer out) {
}
}
- boolean endOfStream = isComplete.get() && (queuedBuffers.size() == 0);
+ boolean endOfStream = isComplete.get() && queuedBuffers.isEmpty();
if (!endOfStream) {
requestDataIfNecessary();
diff --git a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/internal/AwsCrtResponseBodyPublisher.java b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/internal/AwsCrtResponseBodyPublisher.java
index ebc7888634b6..c0fee57f39b5 100644
--- a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/internal/AwsCrtResponseBodyPublisher.java
+++ b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/internal/AwsCrtResponseBodyPublisher.java
@@ -235,7 +235,7 @@ protected synchronized void publishToSubscribers() {
int totalAmountTransferred = 0;
- while (outstandingRequests.get() > 0 && queuedBuffers.size() > 0) {
+ while (outstandingRequests.get() > 0 && !queuedBuffers.isEmpty()) {
byte[] buffer = queuedBuffers.poll();
outstandingRequests.getAndUpdate(DECREMENT_IF_GREATER_THAN_ZERO);
int amount = buffer.length;
@@ -255,7 +255,7 @@ protected synchronized void publishToSubscribers() {
}
// Check if Complete, consider no subscriber as a completion.
- if (queueComplete.get() && queuedBuffers.size() == 0) {
+ if (queueComplete.get() && queuedBuffers.isEmpty()) {
completeSubscriptionExactlyOnce();
}
}
diff --git a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/internal/AwsCrtResponseBodySubscription.java b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/internal/AwsCrtResponseBodySubscription.java
index fe573a901af3..dd20d5905216 100644
--- a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/internal/AwsCrtResponseBodySubscription.java
+++ b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/internal/AwsCrtResponseBodySubscription.java
@@ -24,7 +24,6 @@
*/
@SdkInternalApi
public class AwsCrtResponseBodySubscription implements Subscription {
- private static final Logger log = Logger.loggerFor(AwsCrtResponseBodySubscription.class);
private final AwsCrtResponseBodyPublisher publisher;
public AwsCrtResponseBodySubscription(AwsCrtResponseBodyPublisher publisher) {
diff --git a/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/apicall/httpclient/async/AwsCrtClientBenchmark.java b/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/apicall/httpclient/async/AwsCrtClientBenchmark.java
index 36402b2f61e0..4189a85d65aa 100644
--- a/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/apicall/httpclient/async/AwsCrtClientBenchmark.java
+++ b/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/apicall/httpclient/async/AwsCrtClientBenchmark.java
@@ -123,6 +123,6 @@ public static void main(String... args) throws Exception {
.include(AwsCrtClientBenchmark.class.getSimpleName())
.addProfiler(StackProfiler.class)
.build();
- Collection run = new Runner(opt).run();
+ new Runner(opt).run();
}
}
From 490f6420584b36e6b76d554edd6c5df3e7d6b46f Mon Sep 17 00:00:00 2001
From: Bret Ambrose
Date: Tue, 14 Apr 2020 16:11:50 -0700
Subject: [PATCH 044/604] Minor fixups plus some original PR updates
---
.../http/crt/AwsCrtAsyncHttpClient.java | 25 ++++++-------------
.../AwsCrtResponseBodySubscription.java | 1 -
.../async/AwsCrtClientBenchmark.java | 11 +++++---
.../async/AwsCrtClientNonTlsBenchmark.java | 13 ++++++----
4 files changed, 22 insertions(+), 28 deletions(-)
diff --git a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
index 20b95910c186..4c98059363aa 100644
--- a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
+++ b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
@@ -59,7 +59,7 @@
* This can be created via {@link #builder()}
*/
@SdkPublicApi
-public class AwsCrtAsyncHttpClient implements SdkAsyncHttpClient {
+public final class AwsCrtAsyncHttpClient implements SdkAsyncHttpClient {
private static final Logger log = Logger.loggerFor(AwsCrtAsyncHttpClient.class);
private static final String HOST_HEADER = "Host";
private static final String CONTENT_LENGTH = "Content-Length";
@@ -81,7 +81,7 @@ public class AwsCrtAsyncHttpClient implements SdkAsyncHttpClient {
private final int maxConnectionsPerEndpoint;
private final boolean manualWindowManagement;
- public AwsCrtAsyncHttpClient(DefaultBuilder builder, AttributeMap config) {
+ private AwsCrtAsyncHttpClient(DefaultBuilder builder, AttributeMap config) {
int maxConns = config.get(SdkHttpConfigurationOption.MAX_CONNECTIONS);
Validate.isPositive(maxConns, "maxConns");
@@ -108,7 +108,7 @@ public AwsCrtAsyncHttpClient(DefaultBuilder builder, AttributeMap config) {
*/
this.tlsContextOptions = own(TlsContextOptions.createDefaultClient() // NOSONAR
.withCipherPreference(builder.cipherPreference)
- .withVerifyPeer(builder.verifyPeer));
+ .withVerifyPeer(!config.get(SdkHttpConfigurationOption.TRUST_ALL_CERTIFICATES)));
this.tlsContext = own(new TlsContext(this.tlsContextOptions));
this.windowSize = builder.windowSize;
@@ -267,7 +267,10 @@ public CompletableFuture execute(AsyncExecuteRequest asyncRequest) {
@Override
public void close() {
- isClosed.set(true);
+ if (!isClosed.compareAndSet(false, true)) {
+ return;
+ }
+
for (HttpClientConnectionManager connPool : connectionPools.values()) {
IoUtils.closeQuietly(connPool, log.logger());
}
@@ -290,13 +293,6 @@ public interface Builder extends SdkAsyncHttpClient.Builder run = new Runner(opt).run();
+ new Runner(opt).run();
}
}
From 98fcc4f6a3aa16c5a13961b11718a66f3031a484 Mon Sep 17 00:00:00 2001
From: Bret Ambrose
Date: Tue, 14 Apr 2020 16:39:35 -0700
Subject: [PATCH 045/604] More PR updates
---
.../next-release/bugfix-AWSSDKforJavav2-9a322a2.json | 5 -----
.../amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java | 11 ++++++++---
2 files changed, 8 insertions(+), 8 deletions(-)
delete mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-9a322a2.json
diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-9a322a2.json b/.changes/next-release/bugfix-AWSSDKforJavav2-9a322a2.json
deleted file mode 100644
index ef986f986bfd..000000000000
--- a/.changes/next-release/bugfix-AWSSDKforJavav2-9a322a2.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "category": "AWS Common Runtime Client",
- "type": "bugfix",
- "description": "Upgrade to the latest version (0.3.35) of the AWS Common Runtime."
-}
diff --git a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
index 4c98059363aa..cf4f4916bc63 100644
--- a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
+++ b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
@@ -182,7 +182,8 @@ private HttpClientConnectionManager getOrCreateConnectionPool(URI uri) {
private List createHttpHeaderList(URI uri, AsyncExecuteRequest asyncRequest) {
SdkHttpRequest sdkRequest = asyncRequest.request();
- List crtHeaderList = new ArrayList<>(sdkRequest.headers().size() + 2);
+ // worst case we may add 3 more headers here
+ List crtHeaderList = new ArrayList<>(sdkRequest.headers().size() + 3);
// Set Host Header if needed
if (isNullOrEmpty(sdkRequest.headers().get(HOST_HEADER))) {
@@ -222,6 +223,10 @@ private HttpRequest toCrtRequest(URI uri, AsyncExecuteRequest asyncRequest, AwsC
String method = sdkRequest.method().name();
String encodedPath = sdkRequest.encodedPath();
+ if (encodedPath == null || encodedPath.length() == 0) {
+ encodedPath = "/";
+ }
+
String encodedQueryString = SdkHttpUtils.encodeAndFlattenQueryParameters(sdkRequest.rawQueryParameters())
.map(value -> "?" + value)
.orElse("");
@@ -309,7 +314,7 @@ public interface Builder extends SdkAsyncHttpClient.Builder
Date: Tue, 14 Apr 2020 16:51:13 -0700
Subject: [PATCH 046/604] Notify response handler of connection acquisition
failure
---
.../software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
index cf4f4916bc63..782e1c139881 100644
--- a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
+++ b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
@@ -255,6 +255,7 @@ public CompletableFuture execute(AsyncExecuteRequest asyncRequest) {
.whenComplete((crtConn, throwable) -> {
// If we didn't get a connection for some reason, fail the request
if (throwable != null) {
+ asyncRequest.responseHandler().onError(throwable);
requestFuture.completeExceptionally(throwable);
return;
}
From 523a0e89cb53247544f73e7261204e8a514e8e6f Mon Sep 17 00:00:00 2001
From: Ben Maizels
Date: Wed, 15 Apr 2020 12:01:35 -0700
Subject: [PATCH 047/604] DDB Enhanced: Added functional tests to assert that
empty strings and bytes are mapped properly
---
.../functionaltests/EmptyBinaryTest.java | 176 ++++++++++++++++++
.../functionaltests/EmptyStringTest.java | 174 +++++++++++++++++
2 files changed, 350 insertions(+)
create mode 100644 services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/EmptyBinaryTest.java
create mode 100644 services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/EmptyStringTest.java
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/EmptyBinaryTest.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/EmptyBinaryTest.java
new file mode 100644
index 000000000000..2d8ac8e2088d
--- /dev/null
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/EmptyBinaryTest.java
@@ -0,0 +1,176 @@
+/*
+ * 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 static java.util.Collections.singletonMap;
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.mockito.ArgumentMatchers.any;
+import static org.mockito.Mockito.verify;
+import static org.mockito.Mockito.when;
+
+import java.util.HashMap;
+import java.util.Map;
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.Mock;
+import org.mockito.junit.MockitoJUnitRunner;
+import software.amazon.awssdk.core.SdkBytes;
+import software.amazon.awssdk.enhanced.dynamodb.DynamoDbEnhancedClient;
+import software.amazon.awssdk.enhanced.dynamodb.DynamoDbTable;
+import software.amazon.awssdk.enhanced.dynamodb.Expression;
+import software.amazon.awssdk.enhanced.dynamodb.TableSchema;
+import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbBean;
+import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbPartitionKey;
+import software.amazon.awssdk.services.dynamodb.DynamoDbClient;
+import software.amazon.awssdk.services.dynamodb.model.AttributeValue;
+import software.amazon.awssdk.services.dynamodb.model.GetItemRequest;
+import software.amazon.awssdk.services.dynamodb.model.GetItemResponse;
+import software.amazon.awssdk.services.dynamodb.model.PutItemRequest;
+import software.amazon.awssdk.services.dynamodb.model.ReturnValue;
+import software.amazon.awssdk.services.dynamodb.model.UpdateItemRequest;
+import software.amazon.awssdk.services.dynamodb.model.UpdateItemResponse;
+
+@RunWith(MockitoJUnitRunner.class)
+public class EmptyBinaryTest {
+ private static final String TABLE_NAME = "TEST_TABLE";
+ private static final SdkBytes EMPTY_BYTES = SdkBytes.fromUtf8String("");
+ private static final AttributeValue EMPTY_BINARY = AttributeValue.builder().b(EMPTY_BYTES).build();
+
+ @Mock
+ private DynamoDbClient mockDynamoDbClient;
+
+ private DynamoDbTable dynamoDbTable;
+
+ @DynamoDbBean
+ public static class TestBean {
+ private String id;
+ private SdkBytes b;
+
+ @DynamoDbPartitionKey
+ public String getId() {
+ return id;
+ }
+
+ public void setId(String id) {
+ this.id = id;
+ }
+
+ public SdkBytes getB() {
+ return b;
+ }
+
+ public void setB(SdkBytes b) {
+ this.b = b;
+ }
+ }
+
+ private static final TableSchema TABLE_SCHEMA = TableSchema.fromBean(TestBean.class);
+
+ @Before
+ public void initializeTable() {
+ DynamoDbEnhancedClient dynamoDbEnhancedClient = DynamoDbEnhancedClient.builder()
+ .dynamoDbClient(mockDynamoDbClient)
+ .build();
+
+ this.dynamoDbTable = dynamoDbEnhancedClient.table(TABLE_NAME, TABLE_SCHEMA);
+ }
+
+ @Test
+ public void putEmptyBytes() {
+ TestBean testBean = new TestBean();
+ testBean.setId("id123");
+ testBean.setB(EMPTY_BYTES);
+
+ dynamoDbTable.putItem(testBean);
+
+ Map expectedItemMap = new HashMap<>();
+ expectedItemMap.put("id", AttributeValue.builder().s("id123").build());
+ expectedItemMap.put("b", EMPTY_BINARY);
+
+ PutItemRequest expectedRequest = PutItemRequest.builder()
+ .tableName(TABLE_NAME)
+ .item(expectedItemMap)
+ .build();
+
+ verify(mockDynamoDbClient).putItem(expectedRequest);
+ }
+
+ @Test
+ public void getEmptyBytes() {
+ Map itemMap = new HashMap<>();
+ itemMap.put("id", AttributeValue.builder().s("id123").build());
+ itemMap.put("b", EMPTY_BINARY);
+
+ GetItemResponse response = GetItemResponse.builder()
+ .item(itemMap)
+ .build();
+
+ when(mockDynamoDbClient.getItem(any(GetItemRequest.class))).thenReturn(response);
+
+ TestBean result = dynamoDbTable.getItem(r -> r.key(k -> k.partitionValue("id123")));
+
+ assertThat(result.getId()).isEqualTo("id123");
+ assertThat(result.getB()).isEqualTo(EMPTY_BYTES);
+ }
+
+ @Test
+ public void updateEmptyBytesWithCondition() {
+ Map expectedItemMap = new HashMap<>();
+ expectedItemMap.put("id", AttributeValue.builder().s("id123").build());
+ expectedItemMap.put("b", EMPTY_BINARY);
+ TestBean testBean = new TestBean();
+ testBean.setId("id123");
+ testBean.setB(EMPTY_BYTES);
+
+ UpdateItemResponse response = UpdateItemResponse.builder()
+ .attributes(expectedItemMap)
+ .build();
+ when(mockDynamoDbClient.updateItem(any(UpdateItemRequest.class))).thenReturn(response);
+
+ Expression conditionExpression = Expression.builder()
+ .expression("#attr = :val")
+ .expressionNames(singletonMap("#attr", "b"))
+ .expressionValues(singletonMap(":val", EMPTY_BINARY))
+ .build();
+
+ TestBean result = dynamoDbTable.updateItem(r -> r.item(testBean).conditionExpression(conditionExpression));
+
+ Map expectedExpressionAttributeNames = new HashMap<>();
+ expectedExpressionAttributeNames.put("#AMZN_MAPPED_b", "b");
+ expectedExpressionAttributeNames.put("#attr", "b");
+ Map expectedExpressionAttributeValues = new HashMap<>();
+ expectedExpressionAttributeValues.put(":AMZN_MAPPED_b", EMPTY_BINARY);
+ expectedExpressionAttributeValues.put(":val", EMPTY_BINARY);
+ Map expectedKeyMap = new HashMap<>();
+ expectedKeyMap.put("id", AttributeValue.builder().s("id123").build());
+
+ UpdateItemRequest expectedRequest =
+ UpdateItemRequest.builder()
+ .tableName(TABLE_NAME)
+ .key(expectedKeyMap)
+ .returnValues(ReturnValue.ALL_NEW)
+ .updateExpression("SET #AMZN_MAPPED_b = :AMZN_MAPPED_b")
+ .conditionExpression("#attr = :val")
+ .expressionAttributeNames(expectedExpressionAttributeNames)
+ .expressionAttributeValues(expectedExpressionAttributeValues)
+ .build();
+
+ verify(mockDynamoDbClient).updateItem(expectedRequest);
+ assertThat(result.getId()).isEqualTo("id123");
+ assertThat(result.getB()).isEqualTo(EMPTY_BYTES);
+ }
+}
diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/EmptyStringTest.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/EmptyStringTest.java
new file mode 100644
index 000000000000..c6190ffec48f
--- /dev/null
+++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/EmptyStringTest.java
@@ -0,0 +1,174 @@
+/*
+ * 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 static java.util.Collections.singletonMap;
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.mockito.ArgumentMatchers.any;
+import static org.mockito.Mockito.verify;
+import static org.mockito.Mockito.when;
+
+import java.util.HashMap;
+import java.util.Map;
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.Mock;
+import org.mockito.junit.MockitoJUnitRunner;
+import software.amazon.awssdk.enhanced.dynamodb.DynamoDbEnhancedClient;
+import software.amazon.awssdk.enhanced.dynamodb.DynamoDbTable;
+import software.amazon.awssdk.enhanced.dynamodb.Expression;
+import software.amazon.awssdk.enhanced.dynamodb.TableSchema;
+import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbBean;
+import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbPartitionKey;
+import software.amazon.awssdk.services.dynamodb.DynamoDbClient;
+import software.amazon.awssdk.services.dynamodb.model.AttributeValue;
+import software.amazon.awssdk.services.dynamodb.model.GetItemRequest;
+import software.amazon.awssdk.services.dynamodb.model.GetItemResponse;
+import software.amazon.awssdk.services.dynamodb.model.PutItemRequest;
+import software.amazon.awssdk.services.dynamodb.model.ReturnValue;
+import software.amazon.awssdk.services.dynamodb.model.UpdateItemRequest;
+import software.amazon.awssdk.services.dynamodb.model.UpdateItemResponse;
+
+@RunWith(MockitoJUnitRunner.class)
+public class EmptyStringTest {
+ private static final String TABLE_NAME = "TEST_TABLE";
+ private static final AttributeValue EMPTY_STRING = AttributeValue.builder().s("").build();
+
+ @Mock
+ private DynamoDbClient mockDynamoDbClient;
+
+ private DynamoDbTable dynamoDbTable;
+
+ @DynamoDbBean
+ public static class TestBean {
+ private String id;
+ private String s;
+
+ @DynamoDbPartitionKey
+ public String getId() {
+ return id;
+ }
+
+ public void setId(String id) {
+ this.id = id;
+ }
+
+ public String getS() {
+ return s;
+ }
+
+ public void setS(String s) {
+ this.s = s;
+ }
+ }
+
+ private static final TableSchema TABLE_SCHEMA = TableSchema.fromBean(TestBean.class);
+
+ @Before
+ public void initializeTable() {
+ DynamoDbEnhancedClient dynamoDbEnhancedClient = DynamoDbEnhancedClient.builder()
+ .dynamoDbClient(mockDynamoDbClient)
+ .build();
+
+ this.dynamoDbTable = dynamoDbEnhancedClient.table(TABLE_NAME, TABLE_SCHEMA);
+ }
+
+ @Test
+ public void putEmptyString() {
+ TestBean testBean = new TestBean();
+ testBean.setId("id123");
+ testBean.setS("");
+
+ dynamoDbTable.putItem(testBean);
+
+ Map expectedItemMap = new HashMap<>();
+ expectedItemMap.put("id", AttributeValue.builder().s("id123").build());
+ expectedItemMap.put("s", EMPTY_STRING);
+
+ PutItemRequest expectedRequest = PutItemRequest.builder()
+ .tableName(TABLE_NAME)
+ .item(expectedItemMap)
+ .build();
+
+ verify(mockDynamoDbClient).putItem(expectedRequest);
+ }
+
+ @Test
+ public void getEmptyString() {
+ Map itemMap = new HashMap<>();
+ itemMap.put("id", AttributeValue.builder().s("id123").build());
+ itemMap.put("s", EMPTY_STRING);
+
+ GetItemResponse response = GetItemResponse.builder()
+ .item(itemMap)
+ .build();
+
+ when(mockDynamoDbClient.getItem(any(GetItemRequest.class))).thenReturn(response);
+
+ TestBean result = dynamoDbTable.getItem(r -> r.key(k -> k.partitionValue("id123")));
+
+ assertThat(result.getId()).isEqualTo("id123");
+ assertThat(result.getS()).isEmpty();
+ }
+
+ @Test
+ public void updateEmptyStringWithCondition() {
+ Map expectedItemMap = new HashMap<>();
+ expectedItemMap.put("id", AttributeValue.builder().s("id123").build());
+ expectedItemMap.put("s", EMPTY_STRING);
+ TestBean testBean = new TestBean();
+ testBean.setId("id123");
+ testBean.setS("");
+
+ UpdateItemResponse response = UpdateItemResponse.builder()
+ .attributes(expectedItemMap)
+ .build();
+ when(mockDynamoDbClient.updateItem(any(UpdateItemRequest.class))).thenReturn(response);
+
+ Expression conditionExpression = Expression.builder()
+ .expression("#attr = :val")
+ .expressionNames(singletonMap("#attr", "s"))
+ .expressionValues(singletonMap(":val", EMPTY_STRING))
+ .build();
+
+ TestBean result = dynamoDbTable.updateItem(r -> r.item(testBean).conditionExpression(conditionExpression));
+
+ Map expectedExpressionAttributeNames = new HashMap<>();
+ expectedExpressionAttributeNames.put("#AMZN_MAPPED_s", "s");
+ expectedExpressionAttributeNames.put("#attr", "s");
+ Map expectedExpressionAttributeValues = new HashMap<>();
+ expectedExpressionAttributeValues.put(":AMZN_MAPPED_s", EMPTY_STRING);
+ expectedExpressionAttributeValues.put(":val", EMPTY_STRING);
+ Map expectedKeyMap = new HashMap<>();
+ expectedKeyMap.put("id", AttributeValue.builder().s("id123").build());
+
+ UpdateItemRequest expectedRequest =
+ UpdateItemRequest.builder()
+ .tableName(TABLE_NAME)
+ .key(expectedKeyMap)
+ .returnValues(ReturnValue.ALL_NEW)
+ .updateExpression("SET #AMZN_MAPPED_s = :AMZN_MAPPED_s")
+ .conditionExpression("#attr = :val")
+ .expressionAttributeNames(expectedExpressionAttributeNames)
+ .expressionAttributeValues(expectedExpressionAttributeValues)
+ .build();
+
+ verify(mockDynamoDbClient).updateItem(expectedRequest);
+ assertThat(result.getId()).isEqualTo("id123");
+ assertThat(result.getS()).isEmpty();
+ }
+}
From d95b06e7496fc73b059c8068d3e14c335832a43f Mon Sep 17 00:00:00 2001
From: Bret Ambrose
Date: Wed, 15 Apr 2020 14:20:54 -0700
Subject: [PATCH 048/604] WIP
---
.../http/crt/AwsCrtAsyncHttpClient.java | 120 ++++++++++--------
1 file changed, 70 insertions(+), 50 deletions(-)
diff --git a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
index 782e1c139881..a7be034d430c 100644
--- a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
+++ b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
@@ -26,7 +26,7 @@
import java.util.Optional;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ConcurrentHashMap;
-import java.util.concurrent.atomic.AtomicBoolean;
+import org.graalvm.compiler.core.common.SuppressFBWarnings;
import software.amazon.awssdk.annotations.SdkPublicApi;
import software.amazon.awssdk.crt.CrtResource;
import software.amazon.awssdk.crt.http.HttpClientConnectionManager;
@@ -72,7 +72,6 @@ public final class AwsCrtAsyncHttpClient implements SdkAsyncHttpClient {
private final Map connectionPools = new ConcurrentHashMap<>();
private final LinkedList ownedSubResources = new LinkedList<>();
- private final AtomicBoolean isClosed = new AtomicBoolean(false);
private final ClientBootstrap bootstrap;
private final SocketOptions socketOptions;
private final TlsContextOptions tlsContextOptions;
@@ -80,6 +79,7 @@ public final class AwsCrtAsyncHttpClient implements SdkAsyncHttpClient {
private final int windowSize;
private final int maxConnectionsPerEndpoint;
private final boolean manualWindowManagement;
+ private boolean isClosed = false;
private AwsCrtAsyncHttpClient(DefaultBuilder builder, AttributeMap config) {
int maxConns = config.get(SdkHttpConfigurationOption.MAX_CONNECTIONS);
@@ -160,24 +160,37 @@ private HttpClientConnectionManager createConnectionPool(URI uri) {
return HttpClientConnectionManager.create(options);
}
+ /*
+ * Callers of this function MUST account for the addRef() on the pool before returning.
+ * Every execution path consuming the return value must guarantee an associated close().
+ * Currently this function is only used by execute(), which guarantees a matching close
+ * via the try-with-resources block.
+ *
+ * This guarantees that a returned pool will not get closed (by closing the http client) during
+ * the time it takes to submit a request to the pool. Acquisition requests submitted to the pool will
+ * be properly failed if the http client is closed before the acquisition completes.
+ *
+ * This additional complexity means we only have to keep a lock for the scope of this function, as opposed to
+ * the scope of calling execute(). This function will almost always just be a hash lookup and the return of an
+ * existing pool. If we add all of execute() to the scope, we include, at minimum a JNI call to the native
+ * pool implementation.
+ */
private HttpClientConnectionManager getOrCreateConnectionPool(URI uri) {
Validate.notNull(uri, NULL_URI_ERROR_MESSAGE);
- HttpClientConnectionManager connPool = connectionPools.get(uri);
-
- if (connPool == null) {
- HttpClientConnectionManager newConnPool = createConnectionPool(uri);
- HttpClientConnectionManager alreadyExistingConnPool = connectionPools.putIfAbsent(uri, newConnPool);
-
- if (alreadyExistingConnPool == null) {
- connPool = newConnPool;
- } else {
- // Multiple threads trying to open connections to the same URI at once, close the newer one
- newConnPool.close();
- connPool = alreadyExistingConnPool;
+ synchronized (this) {
+ if (isClosed) {
+ throw new IllegalStateException("Client is closed. No more requests can be made with this client.");
+ }
+
+ HttpClientConnectionManager connPool = connectionPools.get(uri);
+ if (connPool == null) {
+ connPool = createConnectionPool(uri);
+ connectionPools.put(uri, connPool);
}
- }
- return connPool;
+ connPool.addRef();
+ return connPool;
+ }
}
private List createHttpHeaderList(URI uri, AsyncExecuteRequest asyncRequest) {
@@ -236,54 +249,61 @@ private HttpRequest toCrtRequest(URI uri, AsyncExecuteRequest asyncRequest, AwsC
return new HttpRequest(method, encodedPath + encodedQueryString, crtHeaderArray, crtToSdkAdapter);
}
+ @SuppressFBWarnings(value = "RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE",
+ justification = "try-with-resources is showing up as a false positive")
@Override
public CompletableFuture execute(AsyncExecuteRequest asyncRequest) {
- if (isClosed.get()) {
- throw new IllegalStateException("Client is closed. No more requests can be made with this client.");
- }
+
Validate.notNull(asyncRequest, "AsyncExecuteRequest must not be null");
Validate.notNull(asyncRequest.request(), NULL_REQUEST_ERROR_MESSAGE);
Validate.notNull(asyncRequest.requestContentPublisher(), "RequestContentPublisher must not be null");
Validate.notNull(asyncRequest.responseHandler(), "ResponseHandler must not be null");
URI uri = toUri(asyncRequest.request());
- HttpClientConnectionManager crtConnPool = getOrCreateConnectionPool(uri);
- CompletableFuture requestFuture = new CompletableFuture<>();
-
- // When a Connection is ready from the Connection Pool, schedule the Request on the connection
- crtConnPool.acquireConnection()
- .whenComplete((crtConn, throwable) -> {
- // If we didn't get a connection for some reason, fail the request
- if (throwable != null) {
- asyncRequest.responseHandler().onError(throwable);
- requestFuture.completeExceptionally(throwable);
- return;
- }
-
- AwsCrtAsyncHttpStreamAdapter crtToSdkAdapter =
- new AwsCrtAsyncHttpStreamAdapter(crtConn, requestFuture, asyncRequest, windowSize);
- HttpRequest crtRequest = toCrtRequest(uri, asyncRequest, crtToSdkAdapter);
-
- // Submit the Request on this Connection
- invokeSafely(() -> crtConn.makeRequest(crtRequest, crtToSdkAdapter).activate());
- });
-
- return requestFuture;
+
+ try (HttpClientConnectionManager crtConnPool = getOrCreateConnectionPool(uri)) {
+ CompletableFuture requestFuture = new CompletableFuture<>();
+
+ // When a Connection is ready from the Connection Pool, schedule the Request on the connection
+ crtConnPool.acquireConnection()
+ .whenComplete((crtConn, throwable) -> {
+ // If we didn't get a connection for some reason, fail the request
+ if (throwable != null) {
+ asyncRequest.responseHandler().onError(throwable);
+ requestFuture.completeExceptionally(throwable);
+ return;
+ }
+
+ AwsCrtAsyncHttpStreamAdapter crtToSdkAdapter =
+ new AwsCrtAsyncHttpStreamAdapter(crtConn, requestFuture, asyncRequest, windowSize);
+ HttpRequest crtRequest = toCrtRequest(uri, asyncRequest, crtToSdkAdapter);
+
+ // Submit the Request on this Connection
+ invokeSafely(() -> crtConn.makeRequest(crtRequest, crtToSdkAdapter).activate());
+ });
+
+ return requestFuture;
+ }
}
@Override
public void close() {
- if (!isClosed.compareAndSet(false, true)) {
- return;
- }
+ synchronized (this) {
- for (HttpClientConnectionManager connPool : connectionPools.values()) {
- IoUtils.closeQuietly(connPool, log.logger());
- }
+ if (isClosed) {
+ return;
+ }
+
+ for (HttpClientConnectionManager connPool : connectionPools.values()) {
+ IoUtils.closeQuietly(connPool, log.logger());
+ }
+
+ while (!ownedSubResources.isEmpty()) {
+ CrtResource r = ownedSubResources.pop();
+ IoUtils.closeQuietly(r, log.logger());
+ }
- while (!ownedSubResources.isEmpty()) {
- CrtResource r = ownedSubResources.pop();
- IoUtils.closeQuietly(r, log.logger());
+ isClosed = true;
}
}
From 4ce452140330d89003fd0dd4043e29586db648de Mon Sep 17 00:00:00 2001
From: Bret Ambrose
Date: Thu, 16 Apr 2020 09:30:58 -0700
Subject: [PATCH 049/604] Correct reactive stream subscription failure; move
findbugs suppressions from annotations to config file
---
.../amazon/awssdk/spotbugs-suppressions.xml | 13 +++++++++++++
.../awssdk/http/crt/AwsCrtAsyncHttpClient.java | 3 ---
.../internal/AwsCrtResponseBodyPublisher.java | 17 ++++++++++++++---
3 files changed, 27 insertions(+), 6 deletions(-)
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 d1809a003d7d..dc17bfe3615c 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
@@ -159,4 +159,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
index a7be034d430c..2c163a8af7ad 100644
--- a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
+++ b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
@@ -26,7 +26,6 @@
import java.util.Optional;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ConcurrentHashMap;
-import org.graalvm.compiler.core.common.SuppressFBWarnings;
import software.amazon.awssdk.annotations.SdkPublicApi;
import software.amazon.awssdk.crt.CrtResource;
import software.amazon.awssdk.crt.http.HttpClientConnectionManager;
@@ -249,8 +248,6 @@ private HttpRequest toCrtRequest(URI uri, AsyncExecuteRequest asyncRequest, AwsC
return new HttpRequest(method, encodedPath + encodedQueryString, crtHeaderArray, crtToSdkAdapter);
}
- @SuppressFBWarnings(value = "RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE",
- justification = "try-with-resources is showing up as a false positive")
@Override
public CompletableFuture execute(AsyncExecuteRequest asyncRequest) {
diff --git a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/internal/AwsCrtResponseBodyPublisher.java b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/internal/AwsCrtResponseBodyPublisher.java
index c0fee57f39b5..1a95dfbb4644 100644
--- a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/internal/AwsCrtResponseBodyPublisher.java
+++ b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/internal/AwsCrtResponseBodyPublisher.java
@@ -27,6 +27,7 @@
import java.util.function.LongUnaryOperator;
import org.reactivestreams.Publisher;
import org.reactivestreams.Subscriber;
+import org.reactivestreams.Subscription;
import software.amazon.awssdk.annotations.SdkInternalApi;
import software.amazon.awssdk.crt.http.HttpClientConnection;
import software.amazon.awssdk.crt.http.HttpStream;
@@ -86,11 +87,21 @@ public void subscribe(Subscriber super ByteBuffer> subscriber) {
if (!wasFirstSubscriber) {
log.error(() -> "Only one subscriber allowed");
+
+ // onSubscribe must be called first before onError gets called, so give it a do-nothing Subscription
+ subscriber.onSubscribe(new Subscription() {
+ @Override
+ public void request(long n) {
+ }
+
+ @Override
+ public void cancel() {
+ }
+ });
subscriber.onError(new IllegalStateException("Only one subscriber allowed"));
- return;
+ } else {
+ subscriber.onSubscribe(new AwsCrtResponseBodySubscription(this));
}
-
- subscriber.onSubscribe(new AwsCrtResponseBodySubscription(this));
}
/**
From ccc6df648d1e862bfeec86e274a65651ef48ef35 Mon Sep 17 00:00:00 2001
From: Anuraag Agrawal
Date: Thu, 16 Apr 2020 15:26:09 +0900
Subject: [PATCH 050/604] Fix typo in javadoc: query parameters -> http headers
---
.../main/java/software/amazon/awssdk/http/SdkHttpResponse.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/http-client-spi/src/main/java/software/amazon/awssdk/http/SdkHttpResponse.java b/http-client-spi/src/main/java/software/amazon/awssdk/http/SdkHttpResponse.java
index 157c6ff6a03e..61e02e528d78 100644
--- a/http-client-spi/src/main/java/software/amazon/awssdk/http/SdkHttpResponse.java
+++ b/http-client-spi/src/main/java/software/amazon/awssdk/http/SdkHttpResponse.java
@@ -91,7 +91,7 @@ interface Builder extends CopyableBuilder {
Builder statusCode(int statusCode);
/**
- * The query parameters, exactly as they were configured with {@link #headers(Map)},
+ * The HTTP headers, exactly as they were configured with {@link #headers(Map)},
* {@link #putHeader(String, String)} and {@link #putHeader(String, List)}.
*/
Map> headers();
From 12116bcb6d0f4be388995ccaaeeed0a98a6fd229 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 16 Apr 2020 18:06:14 +0000
Subject: [PATCH 051/604] AWS SecurityHub Update: Added a new
BatchUpdateFindings action, which allows customers to update selected
information about their findings. Security Hub customers use
BatchUpdateFindings to track their investigation into a finding.
BatchUpdateFindings is intended to replace the UpdateFindings action, which
is deprecated.
---
.../feature-AWSSecurityHub-7ee670a.json | 5 +
.../codegen-resources/service-2.json | 162 +++++++++++++++++-
2 files changed, 165 insertions(+), 2 deletions(-)
create mode 100644 .changes/next-release/feature-AWSSecurityHub-7ee670a.json
diff --git a/.changes/next-release/feature-AWSSecurityHub-7ee670a.json b/.changes/next-release/feature-AWSSecurityHub-7ee670a.json
new file mode 100644
index 000000000000..a09f9c6afae5
--- /dev/null
+++ b/.changes/next-release/feature-AWSSecurityHub-7ee670a.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "AWS SecurityHub",
+ "description": "Added a new BatchUpdateFindings action, which allows customers to update selected information about their findings. Security Hub customers use BatchUpdateFindings to track their investigation into a finding. BatchUpdateFindings is intended to replace the UpdateFindings action, which is deprecated."
+}
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 8c2ee729de07..f311baaa69b9 100644
--- a/services/securityhub/src/main/resources/codegen-resources/service-2.json
+++ b/services/securityhub/src/main/resources/codegen-resources/service-2.json
@@ -75,7 +75,23 @@
{"shape":"LimitExceededException"},
{"shape":"InvalidAccessException"}
],
- "documentation":"Imports security findings generated from an integrated third-party product into Security Hub. This action is requested by the integrated product to import its findings into Security Hub.
The maximum allowed size for a finding is 240 Kb. An error is returned for any finding larger than 240 Kb.
"
+ "documentation":"Imports security findings generated from an integrated third-party product into Security Hub. This action is requested by the integrated product to import its findings into Security Hub.
The maximum allowed size for a finding is 240 Kb. An error is returned for any finding larger than 240 Kb.
After a finding is created, BatchImportFindings
cannot be used to update the following finding fields and objects, which Security Hub customers use to manage their investigation workflow.
-
Confidence
-
Criticality
-
Note
-
RelatedFindings
-
Severity
-
Types
-
UserDefinedFields
-
VerificationState
-
Workflow
"
+ },
+ "BatchUpdateFindings":{
+ "name":"BatchUpdateFindings",
+ "http":{
+ "method":"PATCH",
+ "requestUri":"/findings/batchupdate"
+ },
+ "input":{"shape":"BatchUpdateFindingsRequest"},
+ "output":{"shape":"BatchUpdateFindingsResponse"},
+ "errors":[
+ {"shape":"InternalException"},
+ {"shape":"InvalidInputException"},
+ {"shape":"LimitExceededException"},
+ {"shape":"InvalidAccessException"}
+ ],
+ "documentation":"Used by Security Hub customers to update information about their investigation into a finding. Requested by master accounts or member accounts. Master accounts can update findings for their account and their member accounts. Member accounts can update findings for their account.
Updates from BatchUpdateFindings
do not affect the value of UpdatedAt
for a finding.
Master accounts can use BatchUpdateFindings
to update the following finding fields and objects.
-
Confidence
-
Criticality
-
Note
-
RelatedFindings
-
Severity
-
Types
-
UserDefinedFields
-
VerificationState
-
Workflow
Member accounts can only use BatchUpdateFindings
to update the Note object.
"
},
"CreateActionTarget":{
"name":"CreateActionTarget",
@@ -649,7 +665,7 @@
{"shape":"InvalidAccessException"},
{"shape":"ResourceNotFoundException"}
],
- "documentation":"Updates the Note
and RecordState
of the Security Hub-aggregated findings that the filter attributes specify. Any member account that can view the finding also sees the update to the finding.
"
+ "documentation":" UpdateFindings
is deprecated. Instead of UpdateFindings
, use BatchUpdateFindings
.
Updates the Note
and RecordState
of the Security Hub-aggregated findings that the filter attributes specify. Any member account that can view the finding also sees the update to the finding.
"
},
"UpdateInsight":{
"name":"UpdateInsight",
@@ -2420,6 +2436,28 @@
},
"documentation":"A collection of attributes that are applied to all active Security Hub-aggregated findings and that result in a subset of findings that are included in this insight.
"
},
+ "AwsSecurityFindingIdentifier":{
+ "type":"structure",
+ "required":[
+ "Id",
+ "ProductArn"
+ ],
+ "members":{
+ "Id":{
+ "shape":"NonEmptyString",
+ "documentation":"The identifier of the finding that was specified by the finding provider.
"
+ },
+ "ProductArn":{
+ "shape":"NonEmptyString",
+ "documentation":"The ARN generated by Security Hub that uniquely identifies a product that generates findings. This can be the ARN for a third-party product that is integrated with Security Hub, or the ARN for a custom integration.
"
+ }
+ },
+ "documentation":"Identifies a finding to update using BatchUpdateFindings
.
"
+ },
+ "AwsSecurityFindingIdentifierList":{
+ "type":"list",
+ "member":{"shape":"AwsSecurityFindingIdentifier"}
+ },
"AwsSecurityFindingList":{
"type":"list",
"member":{"shape":"AwsSecurityFinding"}
@@ -2611,6 +2649,93 @@
}
}
},
+ "BatchUpdateFindingsRequest":{
+ "type":"structure",
+ "required":["FindingIdentifiers"],
+ "members":{
+ "FindingIdentifiers":{
+ "shape":"AwsSecurityFindingIdentifierList",
+ "documentation":"The list of findings to update. BatchUpdateFindings
can be used to update up to 100 findings at a time.
For each finding, the list provides the finding identifier and the ARN of the finding provider.
"
+ },
+ "Note":{"shape":"NoteUpdate"},
+ "Severity":{
+ "shape":"SeverityUpdate",
+ "documentation":"Used to update the finding severity.
"
+ },
+ "VerificationState":{
+ "shape":"VerificationState",
+ "documentation":"Indicates the veracity of a finding.
The available values for VerificationState
are as follows.
-
UNKNOWN
– The default disposition of a security finding
-
TRUE_POSITIVE
– The security finding is confirmed
-
FALSE_POSITIVE
– The security finding was determined to be a false alarm
-
BENIGN_POSITIVE
– A special case of TRUE_POSITIVE
where the finding doesn't pose any threat, is expected, or both
"
+ },
+ "Confidence":{
+ "shape":"RatioScale",
+ "documentation":"The updated value for the finding confidence. Confidence is defined as the likelihood that a finding accurately identifies the behavior or issue that it was intended to identify.
Confidence is scored on a 0-100 basis using a ratio scale, where 0 means zero percent confidence and 100 means 100 percent confidence.
"
+ },
+ "Criticality":{
+ "shape":"RatioScale",
+ "documentation":"The updated value for the level of importance assigned to the resources associated with the findings.
A score of 0 means that the underlying resources have no criticality, and a score of 100 is reserved for the most critical resources.
"
+ },
+ "Types":{
+ "shape":"TypeList",
+ "documentation":"One or more finding types in the format of namespace/category/classifier that classify a finding.
Valid namespace values are as follows.
"
+ },
+ "UserDefinedFields":{
+ "shape":"FieldMap",
+ "documentation":"A list of name/value string pairs associated with the finding. These are custom, user-defined fields added to a finding.
"
+ },
+ "Workflow":{
+ "shape":"WorkflowUpdate",
+ "documentation":"Used to update the workflow status of a finding.
The workflow status indicates the progress of the investigation into the finding.
"
+ },
+ "RelatedFindings":{
+ "shape":"RelatedFindingList",
+ "documentation":"A list of findings that are related to the updated findings.
"
+ }
+ }
+ },
+ "BatchUpdateFindingsResponse":{
+ "type":"structure",
+ "required":[
+ "ProcessedFindings",
+ "UnprocessedFindings"
+ ],
+ "members":{
+ "ProcessedFindings":{
+ "shape":"AwsSecurityFindingIdentifierList",
+ "documentation":"The list of findings that were updated successfully.
"
+ },
+ "UnprocessedFindings":{
+ "shape":"BatchUpdateFindingsUnprocessedFindingsList",
+ "documentation":"The list of findings that were not updated.
"
+ }
+ }
+ },
+ "BatchUpdateFindingsUnprocessedFinding":{
+ "type":"structure",
+ "required":[
+ "FindingIdentifier",
+ "ErrorCode",
+ "ErrorMessage"
+ ],
+ "members":{
+ "FindingIdentifier":{
+ "shape":"AwsSecurityFindingIdentifier",
+ "documentation":"The identifier of the finding that was not updated.
"
+ },
+ "ErrorCode":{
+ "shape":"NonEmptyString",
+ "documentation":"The code associated with the error.
"
+ },
+ "ErrorMessage":{
+ "shape":"NonEmptyString",
+ "documentation":"The message associated with the error.
"
+ }
+ },
+ "documentation":"A finding from a BatchUpdateFindings
request that Security Hub was unable to update.
"
+ },
+ "BatchUpdateFindingsUnprocessedFindingsList":{
+ "type":"list",
+ "member":{"shape":"BatchUpdateFindingsUnprocessedFinding"}
+ },
"Boolean":{"type":"boolean"},
"CategoryList":{
"type":"list",
@@ -4003,6 +4128,11 @@
"type":"list",
"member":{"shape":"Product"}
},
+ "RatioScale":{
+ "type":"integer",
+ "max":100,
+ "min":0
+ },
"Recommendation":{
"type":"structure",
"members":{
@@ -4267,6 +4397,24 @@
"CRITICAL"
]
},
+ "SeverityUpdate":{
+ "type":"structure",
+ "members":{
+ "Normalized":{
+ "shape":"RatioScale",
+ "documentation":"The normalized severity for the finding. This attribute is to be deprecated in favor of Label
.
If you provide Normalized
and do not provide Label
, Label
is set automatically as follows.
-
0 - INFORMATIONAL
-
1–39 - LOW
-
40–69 - MEDIUM
-
70–89 - HIGH
-
90–100 - CRITICAL
"
+ },
+ "Product":{
+ "shape":"Double",
+ "documentation":"The native severity as defined by the AWS service or integrated partner product that generated the finding.
"
+ },
+ "Label":{
+ "shape":"SeverityLabel",
+ "documentation":"The severity value of the finding. The allowed values are the following.
-
INFORMATIONAL
- No issue was found.
-
LOW
- The issue does not require action on its own.
-
MEDIUM
- The issue must be addressed but not urgently.
-
HIGH
- The issue must be addressed as a priority.
-
CRITICAL
- The issue must be remediated immediately to avoid it escalating.
"
+ }
+ },
+ "documentation":"Updates to the severity information for a finding.
"
+ },
"SortCriteria":{
"type":"list",
"member":{"shape":"SortCriterion"}
@@ -4788,6 +4936,16 @@
"RESOLVED",
"SUPPRESSED"
]
+ },
+ "WorkflowUpdate":{
+ "type":"structure",
+ "members":{
+ "Status":{
+ "shape":"WorkflowStatus",
+ "documentation":"The status of the investigation into the finding. The allowed values are the following.
-
NEW
- The initial state of a finding, before it is reviewed.
-
NOTIFIED
- Indicates that you notified the resource owner about the security issue. Used when the initial reviewer is not the resource owner, and needs intervention from the resource owner.
-
RESOLVED
- The finding was reviewed and remediated and is now considered resolved.
-
SUPPRESSED
- The finding will not be reviewed again and will not be acted upon.
"
+ }
+ },
+ "documentation":"Used to update information about the investigation into the finding.
"
}
},
"documentation":"Security Hub provides you with a comprehensive view of the security state of your AWS environment and resources. It also provides you with the readiness status of your environment based on controls from supported security standards. Security Hub collects security data from AWS accounts, services, and integrated third-party products and helps you analyze security trends in your environment to identify the highest priority security issues. For more information about Security Hub, see the AWS Security Hub User Guide .
When you use operations in the Security Hub API, the requests are executed only in the AWS Region that is currently active or in the specific AWS Region that you specify in your request. Any configuration or settings change that results from the operation is applied only to that Region. To make the same change in other Regions, execute the same command for each Region to apply the change to.
For example, if your Region is set to us-west-2
, when you use CreateMembers
to add a member account to Security Hub, the association of the member account with the master account is created only in the us-west-2
Region. Security Hub must be enabled for the member account in the same Region that the invitation was sent from.
The following throttling limits apply to using Security Hub API operations.
-
GetFindings
- RateLimit
of 3 requests per second. BurstLimit
of 6 requests per second.
-
UpdateFindings
- RateLimit
of 1 request per second. BurstLimit
of 5 requests per second.
-
All other operations - RateLimit
of 10 requests per second. BurstLimit
of 30 requests per second.
"
From 7c11694f64f4f3b91668da58d9ae50d1205d5137 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 16 Apr 2020 18:06:14 +0000
Subject: [PATCH 052/604] AWS IoT Events Update: API update that allows users
to customize event action payloads, and adds support for Amazon DynamoDB
actions.
---
.../feature-AWSIoTEvents-5b5f615.json | 5 +
.../codegen-resources/service-2.json | 146 ++++++++++++++++--
2 files changed, 141 insertions(+), 10 deletions(-)
create mode 100644 .changes/next-release/feature-AWSIoTEvents-5b5f615.json
diff --git a/.changes/next-release/feature-AWSIoTEvents-5b5f615.json b/.changes/next-release/feature-AWSIoTEvents-5b5f615.json
new file mode 100644
index 000000000000..5ba563bf5e5e
--- /dev/null
+++ b/.changes/next-release/feature-AWSIoTEvents-5b5f615.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "AWS IoT Events",
+ "description": "API update that allows users to customize event action payloads, and adds support for Amazon DynamoDB actions."
+}
diff --git a/services/iotevents/src/main/resources/codegen-resources/service-2.json b/services/iotevents/src/main/resources/codegen-resources/service-2.json
index 58e834925d5f..11c0b1076dc5 100644
--- a/services/iotevents/src/main/resources/codegen-resources/service-2.json
+++ b/services/iotevents/src/main/resources/codegen-resources/service-2.json
@@ -326,7 +326,7 @@
},
"iotEvents":{
"shape":"IotEventsAction",
- "documentation":"Sends an AWS IoT Events input, passing in information about the detector model instance and the event that triggered the action.
"
+ "documentation":"Sends AWS IoT Events input, which passes information about the detector model instance and the event that triggered the action.
"
},
"sqs":{
"shape":"SqsAction",
@@ -335,6 +335,14 @@
"firehose":{
"shape":"FirehoseAction",
"documentation":"Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
"
+ },
+ "dynamoDB":{
+ "shape":"DynamoDBAction",
+ "documentation":"Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have the information about the detector model instance and the event that triggered the action. You can also customize the payload. One column of the DynamoDB table receives all attribute-value pairs in the payload that you specify. For more information, see Actions in AWS IoT Events Developer Guide.
"
+ },
+ "dynamoDBv2":{
+ "shape":"DynamoDBv2Action",
+ "documentation":"Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have the information about the detector model instance and the event that triggered the action. You can also customize the payload. A separate column of the DynamoDB table receives one attribute-value pair in the payload that you specify. For more information, see Actions in AWS IoT Events Developer Guide.
"
}
},
"documentation":"An action to be performed when the condition
is TRUE.
"
@@ -386,6 +394,10 @@
"type":"string",
"max":512
},
+ "ContentExpression":{
+ "type":"string",
+ "min":1
+ },
"CreateDetectorModelRequest":{
"type":"structure",
"required":[
@@ -636,7 +648,7 @@
},
"key":{
"shape":"AttributeJsonPath",
- "documentation":"The input attribute key used to identify a device or system to create a detector (an instance of the detector model) and then to route each input received to the appropriate detector (instance). This parameter uses a JSON-path expression in the message payload of each input to specify the attribute-value pair that is used to identify the device associated with the input.
"
+ "documentation":"The value used to identify a detector instance. When a device or system sends input, a new detector instance with a unique key value is created. AWS IoT Events can continue to route input to its corresponding detector instance based on this identifying information.
This parameter uses a JSON-path expression to select the attribute-value pair in the message payload that is used for identification. To route the message to the correct detector instance, the device must send a message payload that contains the same attribute-value.
"
},
"evaluationMethod":{
"shape":"EvaluationMethod",
@@ -754,6 +766,71 @@
},
"documentation":"Information about the detector model version.
"
},
+ "DynamoDBAction":{
+ "type":"structure",
+ "required":[
+ "hashKeyField",
+ "hashKeyValue",
+ "tableName"
+ ],
+ "members":{
+ "hashKeyType":{
+ "shape":"DynamoKeyType",
+ "documentation":"The data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify hashKeyType
, the default value is STRING
.
"
+ },
+ "hashKeyField":{
+ "shape":"DynamoKeyField",
+ "documentation":"The name of the hash key (also called the partition key).
"
+ },
+ "hashKeyValue":{
+ "shape":"DynamoKeyValue",
+ "documentation":"The value of the hash key (also called the partition key).
"
+ },
+ "rangeKeyType":{
+ "shape":"DynamoKeyType",
+ "documentation":"The data type for the range key (also called the sort key), You can specify the following values:
If you don't specify rangeKeyField
, the default value is STRING
.
"
+ },
+ "rangeKeyField":{
+ "shape":"DynamoKeyField",
+ "documentation":"The name of the range key (also called the sort key).
"
+ },
+ "rangeKeyValue":{
+ "shape":"DynamoKeyValue",
+ "documentation":"The value of the range key (also called the sort key).
"
+ },
+ "operation":{
+ "shape":"DynamoOperation",
+ "documentation":"The type of operation to perform. You can specify the following values:
-
INSERT
- Insert data as a new item into the DynamoDB table. This item uses the specified hash key as a partition key. If you specified a range key, the item uses the range key as a sort key.
-
UPDATE
- Update an existing item of the DynamoDB table with new data. This item's partition key must match the specified hash key. If you specified a range key, the range key must match the item's sort key.
-
DELETE
- Delete an existing item of the DynamoDB table. This item's partition key must match the specified hash key. If you specified a range key, the range key must match the item's sort key.
If you don't specify this parameter, AWS IoT Events triggers the INSERT
operation.
"
+ },
+ "payloadField":{
+ "shape":"DynamoKeyField",
+ "documentation":"The name of the DynamoDB column that receives the action payload.
If you don't specify this parameter, the name of the DynamoDB column is payload
.
"
+ },
+ "tableName":{
+ "shape":"DynamoTableName",
+ "documentation":"The name of the DynamoDB table.
"
+ },
+ "payload":{"shape":"Payload"}
+ },
+ "documentation":"Defines an action to write to the Amazon DynamoDB table that you created. The standard action payload contains all attribute-value pairs that have the information about the detector model instance and the event that triggered the action. You can also customize the payload. One column of the DynamoDB table receives all attribute-value pairs in the payload that you specify.
The tableName
and hashKeyField
values must match the table name and the partition key of the DynamoDB table.
If the DynamoDB table also has a sort key, you must specify rangeKeyField
. The rangeKeyField
value must match the sort key.
The hashKeyValue
and rangeKeyValue
use substitution templates. These templates provide data at runtime. The syntax is ${sql-expression}
.
You can use expressions for parameters that are string data type. For more information, see Expressions in the AWS IoT Events Developer Guide.
If the defined payload type is a string, DynamoDBAction
writes non-JSON data to the DynamoDB table as binary data. The DynamoDB console displays the data as Base64-encoded text. The payloadField
is <payload-field>_raw
.
"
+ },
+ "DynamoDBv2Action":{
+ "type":"structure",
+ "required":["tableName"],
+ "members":{
+ "tableName":{
+ "shape":"DynamoTableName",
+ "documentation":"The name of the DynamoDB table.
"
+ },
+ "payload":{"shape":"Payload"}
+ },
+ "documentation":"Defines an action to write to the Amazon DynamoDB table that you created. The default action payload contains all attribute-value pairs that have the information about the detector model instance and the event that triggered the action. You can also customize the payload. A separate column of the DynamoDB table receives one attribute-value pair in the payload that you specify.
The type
value for Payload
must be JSON
.
You can use expressions for parameters that are strings. For more information, see Expressions in the AWS IoT Events Developer Guide.
"
+ },
+ "DynamoKeyField":{"type":"string"},
+ "DynamoKeyType":{"type":"string"},
+ "DynamoKeyValue":{"type":"string"},
+ "DynamoOperation":{"type":"string"},
+ "DynamoTableName":{"type":"string"},
"EvaluationMethod":{
"type":"string",
"enum":[
@@ -799,6 +876,10 @@
"separator":{
"shape":"FirehoseSeparator",
"documentation":"A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: '\\n' (newline), '\\t' (tab), '\\r\\n' (Windows newline), ',' (comma).
"
+ },
+ "payload":{
+ "shape":"Payload",
+ "documentation":"You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
"
}
},
"documentation":"Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
"
@@ -955,6 +1036,10 @@
"inputName":{
"shape":"InputName",
"documentation":"The name of the AWS IoT Events input where the data is sent.
"
+ },
+ "payload":{
+ "shape":"Payload",
+ "documentation":"You can configure the action payload when you send a message to an AWS IoT Events input.
"
}
},
"documentation":"Sends an AWS IoT Events input, passing in information about the detector model instance and the event that triggered the action.
"
@@ -966,6 +1051,10 @@
"mqttTopic":{
"shape":"MQTTTopic",
"documentation":"The MQTT topic of the message. You can use a string expression that includes variables ($variable.<variable-name>
) and input values ($input.<input-name>.<path-to-datum>
) as the topic string.
"
+ },
+ "payload":{
+ "shape":"Payload",
+ "documentation":"You can configure the action payload when you publish a message to an AWS IoT Core topic.
"
}
},
"documentation":"Information required to publish the MQTT message through the AWS IoT message broker.
"
@@ -983,6 +1072,10 @@
"functionArn":{
"shape":"AmazonResourceName",
"documentation":"The ARN of the Lambda function that is executed.
"
+ },
+ "payload":{
+ "shape":"Payload",
+ "documentation":"You can configure the action payload when you send a message to a Lambda function.
"
}
},
"documentation":"Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
"
@@ -1169,7 +1262,7 @@
"members":{
"events":{
"shape":"Events",
- "documentation":"Specifies the actions that are performed when the state is entered and the condition
is TRUE.
"
+ "documentation":"Specifies the actions that are performed when the state is entered and the condition
is TRUE
.
"
}
},
"documentation":"When entering this state, perform these actions
if the condition
is TRUE.
"
@@ -1179,10 +1272,10 @@
"members":{
"events":{
"shape":"Events",
- "documentation":"Specifies the actions
that are performed when the state is exited and the condition
is TRUE.
"
+ "documentation":"Specifies the actions
that are performed when the state is exited and the condition
is TRUE
.
"
}
},
- "documentation":"When exiting this state, perform these actions
if the specified condition
is TRUE.
"
+ "documentation":"When exiting this state, perform these actions
if the specified condition
is TRUE
.
"
},
"OnInputLifecycle":{
"type":"structure",
@@ -1198,6 +1291,31 @@
},
"documentation":"Specifies the actions performed when the condition
evaluates to TRUE.
"
},
+ "Payload":{
+ "type":"structure",
+ "required":[
+ "contentExpression",
+ "type"
+ ],
+ "members":{
+ "contentExpression":{
+ "shape":"ContentExpression",
+ "documentation":"The content of the payload. You can use a string expression that includes quoted strings ('<string>'
), variables ($variable.<variable-name>
), input values ($input.<input-name>.<path-to-datum>
), string concatenations, and quoted strings that contain ${}
as the content. The recommended maximum size of a content expression is 1 KB.
"
+ },
+ "type":{
+ "shape":"PayloadType",
+ "documentation":"The value of the payload type can be either STRING
or JSON
.
"
+ }
+ },
+ "documentation":"Information needed to configure the payload.
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression
.
"
+ },
+ "PayloadType":{
+ "type":"string",
+ "enum":[
+ "STRING",
+ "JSON"
+ ]
+ },
"PutLoggingOptionsRequest":{
"type":"structure",
"required":["loggingOptions"],
@@ -1218,7 +1336,7 @@
"documentation":"The name of the timer to reset.
"
}
},
- "documentation":"Information required to reset the timer. The timer is reset to the previously evaluated result of the duration.
"
+ "documentation":"Information required to reset the timer. The timer is reset to the previously evaluated result of the duration. The duration expression isn't reevaluated when you reset the timer.
"
},
"ResourceAlreadyExistsException":{
"type":"structure",
@@ -1271,6 +1389,10 @@
"targetArn":{
"shape":"AmazonResourceName",
"documentation":"The ARN of the Amazon SNS target where the message is sent.
"
+ },
+ "payload":{
+ "shape":"Payload",
+ "documentation":"You can configure the action payload when you send a message as an Amazon SNS push notification.
"
}
},
"documentation":"Information required to publish the Amazon SNS message.
"
@@ -1303,7 +1425,7 @@
},
"seconds":{
"shape":"Seconds",
- "documentation":"The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy.
",
+ "documentation":"The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy. The maximum value is 31622400 seconds.
",
"deprecated":true,
"deprecatedMessage":"seconds is deprecated. You can use durationExpression for SetTimerAction. The value of seconds can be used as a string expression for durationExpression."
},
@@ -1342,7 +1464,11 @@
},
"useBase64":{
"shape":"UseBase64",
- "documentation":"Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue.
"
+ "documentation":"Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
"
+ },
+ "payload":{
+ "shape":"Payload",
+ "documentation":"You can configure the action payload when you send a message to an Amazon SQS queue.
"
}
},
"documentation":"Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.
"
@@ -1365,7 +1491,7 @@
},
"onExit":{
"shape":"OnExitLifecycle",
- "documentation":"When exiting this state, perform these actions
if the specified condition
is TRUE.
"
+ "documentation":"When exiting this state, perform these actions
if the specified condition
is TRUE
.
"
}
},
"documentation":"Information that defines a state of a detector.
"
@@ -1617,5 +1743,5 @@
"resourceArn":{"type":"string"},
"resourceId":{"type":"string"}
},
- "documentation":"AWS IoT Events monitors your equipment or device fleets for failures or changes in operation, and triggers actions when such events occur. You can use AWS IoT Events API commands to create, read, update, and delete inputs and detector models, and to list their versions.
"
+ "documentation":"AWS IoT Events monitors your equipment or device fleets for failures or changes in operation, and triggers actions when such events occur. You can use AWS IoT Events API operations to create, read, update, and delete inputs and detector models, and to list their versions.
"
}
From fb148837700aeb6f243d5f026ad45112fcc87fe9 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 16 Apr 2020 18:06:14 +0000
Subject: [PATCH 053/604] Amazon Relational Database Service Update: This
release adds support for Amazon RDS Proxy with PostgreSQL compatibility.
---
...azonRelationalDatabaseService-74ea430.json | 5 ++
.../codegen-resources/service-2.json | 73 ++++++++++++++++---
2 files changed, 67 insertions(+), 11 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonRelationalDatabaseService-74ea430.json
diff --git a/.changes/next-release/feature-AmazonRelationalDatabaseService-74ea430.json b/.changes/next-release/feature-AmazonRelationalDatabaseService-74ea430.json
new file mode 100644
index 000000000000..e30d4102ef52
--- /dev/null
+++ b/.changes/next-release/feature-AmazonRelationalDatabaseService-74ea430.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon Relational Database Service",
+ "description": "This release adds support for Amazon RDS Proxy with PostgreSQL compatibility."
+}
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 4954cca52e3e..c5875871d183 100755
--- a/services/rds/src/main/resources/codegen-resources/service-2.json
+++ b/services/rds/src/main/resources/codegen-resources/service-2.json
@@ -68,8 +68,10 @@
"input":{"shape":"AddTagsToResourceMessage"},
"errors":[
{"shape":"DBInstanceNotFoundFault"},
+ {"shape":"DBClusterNotFoundFault"},
{"shape":"DBSnapshotNotFoundFault"},
- {"shape":"DBClusterNotFoundFault"}
+ {"shape":"DBProxyNotFoundFault"},
+ {"shape":"DBProxyTargetGroupNotFoundFault"}
],
"documentation":"Adds metadata tags to an Amazon RDS resource. These tags can also be used with cost allocation reporting to track cost associated with Amazon RDS resources, or used in a Condition statement in an IAM policy for Amazon RDS.
For an overview on tagging Amazon RDS resources, see Tagging Amazon RDS Resources.
"
},
@@ -1515,7 +1517,9 @@
"errors":[
{"shape":"DBInstanceNotFoundFault"},
{"shape":"DBSnapshotNotFoundFault"},
- {"shape":"DBClusterNotFoundFault"}
+ {"shape":"DBClusterNotFoundFault"},
+ {"shape":"DBProxyNotFoundFault"},
+ {"shape":"DBProxyTargetGroupNotFoundFault"}
],
"documentation":"Lists all tags on an Amazon RDS resource.
For an overview on tagging an Amazon RDS resource, see Tagging Amazon RDS Resources in the Amazon RDS User Guide.
"
},
@@ -1994,7 +1998,9 @@
"errors":[
{"shape":"DBInstanceNotFoundFault"},
{"shape":"DBSnapshotNotFoundFault"},
- {"shape":"DBClusterNotFoundFault"}
+ {"shape":"DBClusterNotFoundFault"},
+ {"shape":"DBProxyNotFoundFault"},
+ {"shape":"DBProxyTargetGroupNotFoundFault"}
],
"documentation":"Removes metadata tags from an Amazon RDS resource.
For an overview on tagging an Amazon RDS resource, see Tagging Amazon RDS Resources in the Amazon RDS User Guide.
"
},
@@ -2874,7 +2880,7 @@
},
"InitQuery":{
"shape":"String",
- "documentation":" One or more SQL statements for the proxy to run when opening each new database connection. Typically used with SET
statements to make sure that each connection has identical settings such as time zone and character set. For multiple statements, use semicolons as the separator. You can also include multiple variables in a single SET
statement, such as SET x=1, y=2
.
Default: no initialization query
"
+ "documentation":" One or more SQL statements for the proxy to run when opening each new database connection. Typically used with SET
statements to make sure that each connection has identical settings such as time zone and character set. For multiple statements, use semicolons as the separator. You can also include multiple variables in a single SET
statement, such as SET x=1, y=2
.
InitQuery
is not currently supported for PostgreSQL.
Default: no initialization query
"
}
},
"documentation":" This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change.
Specifies the settings that control the size and behavior of the connection pool associated with a DBProxyTargetGroup
.
"
@@ -2900,7 +2906,7 @@
},
"InitQuery":{
"shape":"String",
- "documentation":" One or more SQL statements for the proxy to run when opening each new database connection. Typically used with SET
statements to make sure that each connection has identical settings such as time zone and character set. This setting is empty by default. For multiple statements, use semicolons as the separator. You can also include multiple variables in a single SET
statement, such as SET x=1, y=2
.
"
+ "documentation":" One or more SQL statements for the proxy to run when opening each new database connection. Typically used with SET
statements to make sure that each connection has identical settings such as time zone and character set. This setting is empty by default. For multiple statements, use semicolons as the separator. You can also include multiple variables in a single SET
statement, such as SET x=1, y=2
.
InitQuery
is not currently supported for PostgreSQL.
"
}
},
"documentation":" This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change.
Displays the settings that control the size and behavior of the connection pool associated with a DBProxyTarget
.
"
@@ -3722,7 +3728,7 @@
},
"EngineFamily":{
"shape":"EngineFamily",
- "documentation":"The kinds of databases that the proxy can connect to. This value determines which database network protocol the proxy recognizes when it interprets network traffic to and from the database. Currently, this value is always MYSQL
. The engine family applies to both RDS MySQL and Aurora MySQL.
"
+ "documentation":"The kinds of databases that the proxy can connect to. This value determines which database network protocol the proxy recognizes when it interprets network traffic to and from the database. The engine family applies to MySQL and PostgreSQL for both RDS and Aurora.
"
},
"Auth":{
"shape":"UserAuthConfigList",
@@ -5628,7 +5634,7 @@
},
"EngineFamily":{
"shape":"String",
- "documentation":"Currently, this value is always MYSQL
. The engine family applies to both RDS MySQL and Aurora MySQL.
"
+ "documentation":"The engine family applies to MySQL and PostgreSQL for both RDS and Aurora.
"
},
"VpcSecurityGroupIds":{
"shape":"StringList",
@@ -5721,7 +5727,10 @@
"incompatible-network",
"insufficient-resource-limits",
"creating",
- "deleting"
+ "deleting",
+ "suspended",
+ "suspending",
+ "reactivating"
]
},
"DBProxyTarget":{
@@ -5750,6 +5759,10 @@
"Type":{
"shape":"TargetType",
"documentation":"Specifies the kind of database, such as an RDS DB instance or an Aurora DB cluster, that the target represents.
"
+ },
+ "TargetHealth":{
+ "shape":"TargetHealth",
+ "documentation":"Information about the connection health of the RDS Proxy target.
"
}
},
"documentation":" This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change.
Contains the details for an RDS Proxy target. It represents an RDS DB instance or Aurora DB cluster that the proxy can connect to. One or more targets are associated with an RDS Proxy target group.
This data type is used as a response element in the DescribeDBProxyTargets
action.
"
@@ -7862,7 +7875,10 @@
},
"EngineFamily":{
"type":"string",
- "enum":["MYSQL"]
+ "enum":[
+ "MYSQL",
+ "POSTGRESQL"
+ ]
},
"EngineModeList":{
"type":"list",
@@ -8051,7 +8067,7 @@
},
"ExportOnly":{
"shape":"StringList",
- "documentation":"The data exported from the snapshot. Valid values are the following:
-
database
- Export all the data of the snapshot.
-
database.table [table-name]
- Export a table of the snapshot.
-
database.schema [schema-name]
- Export a database schema of the snapshot. This value isn't valid for RDS for MySQL, RDS for MariaDB, or Aurora MySQL.
-
database.schema.table [table-name]
- Export a table of the database schema. This value isn't valid for RDS for MySQL, RDS for MariaDB, or Aurora MySQL.
"
+ "documentation":"The data exported from the snapshot. Valid values are the following:
-
database
- Export all the data from a specified database.
-
database.table
table-name - Export a table of the snapshot. This format is valid only for RDS for MySQL, RDS for MariaDB, and Aurora MySQL.
-
database.schema
schema-name - Export a database schema of the snapshot. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.
-
database.schema.table
table-name - Export a table of the database schema. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.
"
},
"SnapshotTime":{
"shape":"TStamp",
@@ -12063,7 +12079,7 @@
},
"ExportOnly":{
"shape":"StringList",
- "documentation":"The data to be exported from the snapshot. If this parameter is not provided, all the snapshot data is exported. Valid values are the following:
-
database
- Export all the data of the snapshot.
-
database.table [table-name]
- Export a table of the snapshot.
-
database.schema [schema-name]
- Export a database schema of the snapshot. This value isn't valid for RDS for MySQL, RDS for MariaDB, or Aurora MySQL.
-
database.schema.table [table-name]
- Export a table of the database schema. This value isn't valid for RDS for MySQL, RDS for MariaDB, or Aurora MySQL.
"
+ "documentation":"The data to be exported from the snapshot. If this parameter is not provided, all the snapshot data is exported. Valid values are the following:
-
database
- Export all the data from a specified database.
-
database.table
table-name - Export a table of the snapshot. This format is valid only for RDS for MySQL, RDS for MariaDB, and Aurora MySQL.
-
database.schema
schema-name - Export a database schema of the snapshot. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.
-
database.schema.table
table-name - Export a table of the database schema. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.
"
}
}
},
@@ -12295,10 +12311,45 @@
"type":"list",
"member":{"shape":"DBProxyTargetGroup"}
},
+ "TargetHealth":{
+ "type":"structure",
+ "members":{
+ "State":{
+ "shape":"TargetState",
+ "documentation":"The current state of the connection health lifecycle for the RDS Proxy target. The following is a typical lifecycle example for the states of an RDS Proxy target:
registering
> unavailable
> available
> unavailable
> available
"
+ },
+ "Reason":{
+ "shape":"TargetHealthReason",
+ "documentation":"The reason for the current health State
of the RDS Proxy target.
"
+ },
+ "Description":{
+ "shape":"String",
+ "documentation":"A description of the health of the RDS Proxy target. If the State
is AVAILABLE
, a description is not included.
"
+ }
+ },
+ "documentation":" This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change.
Information about the connection health of an RDS Proxy target.
"
+ },
+ "TargetHealthReason":{
+ "type":"string",
+ "enum":[
+ "UNREACHABLE",
+ "CONNECTION_FAILED",
+ "AUTH_FAILURE",
+ "PENDING_PROXY_CAPACITY"
+ ]
+ },
"TargetList":{
"type":"list",
"member":{"shape":"DBProxyTarget"}
},
+ "TargetState":{
+ "type":"string",
+ "enum":[
+ "REGISTERING",
+ "AVAILABLE",
+ "UNAVAILABLE"
+ ]
+ },
"TargetType":{
"type":"string",
"enum":[
From f7a60b5f712e4433e04f9806a0b55c0a1c3ba5c4 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 16 Apr 2020 18:06:15 +0000
Subject: [PATCH 054/604] AWS MediaTailor Update: AWS Elemental MediaTailor SDK
now allows configuration of Avail Suppression.
---
.../feature-AWSMediaTailor-a9bd8f8.json | 5 +++
.../codegen-resources/service-2.json | 45 +++++++++++++++++--
2 files changed, 46 insertions(+), 4 deletions(-)
create mode 100644 .changes/next-release/feature-AWSMediaTailor-a9bd8f8.json
diff --git a/.changes/next-release/feature-AWSMediaTailor-a9bd8f8.json b/.changes/next-release/feature-AWSMediaTailor-a9bd8f8.json
new file mode 100644
index 000000000000..211032a81335
--- /dev/null
+++ b/.changes/next-release/feature-AWSMediaTailor-a9bd8f8.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "AWS MediaTailor",
+ "description": "AWS Elemental MediaTailor SDK now allows configuration of Avail Suppression."
+}
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 69d38d5e7f32..0346947df028 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,20 @@
}
},
"shapes": {
+ "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.
",
+ "members" : {
+ "Mode" : {
+ "documentation" : "Sets the mode for avail suppression, also known as ad suppression. By default, ad suppression is off and all ad breaks are filled by MediaTailor with ads or slate.",
+ "shape" : "Mode"
+ },
+ "Value" : {
+ "documentation" : "The avail suppression value is a live edge offset time in HH:MM:SS. MediaTailor won't fill ad breaks on or behind this time in the manifest lookback window. ",
+ "shape" : "__string"
+ }
+ }
+ },
"BadRequestException": {
"documentation": "Invalid request parameters.
",
"error": {
@@ -242,6 +256,10 @@
"documentation": "The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing, you can provide a static VAST URL. The maximum length is 25,000 characters.
",
"shape": "__string"
},
+ "AvailSuppression" : {
+ "shape" : "AvailSuppression",
+ "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.
"
+ },
"CdnConfiguration": {
"documentation": "The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.
",
"shape": "CdnConfiguration"
@@ -368,14 +386,25 @@
"MULTI_PERIOD"
],
"type": "string"
- },
+ },
+ "Mode": {
+ "enum": [
+ "OFF",
+ "BEHIND_LIVE_EDGE"
+ ],
+ "type": "string"
+ },
"PlaybackConfiguration": {
"documentation": "The AWSMediaTailor configuration.
",
"members": {
"AdDecisionServerUrl": {
"documentation": "The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing, you can provide a static VAST URL. The maximum length is 25,000 characters.
",
"shape": "__string"
- },
+ },
+ "AvailSuppression":{
+ "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.
",
+ "shape": "AvailSuppression"
+ },
"CdnConfiguration": {
"documentation": "The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.
",
"shape": "CdnConfiguration"
@@ -447,7 +476,11 @@
"AdDecisionServerUrl": {
"documentation": "The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing you can provide a static VAST URL. The maximum length is 25,000 characters.
",
"shape": "__string"
- },
+ },
+ "AvailSuppression" : {
+ "shape" : "AvailSuppression",
+ "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.
"
+ },
"CdnConfiguration": {
"documentation": "The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.
",
"shape": "CdnConfiguration"
@@ -493,7 +526,11 @@
"AdDecisionServerUrl": {
"documentation": "The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing, you can provide a static VAST URL. The maximum length is 25,000 characters.
",
"shape": "__string"
- },
+ },
+ "AvailSuppression" : {
+ "shape" : "AvailSuppression",
+ "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.
"
+ },
"CdnConfiguration": {
"documentation": "The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.
",
"shape": "CdnConfiguration"
From c1b1f51135765e64d96699f955f09612244c7973 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 16 Apr 2020 18:06:24 +0000
Subject: [PATCH 055/604] Amazon Elastic Compute Cloud Update: Amazon EC2 now
supports adding AWS resource tags for placement groups and key pairs, at
creation time. The CreatePlacementGroup API will now return placement group
information when created successfully. The DeleteKeyPair API now supports
deletion by resource ID.
---
...ure-AmazonElasticComputeCloud-44866a5.json | 5 ++
.../codegen-resources/service-2.json | 57 ++++++++++++++++---
2 files changed, 55 insertions(+), 7 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-44866a5.json
diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-44866a5.json b/.changes/next-release/feature-AmazonElasticComputeCloud-44866a5.json
new file mode 100644
index 000000000000..4cd09a899e4c
--- /dev/null
+++ b/.changes/next-release/feature-AmazonElasticComputeCloud-44866a5.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon Elastic Compute Cloud",
+ "description": "Amazon EC2 now supports adding AWS resource tags for placement groups and key pairs, at creation time. The CreatePlacementGroup API will now return placement group information when created successfully. The DeleteKeyPair API now supports deletion by resource ID."
+}
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 a0e3349c083e..a4ea7f6b183c 100755
--- a/services/ec2/src/main/resources/codegen-resources/service-2.json
+++ b/services/ec2/src/main/resources/codegen-resources/service-2.json
@@ -662,6 +662,7 @@
"requestUri":"/"
},
"input":{"shape":"CreatePlacementGroupRequest"},
+ "output":{"shape":"CreatePlacementGroupResult"},
"documentation":"Creates a placement group in which to launch instances. The strategy of the placement group determines how the instances are organized within the group.
A cluster
placement group is a logical grouping of instances within a single Availability Zone that benefit from low network latency, high network throughput. A spread
placement group places instances on distinct hardware. A partition
placement group places groups of instances in different partitions, where instances in one partition do not share the same hardware with instances in another partition.
For more information, see Placement Groups in the Amazon Elastic Compute Cloud User Guide.
"
},
"CreateReservedInstancesListing":{
@@ -1419,7 +1420,7 @@
},
"input":{"shape":"DeregisterInstanceEventNotificationAttributesRequest"},
"output":{"shape":"DeregisterInstanceEventNotificationAttributesResult"},
- "documentation":"Deregisters tag keys to prevent tags that have the specified tag keys from being included in scheduled event notifications for resources in the Region.
For more information, see Customizing Scheduled Event Notifications.
"
+ "documentation":"Deregisters tag keys to prevent tags that have the specified tag keys from being included in scheduled event notifications for resources in the Region.
"
},
"DeregisterTransitGatewayMulticastGroupMembers":{
"name":"DeregisterTransitGatewayMulticastGroupMembers",
@@ -3551,7 +3552,7 @@
},
"input":{"shape":"RegisterInstanceEventNotificationAttributesRequest"},
"output":{"shape":"RegisterInstanceEventNotificationAttributesResult"},
- "documentation":"Registers a set of tag keys to include in scheduled event notifications for your resources. For more information, see Customizing Scheduled Event Notifications.
To remove tags, use .
"
+ "documentation":"Registers a set of tag keys to include in scheduled event notifications for your resources.
To remove tags, use .
"
},
"RegisterTransitGatewayMulticastGroupMembers":{
"name":"RegisterTransitGatewayMulticastGroupMembers",
@@ -8190,6 +8191,11 @@
"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
.
",
"locationName":"dryRun"
+ },
+ "TagSpecifications":{
+ "shape":"TagSpecificationList",
+ "documentation":"The tags to apply to the new key pair.
",
+ "locationName":"TagSpecification"
}
}
},
@@ -8611,6 +8617,20 @@
"PartitionCount":{
"shape":"Integer",
"documentation":"The number of partitions. Valid only when Strategy is set to partition
.
"
+ },
+ "TagSpecifications":{
+ "shape":"TagSpecificationList",
+ "documentation":"The tags to apply to the new placement group.
",
+ "locationName":"TagSpecification"
+ }
+ }
+ },
+ "CreatePlacementGroupResult":{
+ "type":"structure",
+ "members":{
+ "PlacementGroup":{
+ "shape":"PlacementGroup",
+ "locationName":"placementGroup"
}
}
},
@@ -10290,12 +10310,15 @@
},
"DeleteKeyPairRequest":{
"type":"structure",
- "required":["KeyName"],
"members":{
"KeyName":{
"shape":"KeyPairName",
"documentation":"The name of the key pair.
"
},
+ "KeyPairId":{
+ "shape":"KeyPairId",
+ "documentation":"The ID of the key pair.
"
+ },
"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
.
",
@@ -12821,7 +12844,7 @@
},
"Filters":{
"shape":"FilterList",
- "documentation":"The filters.
",
+ "documentation":"The filters.
",
"locationName":"Filter"
},
"MaxResults":{
@@ -13400,7 +13423,7 @@
"members":{
"Filters":{
"shape":"FilterList",
- "documentation":"The filters.
",
+ "documentation":"The filters.
-
key-pair-id
- The ID of the key pair.
-
fingerprint
- The fingerprint of the key pair.
-
key-name
- The name of the key pair.
-
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.
-
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.
",
"locationName":"Filter"
},
"KeyNames":{
@@ -14089,7 +14112,7 @@
"members":{
"Filters":{
"shape":"FilterList",
- "documentation":"The filters.
-
group-name
- The name of the placement group.
-
state
- The state of the placement group (pending
| available
| deleting
| deleted
).
-
strategy
- The strategy of the placement group (cluster
| spread
| partition
).
",
+ "documentation":"The filters.
-
group-name
- The name of the placement group.
-
state
- The state of the placement group (pending
| available
| deleting
| deleted
).
-
strategy
- The strategy of the placement group (cluster
| spread
| partition
).
-
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.
",
"locationName":"Filter"
},
"DryRun":{
@@ -15217,7 +15240,7 @@
},
"Filters":{
"shape":"FilterList",
- "documentation":"The filters.
-
key
- The tag key.
-
resource-id
- The ID of the resource.
-
resource-type
- The resource type (customer-gateway
| dedicated-host
| dhcp-options
| elastic-ip
| fleet
| fpga-image
| image
| instance
| host-reservation
| internet-gateway
| launch-template
| natgateway
| network-acl
| network-interface
| placement-group
| reserved-instances
| route-table
| security-group
| snapshot
| spot-instances-request
| subnet
| volume
| vpc
| vpc-endpoint
| vpc-endpoint-service
| vpc-peering-connection
| vpn-connection
| vpn-gateway
).
-
tag
:<key> - The key/value combination of the tag. For example, specify \"tag:Owner\" for the filter name and \"TeamA\" for the filter value to find resources with the tag \"Owner=TeamA\".
-
value
- The tag value.
",
+ "documentation":"The filters.
-
key
- The tag key.
-
resource-id
- The ID of the resource.
-
resource-type
- The resource type (customer-gateway
| dedicated-host
| dhcp-options
| elastic-ip
| fleet
| fpga-image
| host-reservation
| image
| instance
| internet-gateway
| key-pair
| launch-template
| natgateway
| network-acl
| network-interface
| placement-group
| reserved-instances
| route-table
| security-group
| snapshot
| spot-instances-request
| subnet
| volume
| vpc
| vpc-endpoint
| vpc-endpoint-service
| vpc-peering-connection
| vpn-connection
| vpn-gateway
).
-
tag
:<key> - The key/value combination of the tag. For example, specify \"tag:Owner\" for the filter name and \"TeamA\" for the filter value to find resources with the tag \"Owner=TeamA\".
-
value
- The tag value.
",
"locationName":"Filter"
},
"MaxResults":{
@@ -21162,6 +21185,11 @@
"shape":"Blob",
"documentation":"The public key. For API calls, the text must be base64-encoded. For command line tools, base64 encoding is performed for you.
",
"locationName":"publicKeyMaterial"
+ },
+ "TagSpecifications":{
+ "shape":"TagSpecificationList",
+ "documentation":"The tags to apply to the imported key pair.
",
+ "locationName":"TagSpecification"
}
}
},
@@ -21177,6 +21205,16 @@
"shape":"String",
"documentation":"The key pair name you provided.
",
"locationName":"keyName"
+ },
+ "KeyPairId":{
+ "shape":"String",
+ "documentation":"The ID of the resulting key pair.
",
+ "locationName":"keyPairId"
+ },
+ "Tags":{
+ "shape":"TagList",
+ "documentation":"The tags applied to the imported key pair.
",
+ "locationName":"tagSet"
}
}
},
@@ -23384,6 +23422,11 @@
"shape":"String",
"documentation":"The ID of the key pair.
",
"locationName":"keyPairId"
+ },
+ "Tags":{
+ "shape":"TagList",
+ "documentation":"Any tags applied to the key pair.
",
+ "locationName":"tagSet"
}
},
"documentation":"Describes a key pair.
"
From 04fc538134b3d679b150320d1169968ecc6d1640 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 16 Apr 2020 18:06:24 +0000
Subject: [PATCH 056/604] Amazon Import/Export Snowball Update: An update to
the Snowball Edge Storage Optimized device has been launched. Like the
previous version, it has 80 TB of capacity for data transfer. Now it has 40
vCPUs, 80 GiB, and a 1 TiB SATA SSD of memory for EC2 compatible compute. The
80 TB of capacity can also be used for EBS-like volumes for AMIs.
---
.../feature-AmazonImportExportSnowball-e308cf7.json | 5 +++++
.../src/main/resources/codegen-resources/service-2.json | 4 +++-
2 files changed, 8 insertions(+), 1 deletion(-)
create mode 100644 .changes/next-release/feature-AmazonImportExportSnowball-e308cf7.json
diff --git a/.changes/next-release/feature-AmazonImportExportSnowball-e308cf7.json b/.changes/next-release/feature-AmazonImportExportSnowball-e308cf7.json
new file mode 100644
index 000000000000..ccb09d0d2a73
--- /dev/null
+++ b/.changes/next-release/feature-AmazonImportExportSnowball-e308cf7.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon Import/Export Snowball",
+ "description": "An update to the Snowball Edge Storage Optimized device has been launched. Like the previous version, it has 80 TB of capacity for data transfer. Now it has 40 vCPUs, 80 GiB, and a 1 TiB SATA SSD of memory for EC2 compatible compute. The 80 TB of capacity can also be used for EBS-like volumes for AMIs."
+}
diff --git a/services/snowball/src/main/resources/codegen-resources/service-2.json b/services/snowball/src/main/resources/codegen-resources/service-2.json
index 1063cd63014c..5b68ce4e2d1e 100644
--- a/services/snowball/src/main/resources/codegen-resources/service-2.json
+++ b/services/snowball/src/main/resources/codegen-resources/service-2.json
@@ -1404,6 +1404,7 @@
"T80",
"T100",
"T42",
+ "T98",
"NoPreference"
]
},
@@ -1413,7 +1414,8 @@
"STANDARD",
"EDGE",
"EDGE_C",
- "EDGE_CG"
+ "EDGE_CG",
+ "EDGE_S"
]
},
"SnsTopicARN":{
From 7eca9191d2b080f14b5eb377880bc10c52561335 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 16 Apr 2020 18:06:25 +0000
Subject: [PATCH 057/604] Amazon Augmented AI Runtime Update: This release
updates Amazon Augmented AI ListHumanLoops and StartHumanLoop APIs.
---
...ture-AmazonAugmentedAIRuntime-5c586bf.json | 5 ++
.../codegen-resources/service-2.json | 53 ++++++++++---------
2 files changed, 32 insertions(+), 26 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonAugmentedAIRuntime-5c586bf.json
diff --git a/.changes/next-release/feature-AmazonAugmentedAIRuntime-5c586bf.json b/.changes/next-release/feature-AmazonAugmentedAIRuntime-5c586bf.json
new file mode 100644
index 000000000000..62b297a60ae9
--- /dev/null
+++ b/.changes/next-release/feature-AmazonAugmentedAIRuntime-5c586bf.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon Augmented AI Runtime",
+ "description": "This release updates Amazon Augmented AI ListHumanLoops and StartHumanLoop APIs."
+}
diff --git a/services/sagemakera2iruntime/src/main/resources/codegen-resources/service-2.json b/services/sagemakera2iruntime/src/main/resources/codegen-resources/service-2.json
index 701d101c785e..bc9ad98eb866 100644
--- a/services/sagemakera2iruntime/src/main/resources/codegen-resources/service-2.json
+++ b/services/sagemakera2iruntime/src/main/resources/codegen-resources/service-2.json
@@ -54,6 +54,7 @@
"output":{"shape":"ListHumanLoopsResponse"},
"errors":[
{"shape":"ValidationException"},
+ {"shape":"ResourceNotFoundException"},
{"shape":"ThrottlingException"},
{"shape":"InternalServerException"}
],
@@ -121,7 +122,7 @@
"members":{
"HumanLoopName":{
"shape":"HumanLoopName",
- "documentation":"The name of the human loop you want to delete.
",
+ "documentation":"The name of the human loop that you want to delete.
",
"location":"uri",
"locationName":"HumanLoopName"
}
@@ -138,7 +139,7 @@
"members":{
"HumanLoopName":{
"shape":"HumanLoopName",
- "documentation":"The unique name of the human loop.
",
+ "documentation":"The name of the human loop that you want information about.
",
"location":"uri",
"locationName":"HumanLoopName"
}
@@ -160,19 +161,19 @@
},
"FailureReason":{
"shape":"String",
- "documentation":"The reason why a human loop has failed. The failure reason is returned when the human loop status is Failed
.
"
+ "documentation":"The reason why a human loop failed. The failure reason is returned when the status of the human loop is Failed
.
"
},
"FailureCode":{
"shape":"String",
- "documentation":"A failure code denoting a specific type of failure.
"
+ "documentation":"A failure code that identifies the type of failure.
"
},
"HumanLoopStatus":{
"shape":"HumanLoopStatus",
- "documentation":"The status of the human loop. Valid values:
"
+ "documentation":"The status of the human loop.
"
},
"HumanLoopName":{
"shape":"HumanLoopName",
- "documentation":"The name of the human loop.
"
+ "documentation":"The name of the human loop. The name must be lowercase, unique within the Region in your account, and can have up to 63 characters. Valid characters: a-z, 0-9, and - (hyphen).
"
},
"HumanLoopArn":{
"shape":"HumanLoopArn",
@@ -184,7 +185,7 @@
},
"HumanLoopOutput":{
"shape":"HumanLoopOutput",
- "documentation":"An object containing information about the output of the human loop.
"
+ "documentation":"An object that contains information about the output of the human loop.
"
}
}
},
@@ -264,7 +265,7 @@
},
"HumanLoopStatus":{
"shape":"HumanLoopStatus",
- "documentation":"The status of the human loop. Valid values:
"
+ "documentation":"The status of the human loop.
"
},
"CreationTime":{
"shape":"Timestamp",
@@ -272,25 +273,25 @@
},
"FailureReason":{
"shape":"FailureReason",
- "documentation":"The reason why the human loop failed. A failure reason is returned only when the status of the human loop is Failed
.
"
+ "documentation":"The reason why the human loop failed. A failure reason is returned when the status of the human loop is Failed
.
"
},
"FlowDefinitionArn":{
"shape":"FlowDefinitionArn",
- "documentation":"The Amazon Resource Name (ARN) of the flow definition.
"
+ "documentation":"The Amazon Resource Name (ARN) of the flow definition used to configure the human loop.
"
}
},
"documentation":"Summary information about the human loop.
"
},
"InputContent":{
"type":"string",
- "max":4194304
+ "max":3145728
},
"InternalServerException":{
"type":"structure",
"members":{
"Message":{"shape":"FailureReason"}
},
- "documentation":"Your request could not be processed.
",
+ "documentation":"We couldn't process your request because of an issue with the server. Try again later.
",
"error":{"httpStatusCode":500},
"exception":true
},
@@ -318,19 +319,19 @@
},
"SortOrder":{
"shape":"SortOrder",
- "documentation":"An optional value that specifies whether you want the results sorted in Ascending
or Descending
order.
",
+ "documentation":"Optional. The order for displaying results. Valid values: Ascending
and Descending
.
",
"location":"querystring",
"locationName":"SortOrder"
},
"NextToken":{
"shape":"NextToken",
- "documentation":"A token to resume pagination.
",
+ "documentation":"A token to display the next page of results.
",
"location":"querystring",
"locationName":"NextToken"
},
"MaxResults":{
"shape":"MaxResults",
- "documentation":"The total number of items to return. If the total number of available items is more than the value specified in MaxResults
, then a NextToken
will be provided in the output that you can use to resume pagination.
",
+ "documentation":"The total number of items to return. If the total number of available items is more than the value specified in MaxResults
, then a NextToken
is returned in the output. You can use this token to display the next page of results.
",
"box":true,
"location":"querystring",
"locationName":"MaxResults"
@@ -343,11 +344,11 @@
"members":{
"HumanLoopSummaries":{
"shape":"HumanLoopSummaries",
- "documentation":"An array of objects containing information about the human loops.
"
+ "documentation":"An array of objects that contain information about the human loops.
"
},
"NextToken":{
"shape":"NextToken",
- "documentation":"A token to resume pagination.
"
+ "documentation":"A token to display the next page of results.
"
}
}
},
@@ -366,7 +367,7 @@
"members":{
"Message":{"shape":"FailureReason"}
},
- "documentation":"We were unable to find the requested resource.
",
+ "documentation":"We couldn't find the requested resource.
",
"error":{"httpStatusCode":404},
"exception":true
},
@@ -375,7 +376,7 @@
"members":{
"Message":{"shape":"FailureReason"}
},
- "documentation":"You have exceeded your service quota. To perform the requested action, remove some of the relevant resources, or request a service quota increase.
",
+ "documentation":"You exceeded your service quota. Delete some resources or request an increase in your service quota.
",
"error":{"httpStatusCode":402},
"exception":true
},
@@ -400,15 +401,15 @@
},
"FlowDefinitionArn":{
"shape":"FlowDefinitionArn",
- "documentation":"The Amazon Resource Name (ARN) of the flow definition.
"
+ "documentation":"The Amazon Resource Name (ARN) of the flow definition associated with this human loop.
"
},
"HumanLoopInput":{
"shape":"HumanLoopInput",
- "documentation":"An object containing information about the human loop.
"
+ "documentation":"An object that contains information about the human loop.
"
},
"DataAttributes":{
"shape":"HumanLoopDataAttributes",
- "documentation":"Attributes of the data specified by the customer.
"
+ "documentation":"Attributes of the specified data. Use DataAttributes
to specify if your data is free of personally identifiable information and/or free of adult content.
"
}
}
},
@@ -427,7 +428,7 @@
"members":{
"HumanLoopName":{
"shape":"HumanLoopName",
- "documentation":"The name of the human loop you want to stop.
"
+ "documentation":"The name of the human loop that you want to stop.
"
}
}
},
@@ -442,7 +443,7 @@
"members":{
"Message":{"shape":"FailureReason"}
},
- "documentation":"Your request has exceeded the allowed amount of requests.
",
+ "documentation":"You exceeded the maximum number of requests.
",
"error":{"httpStatusCode":429},
"exception":true
},
@@ -452,10 +453,10 @@
"members":{
"Message":{"shape":"FailureReason"}
},
- "documentation":"Your request was not valid. Check the syntax and try again.
",
+ "documentation":"The request isn't valid. Check the syntax and try again.
",
"error":{"httpStatusCode":400},
"exception":true
}
},
- "documentation":"Amazon Augmented AI (Augmented AI) (Preview) is a service that adds human judgment to any machine learning application. Human reviewers can take over when an AI application can't evaluate data with a high degree of confidence.
From fraudulent bank transaction identification to document processing to image analysis, machine learning models can be trained to make decisions as well as or better than a human. Nevertheless, some decisions require contextual interpretation, such as when you need to decide whether an image is appropriate for a given audience. Content moderation guidelines are nuanced and highly dependent on context, and they vary between countries. When trying to apply AI in these situations, you can be forced to choose between \"ML only\" systems with unacceptably high error rates or \"human only\" systems that are expensive and difficult to scale, and that slow down decision making.
This API reference includes information about API actions and data types you can use to interact with Augmented AI programmatically.
You can create a flow definition against the Augmented AI API. Provide the Amazon Resource Name (ARN) of a flow definition to integrate AI service APIs, such as Textract.AnalyzeDocument
and Rekognition.DetectModerationLabels
. These AI services, in turn, invoke the StartHumanLoop API, which evaluates conditions under which humans will be invoked. If humans are required, Augmented AI creates a human loop. Results of human work are available asynchronously in Amazon Simple Storage Service (Amazon S3). You can use Amazon CloudWatch Events to detect human work results.
You can find additional Augmented AI API documentation in the following reference guides: Amazon Rekognition, Amazon SageMaker, and Amazon Textract.
"
+ "documentation":" Amazon Augmented AI is in preview release and is subject to change. We do not recommend using this product in production environments.
Amazon Augmented AI (Amazon A2I) adds the benefit of human judgment to any machine learning application. When an AI application can't evaluate data with a high degree of confidence, human reviewers can take over. This human review is called a human review workflow. To create and start a human review workflow, you need three resources: a worker task template, a flow definition, and a human loop.
For information about these resources and prerequisites for using Amazon A2I, see Get Started with Amazon Augmented AI in the Amazon SageMaker Developer Guide.
This API reference includes information about API actions and data types that you can use to interact with Amazon A2I programmatically. Use this guide to:
-
Start a human loop with the StartHumanLoop
operation when using Amazon A2I with a custom task type. To learn more about the difference between custom and built-in task types, see Use Task Types . To learn how to start a human loop using this API, see Create and Start a Human Loop for a Custom Task Type in the Amazon SageMaker Developer Guide.
-
Manage your human loops. You can list all human loops that you have created, describe individual human loops, and stop and delete human loops. To learn more, see Monitor and Manage Your Human Loop in the Amazon SageMaker Developer Guide.
Amazon A2I integrates APIs from various AWS services to create and start human review workflows for those services. To learn how Amazon A2I uses these APIs, see Use APIs in Amazon A2I in the Amazon SageMaker Developer Guide.
"
}
From 14d48902a989c28e019c17e485f5311f94a4c36b Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 16 Apr 2020 18:06:17 +0000
Subject: [PATCH 058/604] EC2 Image Builder Update: This release includes
support for additional OS Versions within EC2 Image Builder.
---
.../feature-EC2ImageBuilder-4420ca8.json | 5 +
.../codegen-resources/service-2.json | 466 ++++++++++--------
2 files changed, 256 insertions(+), 215 deletions(-)
create mode 100644 .changes/next-release/feature-EC2ImageBuilder-4420ca8.json
diff --git a/.changes/next-release/feature-EC2ImageBuilder-4420ca8.json b/.changes/next-release/feature-EC2ImageBuilder-4420ca8.json
new file mode 100644
index 000000000000..10982da72639
--- /dev/null
+++ b/.changes/next-release/feature-EC2ImageBuilder-4420ca8.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "EC2 Image Builder",
+ "description": "This release includes support for additional OS Versions within EC2 Image Builder."
+}
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 ea6a897302f2..63799c47f996 100644
--- a/services/imagebuilder/src/main/resources/codegen-resources/service-2.json
+++ b/services/imagebuilder/src/main/resources/codegen-resources/service-2.json
@@ -664,7 +664,7 @@
{"shape":"ForbiddenException"},
{"shape":"CallRateLimitExceededException"}
],
- "documentation":" Applies a policy to a component.
"
+ "documentation":" Applies a policy to a component. We recommend that you call the RAM API CreateResourceShare to share resources. If you call the Image Builder API PutComponentPolicy
, you must also call the RAM API PromoteResourceShareCreatedFromPolicy in order for the resource to be visible to all principals with whom the resource is shared.
"
},
"PutImagePolicy":{
"name":"PutImagePolicy",
@@ -684,7 +684,7 @@
{"shape":"ForbiddenException"},
{"shape":"CallRateLimitExceededException"}
],
- "documentation":" Applies a policy to an image.
"
+ "documentation":"Applies a policy to an image. We recommend that you call the RAM API CreateResourceShare to share resources. If you call the Image Builder API PutImagePolicy
, you must also call the RAM API PromoteResourceShareCreatedFromPolicy in order for the resource to be visible to all principals with whom the resource is shared.
"
},
"PutImageRecipePolicy":{
"name":"PutImageRecipePolicy",
@@ -704,7 +704,7 @@
{"shape":"ForbiddenException"},
{"shape":"CallRateLimitExceededException"}
],
- "documentation":" Applies a policy to an image recipe.
"
+ "documentation":" Applies a policy to an image recipe. We recommend that you call the RAM API CreateResourceShare to share resources. If you call the Image Builder API PutImageRecipePolicy
, you must also call the RAM API PromoteResourceShareCreatedFromPolicy in order for the resource to be visible to all principals with whom the resource is shared.
"
},
"StartImagePipelineExecution":{
"name":"StartImagePipelineExecution",
@@ -829,19 +829,19 @@
"members":{
"region":{
"shape":"NonEmptyString",
- "documentation":" The AWS Region of the EC2 AMI.
"
+ "documentation":"The AWS Region of the EC2 AMI.
"
},
"image":{
"shape":"NonEmptyString",
- "documentation":" The AMI ID of the EC2 AMI.
"
+ "documentation":"The AMI ID of the EC2 AMI.
"
},
"name":{
"shape":"NonEmptyString",
- "documentation":" The name of the EC2 AMI.
"
+ "documentation":"The name of the EC2 AMI.
"
},
"description":{
"shape":"NonEmptyString",
- "documentation":" The description of the EC2 AMI.
"
+ "documentation":"The description of the EC2 AMI.
"
},
"state":{"shape":"ImageState"}
},
@@ -852,15 +852,15 @@
"members":{
"name":{
"shape":"AmiNameString",
- "documentation":" The name of the distribution configuration.
"
+ "documentation":"The name of the distribution configuration.
"
},
"description":{
"shape":"NonEmptyString",
- "documentation":" The description of the distribution configuration.
"
+ "documentation":"The description of the distribution configuration.
"
},
"amiTags":{
"shape":"TagMap",
- "documentation":" The tags to apply to AMIs distributed to this Region.
"
+ "documentation":"The tags to apply to AMIs distributed to this Region.
"
},
"launchPermission":{
"shape":"LaunchPermissionConfiguration",
@@ -1010,7 +1010,7 @@
"members":{
"componentArn":{
"shape":"ComponentVersionArnOrBuildVersionArn",
- "documentation":" The Amazon Resource Name (ARN) of the component.
"
+ "documentation":"The Amazon Resource Name (ARN) of the component.
"
}
},
"documentation":" Configuration details of the component.
"
@@ -1282,6 +1282,10 @@
"shape":"ImageTestsConfiguration",
"documentation":" The image test configuration of the image pipeline.
"
},
+ "enhancedImageMetadataEnabled":{
+ "shape":"NullableBoolean",
+ "documentation":" Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.
"
+ },
"schedule":{
"shape":"Schedule",
"documentation":" The schedule of the image pipeline.
"
@@ -1338,19 +1342,19 @@
},
"semanticVersion":{
"shape":"VersionNumber",
- "documentation":" The semantic version of the image recipe.
"
+ "documentation":"The semantic version of the image recipe.
"
},
"components":{
"shape":"ComponentConfigurationList",
- "documentation":" The components of the image recipe.
"
+ "documentation":"The components of the image recipe.
"
},
"parentImage":{
"shape":"NonEmptyString",
- "documentation":" The parent image of the image recipe.
"
+ "documentation":"The parent image of the image recipe. The value of the string can be the ARN of the parent image or an AMI ID. The format for the ARN follows this example: arn:aws:imagebuilder:us-west-2:aws:image/windows-server-2016-english-full-base-x86/2019.x.x
. The ARN ends with /20xx.x.x
, which communicates to EC2 Image Builder that you want to use the latest AMI created in 20xx (year). You can provide the specific version that you want to use, or you can use a wildcard in all of the fields. If you enter an AMI ID for the string value, you must have access to the AMI, and the AMI must be in the same Region in which you are using Image Builder.
"
},
"blockDeviceMappings":{
"shape":"InstanceBlockDeviceMappings",
- "documentation":" The block device mappings of the image recipe.
"
+ "documentation":"The block device mappings of the image recipe.
"
},
"tags":{
"shape":"TagMap",
@@ -1358,7 +1362,7 @@
},
"clientToken":{
"shape":"ClientToken",
- "documentation":" The idempotency token used to make this request idempotent.
",
+ "documentation":"The idempotency token used to make this request idempotent.
",
"idempotencyToken":true
}
}
@@ -1368,15 +1372,15 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"clientToken":{
"shape":"ClientToken",
- "documentation":" The idempotency token used to make this request idempotent.
"
+ "documentation":"The idempotency token used to make this request idempotent.
"
},
"imageRecipeArn":{
"shape":"ImageRecipeArn",
- "documentation":" The Amazon Resource Name (ARN) of the image recipe that was created by this request.
"
+ "documentation":"The Amazon Resource Name (ARN) of the image recipe that was created by this request.
"
}
}
},
@@ -1404,6 +1408,10 @@
"shape":"ImageTestsConfiguration",
"documentation":" The image tests configuration of the image.
"
},
+ "enhancedImageMetadataEnabled":{
+ "shape":"NullableBoolean",
+ "documentation":" Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.
"
+ },
"tags":{
"shape":"TagMap",
"documentation":" The tags of the image.
"
@@ -1442,51 +1450,51 @@
"members":{
"name":{
"shape":"ResourceName",
- "documentation":" The name of the infrastructure configuration.
"
+ "documentation":"The name of the infrastructure configuration.
"
},
"description":{
"shape":"NonEmptyString",
- "documentation":" The description of the infrastructure configuration.
"
+ "documentation":"The description of the infrastructure configuration.
"
},
"instanceTypes":{
"shape":"InstanceTypeList",
- "documentation":" The instance types of the infrastructure configuration. You can specify one or more instance types to use for this build. The service will pick one of these instance types based on availability.
"
+ "documentation":"The instance types of the infrastructure configuration. You can specify one or more instance types to use for this build. The service will pick one of these instance types based on availability.
"
},
"instanceProfileName":{
"shape":"NonEmptyString",
- "documentation":" The instance profile to associate with the instance used to customize your EC2 AMI.
"
+ "documentation":"The instance profile to associate with the instance used to customize your EC2 AMI.
"
},
"securityGroupIds":{
"shape":"SecurityGroupIds",
- "documentation":" The security group IDs to associate with the instance used to customize your EC2 AMI.
"
+ "documentation":"The security group IDs to associate with the instance used to customize your EC2 AMI.
"
},
"subnetId":{
"shape":"NonEmptyString",
- "documentation":" The subnet ID in which to place the instance used to customize your EC2 AMI.
"
+ "documentation":"The subnet ID in which to place the instance used to customize your EC2 AMI.
"
},
"logging":{
"shape":"Logging",
- "documentation":" The logging configuration of the infrastructure configuration.
"
+ "documentation":"The logging configuration of the infrastructure configuration.
"
},
"keyPair":{
"shape":"NonEmptyString",
- "documentation":" The key pair of the infrastructure configuration. This can be used to log on to and debug the instance used to create your image.
"
+ "documentation":"The key pair of the infrastructure configuration. This can be used to log on to and debug the instance used to create your image.
"
},
"terminateInstanceOnFailure":{
"shape":"NullableBoolean",
- "documentation":" The terminate instance on failure setting of the infrastructure configuration. Set to false if you want Image Builder to retain the instance used to configure your AMI if the build or test phase of your workflow fails.
"
+ "documentation":"The terminate instance on failure setting of the infrastructure configuration. Set to false if you want Image Builder to retain the instance used to configure your AMI if the build or test phase of your workflow fails.
"
},
"snsTopicArn":{
"shape":"SnsTopicArn",
- "documentation":" The SNS topic on which to send image build events.
"
+ "documentation":"The SNS topic on which to send image build events.
"
},
"tags":{
"shape":"TagMap",
- "documentation":" The tags of the infrastructure configuration.
"
+ "documentation":"The tags of the infrastructure configuration.
"
},
"clientToken":{
"shape":"ClientToken",
- "documentation":" The idempotency token used to make this request idempotent.
",
+ "documentation":"The idempotency token used to make this request idempotent.
",
"idempotencyToken":true
}
}
@@ -1496,15 +1504,15 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"clientToken":{
"shape":"ClientToken",
- "documentation":" The idempotency token used to make this request idempotent.
"
+ "documentation":"The idempotency token used to make this request idempotent.
"
},
"infrastructureConfigurationArn":{
"shape":"InfrastructureConfigurationArn",
- "documentation":" The Amazon Resource Name (ARN) of the infrastructure configuration that was created by this request.
"
+ "documentation":"The Amazon Resource Name (ARN) of the infrastructure configuration that was created by this request.
"
}
}
},
@@ -1515,7 +1523,7 @@
"members":{
"componentBuildVersionArn":{
"shape":"ComponentBuildVersionArn",
- "documentation":" The Amazon Resource Name (ARN) of the component build version to delete.
",
+ "documentation":"The Amazon Resource Name (ARN) of the component build version to delete.
",
"location":"querystring",
"locationName":"componentBuildVersionArn"
}
@@ -1526,11 +1534,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"componentBuildVersionArn":{
"shape":"ComponentBuildVersionArn",
- "documentation":" The Amazon Resource Name (ARN) of the component build version that was deleted.
"
+ "documentation":"The Amazon Resource Name (ARN) of the component build version that was deleted.
"
}
}
},
@@ -1540,7 +1548,7 @@
"members":{
"distributionConfigurationArn":{
"shape":"DistributionConfigurationArn",
- "documentation":" The Amazon Resource Name (ARN) of the distribution configuration to delete.
",
+ "documentation":"The Amazon Resource Name (ARN) of the distribution configuration to delete.
",
"location":"querystring",
"locationName":"distributionConfigurationArn"
}
@@ -1551,11 +1559,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"distributionConfigurationArn":{
"shape":"DistributionConfigurationArn",
- "documentation":" The Amazon Resource Name (ARN) of the distribution configuration that was deleted.
"
+ "documentation":"The Amazon Resource Name (ARN) of the distribution configuration that was deleted.
"
}
}
},
@@ -1565,7 +1573,7 @@
"members":{
"imagePipelineArn":{
"shape":"ImagePipelineArn",
- "documentation":" The Amazon Resource Name (ARN) of the image pipeline to delete.
",
+ "documentation":"The Amazon Resource Name (ARN) of the image pipeline to delete.
",
"location":"querystring",
"locationName":"imagePipelineArn"
}
@@ -1576,11 +1584,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"imagePipelineArn":{
"shape":"ImagePipelineArn",
- "documentation":" The Amazon Resource Name (ARN) of the image pipeline that was deleted.
"
+ "documentation":"The Amazon Resource Name (ARN) of the image pipeline that was deleted.
"
}
}
},
@@ -1590,7 +1598,7 @@
"members":{
"imageRecipeArn":{
"shape":"ImageRecipeArn",
- "documentation":" The Amazon Resource Name (ARN) of the image recipe to delete.
",
+ "documentation":"The Amazon Resource Name (ARN) of the image recipe to delete.
",
"location":"querystring",
"locationName":"imageRecipeArn"
}
@@ -1601,11 +1609,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"imageRecipeArn":{
"shape":"ImageRecipeArn",
- "documentation":" The Amazon Resource Name (ARN) of the image recipe that was deleted.
"
+ "documentation":"The Amazon Resource Name (ARN) of the image recipe that was deleted.
"
}
}
},
@@ -1615,7 +1623,7 @@
"members":{
"imageBuildVersionArn":{
"shape":"ImageBuildVersionArn",
- "documentation":" The Amazon Resource Name (ARN) of the image to delete.
",
+ "documentation":"The Amazon Resource Name (ARN) of the image to delete.
",
"location":"querystring",
"locationName":"imageBuildVersionArn"
}
@@ -1626,11 +1634,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"imageBuildVersionArn":{
"shape":"ImageBuildVersionArn",
- "documentation":" The Amazon Resource Name (ARN) of the image that was deleted.
"
+ "documentation":"The Amazon Resource Name (ARN) of the image that was deleted.
"
}
}
},
@@ -1640,7 +1648,7 @@
"members":{
"infrastructureConfigurationArn":{
"shape":"InfrastructureConfigurationArn",
- "documentation":" The Amazon Resource Name (ARN) of the infrastructure configuration to delete.
",
+ "documentation":"The Amazon Resource Name (ARN) of the infrastructure configuration to delete.
",
"location":"querystring",
"locationName":"infrastructureConfigurationArn"
}
@@ -1651,11 +1659,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"infrastructureConfigurationArn":{
"shape":"InfrastructureConfigurationArn",
- "documentation":" The Amazon Resource Name (ARN) of the infrastructure configuration that was deleted.
"
+ "documentation":"The Amazon Resource Name (ARN) of the infrastructure configuration that was deleted.
"
}
}
},
@@ -1665,15 +1673,15 @@
"members":{
"region":{
"shape":"NonEmptyString",
- "documentation":" The target Region.
"
+ "documentation":"The target Region.
"
},
"amiDistributionConfiguration":{
"shape":"AmiDistributionConfiguration",
- "documentation":" The specific AMI settings (for example, launch permissions, AMI tags).
"
+ "documentation":"The specific AMI settings (for example, launch permissions, AMI tags).
"
},
"licenseConfigurationArns":{
"shape":"ArnList",
- "documentation":" The License Manager Configuration to associate with the AMI in the specified Region.
"
+ "documentation":"The License Manager Configuration to associate with the AMI in the specified Region.
"
}
},
"documentation":" Defines the settings for a specific Region.
"
@@ -1829,14 +1837,14 @@
"members":{
"name":{
"shape":"FilterName",
- "documentation":" The name of the filter. Filter names are case-sensitive.
"
+ "documentation":"The name of the filter. Filter names are case-sensitive.
"
},
"values":{
"shape":"FilterValues",
- "documentation":" The filter values. Filter values are case-sensitive.
"
+ "documentation":"The filter values. Filter values are case-sensitive.
"
}
},
- "documentation":" A filter name and value pair that is used to return a more specific list of results from a list operation. Filters can be used to match a set of resources by specific criteria, such as tags, attributes, or IDs.
"
+ "documentation":"A filter name and value pair that is used to return a more specific list of results from a list operation. Filters can be used to match a set of resources by specific criteria, such as tags, attributes, or IDs.
"
},
"FilterList":{
"type":"list",
@@ -1873,7 +1881,7 @@
"members":{
"componentArn":{
"shape":"ComponentBuildVersionArn",
- "documentation":" The Amazon Resource Name (ARN) of the component whose policy you want to retrieve.
",
+ "documentation":"The Amazon Resource Name (ARN) of the component whose policy you want to retrieve.
",
"location":"querystring",
"locationName":"componentArn"
}
@@ -1884,11 +1892,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"policy":{
"shape":"ResourcePolicyDocument",
- "documentation":" The component policy.
"
+ "documentation":"The component policy.
"
}
}
},
@@ -1898,7 +1906,7 @@
"members":{
"componentBuildVersionArn":{
"shape":"ComponentBuildVersionArn",
- "documentation":" The Amazon Resource Name (ARN) of the component that you want to retrieve. Regex requires \"/\\d+$\" suffix.
",
+ "documentation":"The Amazon Resource Name (ARN) of the component that you want to retrieve. Regex requires \"/\\d+$\" suffix.
",
"location":"querystring",
"locationName":"componentBuildVersionArn"
}
@@ -1909,11 +1917,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"component":{
"shape":"Component",
- "documentation":" The component object associated with the specified ARN.
"
+ "documentation":"The component object associated with the specified ARN.
"
}
}
},
@@ -1923,7 +1931,7 @@
"members":{
"distributionConfigurationArn":{
"shape":"DistributionConfigurationArn",
- "documentation":" The Amazon Resource Name (ARN) of the distribution configuration that you want to retrieve.
",
+ "documentation":"The Amazon Resource Name (ARN) of the distribution configuration that you want to retrieve.
",
"location":"querystring",
"locationName":"distributionConfigurationArn"
}
@@ -1934,11 +1942,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"distributionConfiguration":{
"shape":"DistributionConfiguration",
- "documentation":" The distribution configuration object.
"
+ "documentation":"The distribution configuration object.
"
}
}
},
@@ -1948,7 +1956,7 @@
"members":{
"imagePipelineArn":{
"shape":"ImagePipelineArn",
- "documentation":" The Amazon Resource Name (ARN) of the image pipeline that you want to retrieve.
",
+ "documentation":"The Amazon Resource Name (ARN) of the image pipeline that you want to retrieve.
",
"location":"querystring",
"locationName":"imagePipelineArn"
}
@@ -1959,11 +1967,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"imagePipeline":{
"shape":"ImagePipeline",
- "documentation":" The image pipeline object.
"
+ "documentation":"The image pipeline object.
"
}
}
},
@@ -1973,7 +1981,7 @@
"members":{
"imageArn":{
"shape":"ImageBuildVersionArn",
- "documentation":" The Amazon Resource Name (ARN) of the image whose policy you want to retrieve.
",
+ "documentation":"The Amazon Resource Name (ARN) of the image whose policy you want to retrieve.
",
"location":"querystring",
"locationName":"imageArn"
}
@@ -1984,11 +1992,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"policy":{
"shape":"ResourcePolicyDocument",
- "documentation":" The image policy object.
"
+ "documentation":"The image policy object.
"
}
}
},
@@ -1998,7 +2006,7 @@
"members":{
"imageRecipeArn":{
"shape":"ImageRecipeArn",
- "documentation":" The Amazon Resource Name (ARN) of the image recipe whose policy you want to retrieve.
",
+ "documentation":"The Amazon Resource Name (ARN) of the image recipe whose policy you want to retrieve.
",
"location":"querystring",
"locationName":"imageRecipeArn"
}
@@ -2009,11 +2017,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"policy":{
"shape":"ResourcePolicyDocument",
- "documentation":" The image recipe policy object.
"
+ "documentation":"The image recipe policy object.
"
}
}
},
@@ -2023,7 +2031,7 @@
"members":{
"imageRecipeArn":{
"shape":"ImageRecipeArn",
- "documentation":" The Amazon Resource Name (ARN) of the image recipe that you want to retrieve.
",
+ "documentation":"The Amazon Resource Name (ARN) of the image recipe that you want to retrieve.
",
"location":"querystring",
"locationName":"imageRecipeArn"
}
@@ -2034,11 +2042,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"imageRecipe":{
"shape":"ImageRecipe",
- "documentation":" The image recipe object.
"
+ "documentation":"The image recipe object.
"
}
}
},
@@ -2048,7 +2056,7 @@
"members":{
"imageBuildVersionArn":{
"shape":"ImageBuildVersionArn",
- "documentation":" The Amazon Resource Name (ARN) of the image that you want to retrieve.
",
+ "documentation":"The Amazon Resource Name (ARN) of the image that you want to retrieve.
",
"location":"querystring",
"locationName":"imageBuildVersionArn"
}
@@ -2059,11 +2067,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"image":{
"shape":"Image",
- "documentation":" The image object.
"
+ "documentation":"The image object.
"
}
}
},
@@ -2085,11 +2093,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"infrastructureConfiguration":{
"shape":"InfrastructureConfiguration",
- "documentation":" The infrastructure configuration object.
"
+ "documentation":"The infrastructure configuration object.
"
}
},
"documentation":"GetInfrastructureConfiguration response object.
"
@@ -2122,6 +2130,14 @@
"shape":"Platform",
"documentation":"The platform of the image.
"
},
+ "enhancedImageMetadataEnabled":{
+ "shape":"NullableBoolean",
+ "documentation":" Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.
"
+ },
+ "osVersion":{
+ "shape":"OsVersion",
+ "documentation":"The operating system version of the instance. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows Server 2019.
"
+ },
"state":{
"shape":"ImageState",
"documentation":"The state of the image.
"
@@ -2140,7 +2156,7 @@
},
"infrastructureConfiguration":{
"shape":"InfrastructureConfiguration",
- "documentation":" The infrastructure used when creating this image.
"
+ "documentation":"The infrastructure used when creating this image.
"
},
"distributionConfiguration":{
"shape":"DistributionConfiguration",
@@ -2192,6 +2208,10 @@
"shape":"Platform",
"documentation":"The platform of the image pipeline.
"
},
+ "enhancedImageMetadataEnabled":{
+ "shape":"NullableBoolean",
+ "documentation":" Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.
"
+ },
"imageRecipeArn":{
"shape":"Arn",
"documentation":"The Amazon Resource Name (ARN) of the image recipe associated with this image pipeline.
"
@@ -2344,11 +2364,11 @@
"members":{
"status":{
"shape":"ImageStatus",
- "documentation":" The status of the image.
"
+ "documentation":"The status of the image.
"
},
"reason":{
"shape":"NonEmptyString",
- "documentation":" The reason for the image's status.
"
+ "documentation":"The reason for the image's status.
"
}
},
"documentation":" Image state shows the image status and the reason for that status.
"
@@ -2388,6 +2408,10 @@
"shape":"Platform",
"documentation":"The platform of the image.
"
},
+ "osVersion":{
+ "shape":"OsVersion",
+ "documentation":"The operating system version of the instance. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows Server 2019.
"
+ },
"state":{
"shape":"ImageState",
"documentation":"The state of the image.
"
@@ -2453,6 +2477,10 @@
"shape":"Platform",
"documentation":"The platform of the image semantic version.
"
},
+ "osVersion":{
+ "shape":"OsVersion",
+ "documentation":" The operating system version of the instance. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows Server 2019.
"
+ },
"owner":{
"shape":"NonEmptyString",
"documentation":"The owner of the image semantic version.
"
@@ -2497,7 +2525,7 @@
},
"changeDescription":{
"shape":"NonEmptyString",
- "documentation":" The change description of the component. Describes what change has been made in this version, or what makes this version different from other versions of this component.
"
+ "documentation":"The change description of the component. Describes what change has been made in this version, or what makes this version different from other versions of this component.
"
},
"type":{
"shape":"ComponentType",
@@ -2505,11 +2533,11 @@
},
"format":{
"shape":"ComponentFormat",
- "documentation":" The format of the resource that you want to import as a component.
"
+ "documentation":"The format of the resource that you want to import as a component.
"
},
"platform":{
"shape":"Platform",
- "documentation":" The platform of the component.
"
+ "documentation":"The platform of the component.
"
},
"data":{
"shape":"NonEmptyString",
@@ -2521,15 +2549,15 @@
},
"kmsKeyId":{
"shape":"NonEmptyString",
- "documentation":" The ID of the KMS key that should be used to encrypt this component.
"
+ "documentation":"The ID of the KMS key that should be used to encrypt this component.
"
},
"tags":{
"shape":"TagMap",
- "documentation":" The tags of the component.
"
+ "documentation":"The tags of the component.
"
},
"clientToken":{
"shape":"ClientToken",
- "documentation":" The idempotency token of the component.
",
+ "documentation":"The idempotency token of the component.
",
"idempotencyToken":true
}
}
@@ -2539,15 +2567,15 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"clientToken":{
"shape":"ClientToken",
- "documentation":" The idempotency token used to make this request idempotent.
"
+ "documentation":"The idempotency token used to make this request idempotent.
"
},
"componentBuildVersionArn":{
"shape":"ComponentBuildVersionArn",
- "documentation":" The Amazon Resource Name (ARN) of the imported component.
"
+ "documentation":"The Amazon Resource Name (ARN) of the imported component.
"
}
}
},
@@ -2746,7 +2774,7 @@
"members":{
"userIds":{
"shape":"AccountList",
- "documentation":" The AWS account ID.
"
+ "documentation":"The AWS account ID.
"
},
"userGroups":{
"shape":"StringList",
@@ -2761,16 +2789,16 @@
"members":{
"componentVersionArn":{
"shape":"ComponentVersionArn",
- "documentation":" The component version Amazon Resource Name (ARN) whose versions you want to list.
"
+ "documentation":"The component version Amazon Resource Name (ARN) whose versions you want to list.
"
},
"maxResults":{
"shape":"RestrictedInteger",
- "documentation":" The maximum items to return in a request.
",
+ "documentation":"The maximum items to return in a request.
",
"box":true
},
"nextToken":{
"shape":"NonEmptyString",
- "documentation":" A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
+ "documentation":"A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
}
}
},
@@ -2779,15 +2807,15 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"componentSummaryList":{
"shape":"ComponentSummaryList",
- "documentation":" The list of component summaries for the specified semantic version.
"
+ "documentation":"The list of component summaries for the specified semantic version.
"
},
"nextToken":{
"shape":"NonEmptyString",
- "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.
"
+ "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.
"
}
}
},
@@ -2796,20 +2824,20 @@
"members":{
"owner":{
"shape":"Ownership",
- "documentation":" The owner defines which components you want to list. By default, this request will only show components owned by your account. You can use this field to specify if you want to view components owned by yourself, by Amazon, or those components that have been shared with you by other customers.
"
+ "documentation":"The owner defines which components you want to list. By default, this request will only show components owned by your account. You can use this field to specify if you want to view components owned by yourself, by Amazon, or those components that have been shared with you by other customers.
"
},
"filters":{
"shape":"FilterList",
- "documentation":" The filters.
"
+ "documentation":"The filters.
"
},
"maxResults":{
"shape":"RestrictedInteger",
- "documentation":" The maximum items to return in a request.
",
+ "documentation":"The maximum items to return in a request.
",
"box":true
},
"nextToken":{
"shape":"NonEmptyString",
- "documentation":" A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
+ "documentation":"A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
}
}
},
@@ -2818,15 +2846,15 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"componentVersionList":{
"shape":"ComponentVersionList",
- "documentation":" The list of component semantic versions.
"
+ "documentation":"The list of component semantic versions.
"
},
"nextToken":{
"shape":"NonEmptyString",
- "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.
"
+ "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.
"
}
}
},
@@ -2835,16 +2863,16 @@
"members":{
"filters":{
"shape":"FilterList",
- "documentation":" The filters.
"
+ "documentation":"The filters.
"
},
"maxResults":{
"shape":"RestrictedInteger",
- "documentation":" The maximum items to return in a request.
",
+ "documentation":"The maximum items to return in a request.
",
"box":true
},
"nextToken":{
"shape":"NonEmptyString",
- "documentation":" A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
+ "documentation":"A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
}
}
},
@@ -2853,15 +2881,15 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"distributionConfigurationSummaryList":{
"shape":"DistributionConfigurationSummaryList",
- "documentation":" The list of distributions.
"
+ "documentation":"The list of distributions.
"
},
"nextToken":{
"shape":"NonEmptyString",
- "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.
"
+ "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.
"
}
}
},
@@ -2871,20 +2899,20 @@
"members":{
"imageVersionArn":{
"shape":"ImageVersionArn",
- "documentation":" The Amazon Resource Name (ARN) of the image whose build versions you want to retrieve.
"
+ "documentation":"The Amazon Resource Name (ARN) of the image whose build versions you want to retrieve.
"
},
"filters":{
"shape":"FilterList",
- "documentation":" The filters.
"
+ "documentation":"The filters.
"
},
"maxResults":{
"shape":"RestrictedInteger",
- "documentation":" The maximum items to return in a request.
",
+ "documentation":"The maximum items to return in a request.
",
"box":true
},
"nextToken":{
"shape":"NonEmptyString",
- "documentation":" A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
+ "documentation":"A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
}
}
},
@@ -2893,15 +2921,15 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"imageSummaryList":{
"shape":"ImageSummaryList",
- "documentation":" The list of image build versions.
"
+ "documentation":"The list of image build versions.
"
},
"nextToken":{
"shape":"NonEmptyString",
- "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.
"
+ "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.
"
}
}
},
@@ -2911,20 +2939,20 @@
"members":{
"imagePipelineArn":{
"shape":"ImagePipelineArn",
- "documentation":" The Amazon Resource Name (ARN) of the image pipeline whose images you want to view.
"
+ "documentation":"The Amazon Resource Name (ARN) of the image pipeline whose images you want to view.
"
},
"filters":{
"shape":"FilterList",
- "documentation":" The filters.
"
+ "documentation":"The filters.
"
},
"maxResults":{
"shape":"RestrictedInteger",
- "documentation":" The maximum items to return in a request.
",
+ "documentation":"The maximum items to return in a request.
",
"box":true
},
"nextToken":{
"shape":"NonEmptyString",
- "documentation":" A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
+ "documentation":"A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
}
}
},
@@ -2933,15 +2961,15 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"imageSummaryList":{
"shape":"ImageSummaryList",
- "documentation":" The list of images built by this pipeline.
"
+ "documentation":"The list of images built by this pipeline.
"
},
"nextToken":{
"shape":"NonEmptyString",
- "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.
"
+ "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.
"
}
}
},
@@ -2950,16 +2978,16 @@
"members":{
"filters":{
"shape":"FilterList",
- "documentation":" The filters.
"
+ "documentation":"The filters.
"
},
"maxResults":{
"shape":"RestrictedInteger",
- "documentation":" The maximum items to return in a request.
",
+ "documentation":"The maximum items to return in a request.
",
"box":true
},
"nextToken":{
"shape":"NonEmptyString",
- "documentation":" A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
+ "documentation":"A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
}
}
},
@@ -2968,15 +2996,15 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"imagePipelineList":{
"shape":"ImagePipelineList",
- "documentation":" The list of image pipelines.
"
+ "documentation":"The list of image pipelines.
"
},
"nextToken":{
"shape":"NonEmptyString",
- "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.
"
+ "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.
"
}
}
},
@@ -2985,20 +3013,20 @@
"members":{
"owner":{
"shape":"Ownership",
- "documentation":" The owner defines which image recipes you want to list. By default, this request will only show image recipes owned by your account. You can use this field to specify if you want to view image recipes owned by yourself, by Amazon, or those image recipes that have been shared with you by other customers.
"
+ "documentation":"The owner defines which image recipes you want to list. By default, this request will only show image recipes owned by your account. You can use this field to specify if you want to view image recipes owned by yourself, by Amazon, or those image recipes that have been shared with you by other customers.
"
},
"filters":{
"shape":"FilterList",
- "documentation":" The filters.
"
+ "documentation":"The filters.
"
},
"maxResults":{
"shape":"RestrictedInteger",
- "documentation":" The maximum items to return in a request.
",
+ "documentation":"The maximum items to return in a request.
",
"box":true
},
"nextToken":{
"shape":"NonEmptyString",
- "documentation":" A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
+ "documentation":"A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
}
}
},
@@ -3007,15 +3035,15 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"imageRecipeSummaryList":{
"shape":"ImageRecipeSummaryList",
- "documentation":" The list of image pipelines.
"
+ "documentation":"The list of image pipelines.
"
},
"nextToken":{
"shape":"NonEmptyString",
- "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.
"
+ "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.
"
}
}
},
@@ -3024,20 +3052,20 @@
"members":{
"owner":{
"shape":"Ownership",
- "documentation":" The owner defines which images you want to list. By default, this request will only show images owned by your account. You can use this field to specify if you want to view images owned by yourself, by Amazon, or those images that have been shared with you by other customers.
"
+ "documentation":"The owner defines which images you want to list. By default, this request will only show images owned by your account. You can use this field to specify if you want to view images owned by yourself, by Amazon, or those images that have been shared with you by other customers.
"
},
"filters":{
"shape":"FilterList",
- "documentation":" The filters.
"
+ "documentation":"The filters.
"
},
"maxResults":{
"shape":"RestrictedInteger",
- "documentation":" The maximum items to return in a request.
",
+ "documentation":"The maximum items to return in a request.
",
"box":true
},
"nextToken":{
"shape":"NonEmptyString",
- "documentation":" A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
+ "documentation":"A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
}
}
},
@@ -3046,15 +3074,15 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"imageVersionList":{
"shape":"ImageVersionList",
- "documentation":" The list of image semantic versions.
"
+ "documentation":"The list of image semantic versions.
"
},
"nextToken":{
"shape":"NonEmptyString",
- "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.
"
+ "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.
"
}
}
},
@@ -3063,16 +3091,16 @@
"members":{
"filters":{
"shape":"FilterList",
- "documentation":" The filters.
"
+ "documentation":"The filters.
"
},
"maxResults":{
"shape":"RestrictedInteger",
- "documentation":" The maximum items to return in a request.
",
+ "documentation":"The maximum items to return in a request.
",
"box":true
},
"nextToken":{
"shape":"NonEmptyString",
- "documentation":" A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
+ "documentation":"A token to specify where to start paginating. This is the NextToken from a previously truncated response.
"
}
}
},
@@ -3081,15 +3109,15 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"infrastructureConfigurationSummaryList":{
"shape":"InfrastructureConfigurationSummaryList",
- "documentation":" The list of infrastructure configurations.
"
+ "documentation":"The list of infrastructure configurations.
"
},
"nextToken":{
"shape":"NonEmptyString",
- "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.
"
+ "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.
"
}
}
},
@@ -3099,7 +3127,7 @@
"members":{
"resourceArn":{
"shape":"ImageBuilderArn",
- "documentation":" The Amazon Resource Name (ARN) of the resource whose tags you want to retrieve.
",
+ "documentation":"The Amazon Resource Name (ARN) of the resource whose tags you want to retrieve.
",
"location":"uri",
"locationName":"resourceArn"
}
@@ -3110,7 +3138,7 @@
"members":{
"tags":{
"shape":"TagMap",
- "documentation":" The tags for the specified resource.
"
+ "documentation":"The tags for the specified resource.
"
}
}
},
@@ -3130,6 +3158,10 @@
"min":1
},
"NullableBoolean":{"type":"boolean"},
+ "OsVersion":{
+ "type":"string",
+ "min":1
+ },
"OutputResources":{
"type":"structure",
"members":{
@@ -3178,11 +3210,11 @@
"members":{
"componentArn":{
"shape":"ComponentBuildVersionArn",
- "documentation":" The Amazon Resource Name (ARN) of the component that this policy should be applied to.
"
+ "documentation":"The Amazon Resource Name (ARN) of the component that this policy should be applied to.
"
},
"policy":{
"shape":"ResourcePolicyDocument",
- "documentation":" The policy to apply.
"
+ "documentation":"The policy to apply.
"
}
}
},
@@ -3191,11 +3223,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"componentArn":{
"shape":"ComponentBuildVersionArn",
- "documentation":" The Amazon Resource Name (ARN) of the component that this policy was applied to.
"
+ "documentation":"The Amazon Resource Name (ARN) of the component that this policy was applied to.
"
}
}
},
@@ -3208,11 +3240,11 @@
"members":{
"imageArn":{
"shape":"ImageBuildVersionArn",
- "documentation":" The Amazon Resource Name (ARN) of the image that this policy should be applied to.
"
+ "documentation":"The Amazon Resource Name (ARN) of the image that this policy should be applied to.
"
},
"policy":{
"shape":"ResourcePolicyDocument",
- "documentation":" The policy to apply.
"
+ "documentation":"The policy to apply.
"
}
}
},
@@ -3221,11 +3253,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"imageArn":{
"shape":"ImageBuildVersionArn",
- "documentation":" The Amazon Resource Name (ARN) of the image that this policy was applied to.
"
+ "documentation":"The Amazon Resource Name (ARN) of the image that this policy was applied to.
"
}
}
},
@@ -3238,11 +3270,11 @@
"members":{
"imageRecipeArn":{
"shape":"ImageRecipeArn",
- "documentation":" The Amazon Resource Name (ARN) of the image recipe that this policy should be applied to.
"
+ "documentation":"The Amazon Resource Name (ARN) of the image recipe that this policy should be applied to.
"
},
"policy":{
"shape":"ResourcePolicyDocument",
- "documentation":" The policy to apply.
"
+ "documentation":"The policy to apply.
"
}
}
},
@@ -3251,11 +3283,11 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"imageRecipeArn":{
"shape":"ImageRecipeArn",
- "documentation":" The Amazon Resource Name (ARN) of the image recipe that this policy was applied to.
"
+ "documentation":"The Amazon Resource Name (ARN) of the image recipe that this policy was applied to.
"
}
}
},
@@ -3328,14 +3360,14 @@
"members":{
"scheduleExpression":{
"shape":"NonEmptyString",
- "documentation":" The expression determines how often EC2 Image Builder evaluates your pipelineExecutionStartCondition
.
"
+ "documentation":"The expression determines how often EC2 Image Builder evaluates your pipelineExecutionStartCondition
.
"
},
"pipelineExecutionStartCondition":{
"shape":"PipelineExecutionStartCondition",
- "documentation":" The condition configures when the pipeline should trigger a new image build. When the pipelineExecutionStartCondition
is set to EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE
, EC2 Image Builder will build a new image only when there are known changes pending. When it is set to EXPRESSION_MATCH_ONLY
, it will build a new image every time the CRON expression matches the current time.
"
+ "documentation":"The condition configures when the pipeline should trigger a new image build. When the pipelineExecutionStartCondition
is set to EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE
, EC2 Image Builder will build a new image only when there are known changes pending. When it is set to EXPRESSION_MATCH_ONLY
, it will build a new image every time the CRON expression matches the current time.
"
}
},
- "documentation":" A schedule configures how often and when a pipeline will automatically create a new image.
"
+ "documentation":"A schedule configures how often and when a pipeline will automatically create a new image.
"
},
"SecurityGroupIds":{
"type":"list",
@@ -3372,11 +3404,11 @@
"members":{
"imagePipelineArn":{
"shape":"ImagePipelineArn",
- "documentation":" The Amazon Resource Name (ARN) of the image pipeline that you want to manually invoke.
"
+ "documentation":"The Amazon Resource Name (ARN) of the image pipeline that you want to manually invoke.
"
},
"clientToken":{
"shape":"ClientToken",
- "documentation":" The idempotency token used to make this request idempotent.
",
+ "documentation":"The idempotency token used to make this request idempotent.
",
"idempotencyToken":true
}
}
@@ -3386,15 +3418,15 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"clientToken":{
"shape":"ClientToken",
- "documentation":" The idempotency token used to make this request idempotent.
"
+ "documentation":"The idempotency token used to make this request idempotent.
"
},
"imageBuildVersionArn":{
"shape":"ImageBuildVersionArn",
- "documentation":" The Amazon Resource Name (ARN) of the image that was created by this request.
"
+ "documentation":"The Amazon Resource Name (ARN) of the image that was created by this request.
"
}
}
},
@@ -3430,13 +3462,13 @@
"members":{
"resourceArn":{
"shape":"ImageBuilderArn",
- "documentation":" The Amazon Resource Name (ARN) of the resource that you want to tag.
",
+ "documentation":"The Amazon Resource Name (ARN) of the resource that you want to tag.
",
"location":"uri",
"locationName":"resourceArn"
},
"tags":{
"shape":"TagMap",
- "documentation":" The tags to apply to the resource.
"
+ "documentation":"The tags to apply to the resource.
"
}
}
},
@@ -3458,13 +3490,13 @@
"members":{
"resourceArn":{
"shape":"ImageBuilderArn",
- "documentation":" The Amazon Resource Name (ARN) of the resource that you want to untag.
",
+ "documentation":"The Amazon Resource Name (ARN) of the resource that you want to untag.
",
"location":"uri",
"locationName":"resourceArn"
},
"tagKeys":{
"shape":"TagKeyList",
- "documentation":" The tag keys to remove from the resource.
",
+ "documentation":"The tag keys to remove from the resource.
",
"location":"querystring",
"locationName":"tagKeys"
}
@@ -3485,19 +3517,19 @@
"members":{
"distributionConfigurationArn":{
"shape":"DistributionConfigurationArn",
- "documentation":" The Amazon Resource Name (ARN) of the distribution configuration that you want to update.
"
+ "documentation":"The Amazon Resource Name (ARN) of the distribution configuration that you want to update.
"
},
"description":{
"shape":"NonEmptyString",
- "documentation":" The description of the distribution configuration.
"
+ "documentation":"The description of the distribution configuration.
"
},
"distributions":{
"shape":"DistributionList",
- "documentation":" The distributions of the distribution configuration.
"
+ "documentation":"The distributions of the distribution configuration.
"
},
"clientToken":{
"shape":"ClientToken",
- "documentation":" The idempotency token of the distribution configuration.
",
+ "documentation":"The idempotency token of the distribution configuration.
",
"idempotencyToken":true
}
}
@@ -3507,15 +3539,15 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"clientToken":{
"shape":"ClientToken",
- "documentation":" The idempotency token used to make this request idempotent.
"
+ "documentation":"The idempotency token used to make this request idempotent.
"
},
"distributionConfigurationArn":{
"shape":"DistributionConfigurationArn",
- "documentation":" The Amazon Resource Name (ARN) of the distribution configuration that was updated by this request.
"
+ "documentation":"The Amazon Resource Name (ARN) of the distribution configuration that was updated by this request.
"
}
}
},
@@ -3530,39 +3562,43 @@
"members":{
"imagePipelineArn":{
"shape":"ImagePipelineArn",
- "documentation":" The Amazon Resource Name (ARN) of the image pipeline that you want to update.
"
+ "documentation":"The Amazon Resource Name (ARN) of the image pipeline that you want to update.
"
},
"description":{
"shape":"NonEmptyString",
- "documentation":" The description of the image pipeline.
"
+ "documentation":"The description of the image pipeline.
"
},
"imageRecipeArn":{
"shape":"ImageRecipeArn",
- "documentation":" The Amazon Resource Name (ARN) of the image recipe that will be used to configure images updated by this image pipeline.
"
+ "documentation":"The Amazon Resource Name (ARN) of the image recipe that will be used to configure images updated by this image pipeline.
"
},
"infrastructureConfigurationArn":{
"shape":"InfrastructureConfigurationArn",
- "documentation":" The Amazon Resource Name (ARN) of the infrastructure configuration that will be used to build images updated by this image pipeline.
"
+ "documentation":"The Amazon Resource Name (ARN) of the infrastructure configuration that will be used to build images updated by this image pipeline.
"
},
"distributionConfigurationArn":{
"shape":"DistributionConfigurationArn",
- "documentation":" The Amazon Resource Name (ARN) of the distribution configuration that will be used to configure and distribute images updated by this image pipeline.
"
+ "documentation":"The Amazon Resource Name (ARN) of the distribution configuration that will be used to configure and distribute images updated by this image pipeline.
"
},
"imageTestsConfiguration":{
"shape":"ImageTestsConfiguration",
- "documentation":" The image test configuration of the image pipeline.
"
+ "documentation":"The image test configuration of the image pipeline.
"
+ },
+ "enhancedImageMetadataEnabled":{
+ "shape":"NullableBoolean",
+ "documentation":" Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.
"
},
"schedule":{
"shape":"Schedule",
- "documentation":" The schedule of the image pipeline.
"
+ "documentation":"The schedule of the image pipeline.
"
},
"status":{
"shape":"PipelineStatus",
- "documentation":" The status of the image pipeline.
"
+ "documentation":"The status of the image pipeline.
"
},
"clientToken":{
"shape":"ClientToken",
- "documentation":" The idempotency token used to make this request idempotent.
",
+ "documentation":"The idempotency token used to make this request idempotent.
",
"idempotencyToken":true
}
}
@@ -3572,15 +3608,15 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"clientToken":{
"shape":"ClientToken",
- "documentation":" The idempotency token used to make this request idempotent.
"
+ "documentation":"The idempotency token used to make this request idempotent.
"
},
"imagePipelineArn":{
"shape":"ImagePipelineArn",
- "documentation":" The Amazon Resource Name (ARN) of the image pipeline that was updated by this request.
"
+ "documentation":"The Amazon Resource Name (ARN) of the image pipeline that was updated by this request.
"
}
}
},
@@ -3594,47 +3630,47 @@
"members":{
"infrastructureConfigurationArn":{
"shape":"InfrastructureConfigurationArn",
- "documentation":" The Amazon Resource Name (ARN) of the infrastructure configuration that you want to update.
"
+ "documentation":"The Amazon Resource Name (ARN) of the infrastructure configuration that you want to update.
"
},
"description":{
"shape":"NonEmptyString",
- "documentation":" The description of the infrastructure configuration.
"
+ "documentation":"The description of the infrastructure configuration.
"
},
"instanceTypes":{
"shape":"InstanceTypeList",
- "documentation":" The instance types of the infrastructure configuration. You can specify one or more instance types to use for this build. The service will pick one of these instance types based on availability.
"
+ "documentation":"The instance types of the infrastructure configuration. You can specify one or more instance types to use for this build. The service will pick one of these instance types based on availability.
"
},
"instanceProfileName":{
"shape":"NonEmptyString",
- "documentation":" The instance profile to associate with the instance used to customize your EC2 AMI.
"
+ "documentation":"The instance profile to associate with the instance used to customize your EC2 AMI.
"
},
"securityGroupIds":{
"shape":"SecurityGroupIds",
- "documentation":" The security group IDs to associate with the instance used to customize your EC2 AMI.
"
+ "documentation":"The security group IDs to associate with the instance used to customize your EC2 AMI.
"
},
"subnetId":{
"shape":"NonEmptyString",
- "documentation":" The subnet ID to place the instance used to customize your EC2 AMI in.
"
+ "documentation":"The subnet ID to place the instance used to customize your EC2 AMI in.
"
},
"logging":{
"shape":"Logging",
- "documentation":" The logging configuration of the infrastructure configuration.
"
+ "documentation":"The logging configuration of the infrastructure configuration.
"
},
"keyPair":{
"shape":"NonEmptyString",
- "documentation":" The key pair of the infrastructure configuration. This can be used to log on to and debug the instance used to create your image.
"
+ "documentation":"The key pair of the infrastructure configuration. This can be used to log on to and debug the instance used to create your image.
"
},
"terminateInstanceOnFailure":{
"shape":"NullableBoolean",
- "documentation":" The terminate instance on failure setting of the infrastructure configuration. Set to false if you want Image Builder to retain the instance used to configure your AMI if the build or test phase of your workflow fails.
"
+ "documentation":"The terminate instance on failure setting of the infrastructure configuration. Set to false if you want Image Builder to retain the instance used to configure your AMI if the build or test phase of your workflow fails.
"
},
"snsTopicArn":{
"shape":"SnsTopicArn",
- "documentation":" The SNS topic on which to send image build events.
"
+ "documentation":"The SNS topic on which to send image build events.
"
},
"clientToken":{
"shape":"ClientToken",
- "documentation":" The idempotency token used to make this request idempotent.
",
+ "documentation":"The idempotency token used to make this request idempotent.
",
"idempotencyToken":true
}
}
@@ -3644,15 +3680,15 @@
"members":{
"requestId":{
"shape":"NonEmptyString",
- "documentation":" The request ID that uniquely identifies this request.
"
+ "documentation":"The request ID that uniquely identifies this request.
"
},
"clientToken":{
"shape":"ClientToken",
- "documentation":" The idempotency token used to make this request idempotent.
"
+ "documentation":"The idempotency token used to make this request idempotent.
"
},
"infrastructureConfigurationArn":{
"shape":"InfrastructureConfigurationArn",
- "documentation":" The Amazon Resource Name (ARN) of the infrastructure configuration that was updated by this request.
"
+ "documentation":"The Amazon Resource Name (ARN) of the infrastructure configuration that was updated by this request.
"
}
}
},
From 180907b532a504c197bead6cf25eec76baa59d5c Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 16 Apr 2020 18:06:16 +0000
Subject: [PATCH 059/604] AWS Glue Update: This release adds support for
querying GetUserDefinedFunctions API without databaseName.
---
.changes/next-release/feature-AWSGlue-2b2ed28.json | 5 +++++
.../glue/src/main/resources/codegen-resources/service-2.json | 5 +----
2 files changed, 6 insertions(+), 4 deletions(-)
create mode 100644 .changes/next-release/feature-AWSGlue-2b2ed28.json
diff --git a/.changes/next-release/feature-AWSGlue-2b2ed28.json b/.changes/next-release/feature-AWSGlue-2b2ed28.json
new file mode 100644
index 000000000000..7d7c27ce2840
--- /dev/null
+++ b/.changes/next-release/feature-AWSGlue-2b2ed28.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "AWS Glue",
+ "description": "This release adds support for querying GetUserDefinedFunctions API without databaseName."
+}
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 52737c774680..c0ab0f8d710c 100644
--- a/services/glue/src/main/resources/codegen-resources/service-2.json
+++ b/services/glue/src/main/resources/codegen-resources/service-2.json
@@ -6131,10 +6131,7 @@
},
"GetUserDefinedFunctionsRequest":{
"type":"structure",
- "required":[
- "DatabaseName",
- "Pattern"
- ],
+ "required":["Pattern"],
"members":{
"CatalogId":{
"shape":"CatalogIdString",
From 422b5f0867a6c282fd4f8548d6eda0dd8731e18f Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 16 Apr 2020 18:06:19 +0000
Subject: [PATCH 060/604] AWS Lambda Update: Sample code for AWS Lambda
operations
---
.changes/next-release/feature-AWSLambda-a49bbfa.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-AWSLambda-a49bbfa.json
diff --git a/.changes/next-release/feature-AWSLambda-a49bbfa.json b/.changes/next-release/feature-AWSLambda-a49bbfa.json
new file mode 100644
index 000000000000..b2ed3b9e65b3
--- /dev/null
+++ b/.changes/next-release/feature-AWSLambda-a49bbfa.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "AWS Lambda",
+ "description": "Sample code for AWS Lambda operations"
+}
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 d68c06d2f490..c7cb7fb7d736 100644
--- a/services/lambda/src/main/resources/codegen-resources/service-2.json
+++ b/services/lambda/src/main/resources/codegen-resources/service-2.json
@@ -455,7 +455,7 @@
{"shape":"ResourceConflictException"},
{"shape":"ResourceNotReadyException"}
],
- "documentation":"Invokes a Lambda function. You can invoke a function synchronously (and wait for the response), or asynchronously. To invoke a function asynchronously, set InvocationType
to Event
.
For synchronous invocation, details about the function response, including errors, are included in the response body and headers. For either invocation type, you can find more information in the execution log and trace.
When an error occurs, your function may be invoked multiple times. Retry behavior varies by error type, client, event source, and invocation type. For example, if you invoke a function asynchronously and it returns an error, Lambda executes the function up to two more times. For more information, see Retry Behavior.
For asynchronous invocation, Lambda adds events to a queue before sending them to your function. If your function does not have enough capacity to keep up with the queue, events may be lost. Occasionally, your function may receive the same event multiple times, even if no error occurs. To retain events that were not processed, configure your function with a dead-letter queue.
The status code in the API response doesn't reflect function errors. Error codes are reserved for errors that prevent your function from executing, such as permissions errors, limit errors, or issues with your function's code and configuration. For example, Lambda returns TooManyRequestsException
if executing the function would cause you to exceed a concurrency limit at either the account level (ConcurrentInvocationLimitExceeded
) or function level (ReservedFunctionConcurrentInvocationLimitExceeded
).
For functions with a long timeout, your client might be disconnected during synchronous invocation while it waits for a response. Configure your HTTP client, SDK, firewall, proxy, or operating system to allow for long connections with timeout or keep-alive settings.
This operation requires permission for the lambda:InvokeFunction
action.
"
+ "documentation":"Invokes a Lambda function. You can invoke a function synchronously (and wait for the response), or asynchronously. To invoke a function asynchronously, set InvocationType
to Event
.
For synchronous invocation, details about the function response, including errors, are included in the response body and headers. For either invocation type, you can find more information in the execution log and trace.
When an error occurs, your function may be invoked multiple times. Retry behavior varies by error type, client, event source, and invocation type. For example, if you invoke a function asynchronously and it returns an error, Lambda executes the function up to two more times. For more information, see Retry Behavior.
For asynchronous invocation, Lambda adds events to a queue before sending them to your function. If your function does not have enough capacity to keep up with the queue, events may be lost. Occasionally, your function may receive the same event multiple times, even if no error occurs. To retain events that were not processed, configure your function with a dead-letter queue.
The status code in the API response doesn't reflect function errors. Error codes are reserved for errors that prevent your function from executing, such as permissions errors, limit errors, or issues with your function's code and configuration. For example, Lambda returns TooManyRequestsException
if executing the function would cause you to exceed a concurrency limit at either the account level (ConcurrentInvocationLimitExceeded
) or function level (ReservedFunctionConcurrentInvocationLimitExceeded
).
For functions with a long timeout, your client might be disconnected during synchronous invocation while it waits for a response. Configure your HTTP client, SDK, firewall, proxy, or operating system to allow for long connections with timeout or keep-alive settings.
This operation requires permission for the lambda:InvokeFunction action.
"
},
"InvokeAsync":{
"name":"InvokeAsync",
From ede91cee7dab5efb5e3507b3f4d053159734cb6d Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 16 Apr 2020 18:06:19 +0000
Subject: [PATCH 061/604] AWS Migration Hub Update: Adding ThrottlingException
---
.../feature-AWSMigrationHub-0c3dfcc.json | 5 ++
.../codegen-resources/service-2.json | 63 ++++++++++++++++---
2 files changed, 60 insertions(+), 8 deletions(-)
create mode 100644 .changes/next-release/feature-AWSMigrationHub-0c3dfcc.json
diff --git a/.changes/next-release/feature-AWSMigrationHub-0c3dfcc.json b/.changes/next-release/feature-AWSMigrationHub-0c3dfcc.json
new file mode 100644
index 000000000000..2fa61f507393
--- /dev/null
+++ b/.changes/next-release/feature-AWSMigrationHub-0c3dfcc.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "AWS Migration Hub",
+ "description": "Adding ThrottlingException"
+}
diff --git a/services/migrationhub/src/main/resources/codegen-resources/service-2.json b/services/migrationhub/src/main/resources/codegen-resources/service-2.json
index b744e2f71506..ba8a920735d8 100644
--- a/services/migrationhub/src/main/resources/codegen-resources/service-2.json
+++ b/services/migrationhub/src/main/resources/codegen-resources/service-2.json
@@ -22,6 +22,7 @@
"output":{"shape":"AssociateCreatedArtifactResult"},
"errors":[
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"DryRunOperation"},
@@ -42,6 +43,7 @@
"output":{"shape":"AssociateDiscoveredResourceResult"},
"errors":[
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"DryRunOperation"},
@@ -63,6 +65,7 @@
"output":{"shape":"CreateProgressUpdateStreamResult"},
"errors":[
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"DryRunOperation"},
@@ -82,6 +85,7 @@
"output":{"shape":"DeleteProgressUpdateStreamResult"},
"errors":[
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"DryRunOperation"},
@@ -102,6 +106,7 @@
"output":{"shape":"DescribeApplicationStateResult"},
"errors":[
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"InvalidInputException"},
@@ -121,6 +126,7 @@
"output":{"shape":"DescribeMigrationTaskResult"},
"errors":[
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"InvalidInputException"},
@@ -139,6 +145,7 @@
"output":{"shape":"DisassociateCreatedArtifactResult"},
"errors":[
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"DryRunOperation"},
@@ -159,6 +166,7 @@
"output":{"shape":"DisassociateDiscoveredResourceResult"},
"errors":[
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"DryRunOperation"},
@@ -179,6 +187,7 @@
"output":{"shape":"ImportMigrationTaskResult"},
"errors":[
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"DryRunOperation"},
@@ -199,6 +208,7 @@
"output":{"shape":"ListApplicationStatesResult"},
"errors":[
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"InvalidInputException"},
@@ -216,6 +226,7 @@
"output":{"shape":"ListCreatedArtifactsResult"},
"errors":[
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"InvalidInputException"},
@@ -234,6 +245,7 @@
"output":{"shape":"ListDiscoveredResourcesResult"},
"errors":[
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"InvalidInputException"},
@@ -252,6 +264,7 @@
"output":{"shape":"ListMigrationTasksResult"},
"errors":[
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"InvalidInputException"},
@@ -271,6 +284,7 @@
"output":{"shape":"ListProgressUpdateStreamsResult"},
"errors":[
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"InvalidInputException"},
@@ -288,6 +302,7 @@
"output":{"shape":"NotifyApplicationStateResult"},
"errors":[
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"DryRunOperation"},
@@ -309,6 +324,7 @@
"output":{"shape":"NotifyMigrationTaskStateResult"},
"errors":[
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"DryRunOperation"},
@@ -329,6 +345,7 @@
"output":{"shape":"PutResourceAttributesResult"},
"errors":[
{"shape":"AccessDeniedException"},
+ {"shape":"ThrottlingException"},
{"shape":"InternalServerError"},
{"shape":"ServiceUnavailableException"},
{"shape":"DryRunOperation"},
@@ -352,7 +369,8 @@
"ApplicationId":{
"type":"string",
"max":1600,
- "min":1
+ "min":1,
+ "pattern":"^.{1,1600}$"
},
"ApplicationIds":{
"type":"list",
@@ -456,7 +474,9 @@
},
"ConfigurationId":{
"type":"string",
- "min":1
+ "max":1600,
+ "min":1,
+ "pattern":"^.{1,1600}$"
},
"CreateProgressUpdateStreamRequest":{
"type":"structure",
@@ -495,7 +515,8 @@
"CreatedArtifactDescription":{
"type":"string",
"max":500,
- "min":0
+ "min":0,
+ "pattern":"^.{0,500}$"
},
"CreatedArtifactList":{
"type":"list",
@@ -655,7 +676,8 @@
"DiscoveredResourceDescription":{
"type":"string",
"max":500,
- "min":0
+ "min":0,
+ "pattern":"^.{0,500}$"
},
"DiscoveredResourceList":{
"type":"list",
@@ -1156,12 +1178,14 @@
"ResourceAttributeValue":{
"type":"string",
"max":256,
- "min":1
+ "min":1,
+ "pattern":"^.{1,256}$"
},
"ResourceName":{
"type":"string",
"max":1600,
- "min":1
+ "min":1,
+ "pattern":"^.{1,1600}$"
},
"ResourceNotFoundException":{
"type":"structure",
@@ -1171,6 +1195,7 @@
"documentation":"Exception raised when the request references a resource (Application Discovery Service configuration, update stream, migration task, etc.) that does not exist in Application Discovery Service (Application Discovery Service) or in Migration Hub's repository.
",
"exception":true
},
+ "RetryAfterSeconds":{"type":"integer"},
"ServiceUnavailableException":{
"type":"structure",
"members":{
@@ -1192,7 +1217,8 @@
"StatusDetail":{
"type":"string",
"max":500,
- "min":0
+ "min":0,
+ "pattern":"^.{0,500}$"
},
"Task":{
"type":"structure",
@@ -1213,7 +1239,28 @@
},
"documentation":"Task object encapsulating task information.
"
},
- "Token":{"type":"string"},
+ "ThrottlingException":{
+ "type":"structure",
+ "required":["Message"],
+ "members":{
+ "Message":{
+ "shape":"ErrorMessage",
+ "documentation":"A message that provides information about the exception.
"
+ },
+ "RetryAfterSeconds":{
+ "shape":"RetryAfterSeconds",
+ "documentation":"The number of seconds the caller should wait before retrying.
"
+ }
+ },
+ "documentation":"The request was denied due to request throttling.
",
+ "exception":true
+ },
+ "Token":{
+ "type":"string",
+ "max":2048,
+ "min":0,
+ "pattern":"^[a-zA-Z0-9\\/\\+\\=]{0,2048}$"
+ },
"UnauthorizedOperation":{
"type":"structure",
"members":{
From f20f9f1466a82272db1e0105be72fce7517e612f Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 16 Apr 2020 18:06:27 +0000
Subject: [PATCH 062/604] Amazon SageMaker Service Update: Amazon SageMaker now
supports running training jobs on ml.g4dn and ml.c5n instance types. Amazon
SageMaker supports in "IN" operation for Search now.
---
...eature-AmazonSageMakerService-6062776.json | 5 +
.../codegen-resources/service-2.json | 168 ++++++++++++++----
2 files changed, 139 insertions(+), 34 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonSageMakerService-6062776.json
diff --git a/.changes/next-release/feature-AmazonSageMakerService-6062776.json b/.changes/next-release/feature-AmazonSageMakerService-6062776.json
new file mode 100644
index 000000000000..c46ef22d289c
--- /dev/null
+++ b/.changes/next-release/feature-AmazonSageMakerService-6062776.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "Amazon SageMaker Service",
+ "description": "Amazon SageMaker now supports running training jobs on ml.g4dn and ml.c5n instance types. Amazon SageMaker supports in \"IN\" operation for Search now."
+}
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 3a007f8e1679..c403c8e49c66 100644
--- a/services/sagemaker/src/main/resources/codegen-resources/service-2.json
+++ b/services/sagemaker/src/main/resources/codegen-resources/service-2.json
@@ -1277,7 +1277,7 @@
},
"input":{"shape":"SearchRequest"},
"output":{"shape":"SearchResponse"},
- "documentation":"Finds Amazon SageMaker resources that match a search query. Matching resource objects are returned as a list of SearchResult
objects in the response. You can sort the search results by any resource property in a ascending or descending order.
You can query against the following value types: numeric, text, Boolean, and timestamp.
"
+ "documentation":"Finds Amazon SageMaker resources that match a search query. Matching resources are returned as a list of SearchRecord
objects in the response. You can sort the search results by any resource property in a ascending or descending order.
You can query against the following value types: numeric, text, Boolean, and timestamp.
"
},
"StartMonitoringSchedule":{
"name":"StartMonitoringSchedule",
@@ -3421,7 +3421,10 @@
"shape":"FlowDefinitionName",
"documentation":"The name of your flow definition.
"
},
- "HumanLoopRequestSource":{"shape":"HumanLoopRequestSource"},
+ "HumanLoopRequestSource":{
+ "shape":"HumanLoopRequestSource",
+ "documentation":"Container for configuring the source of human task requests. Use to specify if Amazon Rekognition or Amazon Textract is used as an integration source.
"
+ },
"HumanLoopActivationConfig":{
"shape":"HumanLoopActivationConfig",
"documentation":"An object containing information about the events that trigger a human workflow.
"
@@ -5372,7 +5375,10 @@
"shape":"Timestamp",
"documentation":"The timestamp when the flow definition was created.
"
},
- "HumanLoopRequestSource":{"shape":"HumanLoopRequestSource"},
+ "HumanLoopRequestSource":{
+ "shape":"HumanLoopRequestSource",
+ "documentation":"Container for configuring the source of human task requests. Used to specify if Amazon Rekognition or Amazon Textract is used as an integration source.
"
+ },
"HumanLoopActivationConfig":{
"shape":"HumanLoopActivationConfig",
"documentation":"An object containing information about what triggers a human review workflow.
"
@@ -6854,7 +6860,7 @@
"EnvironmentArn":{
"type":"string",
"max":256,
- "pattern":"^arn:aws(-[\\w]+)*:sagemaker:.+:[0-9]{12}:environment/[a-z0-9](-*[a-z0-9]){0,62}$"
+ "pattern":"^arn:aws(-[\\w]+)*:sagemaker:.+:[0-9]{12}:environment/[a-z0-9]([-.]?[a-z0-9])*$"
},
"EnvironmentKey":{
"type":"string",
@@ -6924,7 +6930,7 @@
"documentation":"The list of tags that are associated with the experiment. You can use Search API to search on the tags.
"
}
},
- "documentation":"A summary of the properties of an experiment as returned by the Search API.
"
+ "documentation":"The properties of an experiment as returned by the Search API.
"
},
"ExperimentArn":{
"type":"string",
@@ -7068,18 +7074,18 @@
"members":{
"Name":{
"shape":"ResourcePropertyName",
- "documentation":"A property name. For example, TrainingJobName
. For the list of valid property names returned in a search result for each supported resource, see TrainingJob properties. You must specify a valid property name for the resource.
"
+ "documentation":"A resource property name. For example, TrainingJobName
. For valid property names, see SearchRecord. You must specify a valid property for the resource.
"
},
"Operator":{
"shape":"Operator",
- "documentation":"A Boolean binary operator that is used to evaluate the filter. The operator field contains one of the following values:
- Equals
-
The specified resource in Name
equals the specified Value
.
- NotEquals
-
The specified resource in Name
does not equal the specified Value
.
- GreaterThan
-
The specified resource in Name
is greater than the specified Value
. Not supported for text-based properties.
- GreaterThanOrEqualTo
-
The specified resource in Name
is greater than or equal to the specified Value
. Not supported for text-based properties.
- LessThan
-
The specified resource in Name
is less than the specified Value
. Not supported for text-based properties.
- LessThanOrEqualTo
-
The specified resource in Name
is less than or equal to the specified Value
. Not supported for text-based properties.
- Contains
-
Only supported for text-based properties. The word-list of the property contains the specified Value
. A SearchExpression
can include only one Contains
operator.
If you have specified a filter Value
, the default is Equals
.
"
+ "documentation":"A Boolean binary operator that is used to evaluate the filter. The operator field contains one of the following values:
- Equals
-
The value of Name
equals Value
.
- NotEquals
-
The value of Name
doesn't equal Value
.
- GreaterThan
-
The value of Name
is greater than Value
. Not supported for text properties.
- GreaterThanOrEqualTo
-
The value of Name
is greater than or equal to Value
. Not supported for text properties.
- LessThan
-
The value of Name
is less than Value
. Not supported for text properties.
- LessThanOrEqualTo
-
The value of Name
is less than or equal to Value
. Not supported for text properties.
- Contains
-
The value of Name
contains the string Value
. A SearchExpression
can include only one Contains
operator. Only supported for text properties.
- Exists
-
The Name
property exists.
- NotExists
-
The Name
property does not exist.
- In
-
The value of Name
is one of the comma delimited strings in Value
. Only supported for text properties.
"
},
"Value":{
"shape":"FilterValue",
- "documentation":"A value used with Resource
and Operator
to determine if objects satisfy the filter's condition. For numerical properties, Value
must be an integer or floating-point decimal. For timestamp properties, Value
must be an ISO 8601 date-time string of the following format: YYYY-mm-dd'T'HH:MM:SS
.
"
+ "documentation":"A value used with Name
and Operator
to determine which resources satisfy the filter's condition. For numerical properties, Value
must be an integer or floating-point decimal. For timestamp properties, Value
must be an ISO 8601 date-time string of the following format: YYYY-mm-dd'T'HH:MM:SS
.
"
}
},
- "documentation":"A conditional statement for a search expression that includes a resource property, a Boolean operator, and a value.
If you don't specify an Operator
and a Value
, the filter searches for only the specified property. For example, defining a Filter
for the FailureReason
for the TrainingJob
Resource
searches for training job objects that have a value in the FailureReason
field.
If you specify a Value
, but not an Operator
, Amazon SageMaker uses the equals operator as the default.
In search, there are several property types:
- Metrics
-
To define a metric filter, enter a value using the form \"Metrics.<name>\"
, where <name>
is a metric name. For example, the following filter searches for training jobs with an \"accuracy\"
metric greater than \"0.9\"
:
{
\"Name\": \"Metrics.accuracy\",
\"Operator\": \"GREATER_THAN\",
\"Value\": \"0.9\"
}
- HyperParameters
-
To define a hyperparameter filter, enter a value with the form \"HyperParameters.<name>\"
. Decimal hyperparameter values are treated as a decimal in a comparison if the specified Value
is also a decimal value. If the specified Value
is an integer, the decimal hyperparameter values are treated as integers. For example, the following filter is satisfied by training jobs with a \"learning_rate\"
hyperparameter that is less than \"0.5\"
:
{
\"Name\": \"HyperParameters.learning_rate\",
\"Operator\": \"LESS_THAN\",
\"Value\": \"0.5\"
}
- Tags
-
To define a tag filter, enter a value with the form \"Tags.<key>\"
.
"
+ "documentation":"A conditional statement for a search expression that includes a resource property, a Boolean operator, and a value. Resources that match the statement are returned in the results from the Search API.
If you specify a Value
, but not an Operator
, Amazon SageMaker uses the equals operator.
In search, there are several property types:
- Metrics
-
To define a metric filter, enter a value using the form \"Metrics.<name>\"
, where <name>
is a metric name. For example, the following filter searches for training jobs with an \"accuracy\"
metric greater than \"0.9\"
:
{
\"Name\": \"Metrics.accuracy\",
\"Operator\": \"GreaterThan\",
\"Value\": \"0.9\"
}
- HyperParameters
-
To define a hyperparameter filter, enter a value with the form \"HyperParameters.<name>\"
. Decimal hyperparameter values are treated as a decimal in a comparison if the specified Value
is also a decimal value. If the specified Value
is an integer, the decimal hyperparameter values are treated as integers. For example, the following filter is satisfied by training jobs with a \"learning_rate\"
hyperparameter that is less than \"0.5\"
:
{
\"Name\": \"HyperParameters.learning_rate\",
\"Operator\": \"LessThan\",
\"Value\": \"0.5\"
}
- Tags
-
To define a tag filter, enter a value with the form Tags.<key>
.
"
},
"FilterList":{
"type":"list",
@@ -7262,7 +7268,8 @@
"MXNET",
"ONNX",
"PYTORCH",
- "XGBOOST"
+ "XGBOOST",
+ "TFLITE"
]
},
"GenerateCandidateDefinitionsOnly":{"type":"boolean"},
@@ -7272,7 +7279,7 @@
"members":{
"Resource":{
"shape":"ResourceType",
- "documentation":"The name of the Amazon SageMaker resource to Search for.
"
+ "documentation":"The name of the Amazon SageMaker resource to search for.
"
},
"SuggestionQuery":{
"shape":"SuggestionQuery",
@@ -10833,7 +10840,7 @@
"documentation":"A list of filters. Each filter acts on a property. Filters must contain at least one Filters
value. For example, a NestedFilters
call might include a filter on the PropertyName
parameter of the InputDataConfig
property: InputDataConfig.DataSource.S3DataSource.S3Uri
.
"
}
},
- "documentation":"Defines a list of NestedFilters
objects. To satisfy the conditions specified in the NestedFilters
call, a resource must satisfy the conditions of all of the filters.
For example, you could define a NestedFilters
using the training job's InputDataConfig
property to filter on Channel
objects.
A NestedFilters
object contains multiple filters. For example, to find all training jobs whose name contains train
and that have cat/data
in their S3Uri
(specified in InputDataConfig
), you need to create a NestedFilters
object that specifies the InputDataConfig
property with the following Filter
objects:
-
'{Name:\"InputDataConfig.ChannelName\", \"Operator\":\"EQUALS\", \"Value\":\"train\"}',
-
'{Name:\"InputDataConfig.DataSource.S3DataSource.S3Uri\", \"Operator\":\"CONTAINS\", \"Value\":\"cat/data\"}'
"
+ "documentation":"A list of nested Filter objects. A resource must satisfy the conditions of all filters to be included in the results returned from the Search API.
For example, to filter on a training job's InputDataConfig
property with a specific channel name and S3Uri
prefix, define the following filters:
-
'{Name:\"InputDataConfig.ChannelName\", \"Operator\":\"Equals\", \"Value\":\"train\"}',
-
'{Name:\"InputDataConfig.DataSource.S3DataSource.S3Uri\", \"Operator\":\"Contains\", \"Value\":\"mybucket/catdata\"}'
"
},
"NestedFiltersList":{
"type":"list",
@@ -11400,6 +11407,82 @@
"ml.r5.24xlarge"
]
},
+ "ProcessingJob":{
+ "type":"structure",
+ "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
.
"
+ },
+ "ProcessingOutputConfig":{"shape":"ProcessingOutputConfig"},
+ "ProcessingJobName":{
+ "shape":"ProcessingJobName",
+ "documentation":"The name of the processing job.
"
+ },
+ "ProcessingResources":{"shape":"ProcessingResources"},
+ "StoppingCondition":{"shape":"ProcessingStoppingCondition"},
+ "AppSpecification":{"shape":"AppSpecification"},
+ "Environment":{
+ "shape":"ProcessingEnvironmentMap",
+ "documentation":"Sets the environment variables in the Docker container.
"
+ },
+ "NetworkConfig":{"shape":"NetworkConfig"},
+ "RoleArn":{
+ "shape":"RoleArn",
+ "documentation":"The ARN of the role used to create the processing job.
"
+ },
+ "ExperimentConfig":{"shape":"ExperimentConfig"},
+ "ProcessingJobArn":{
+ "shape":"ProcessingJobArn",
+ "documentation":"The ARN of the processing job.
"
+ },
+ "ProcessingJobStatus":{
+ "shape":"ProcessingJobStatus",
+ "documentation":"The status of the processing job.
"
+ },
+ "ExitMessage":{
+ "shape":"ExitMessage",
+ "documentation":"A string, up to one KB in size, that contains metadata from the processing container when the processing job exits.
"
+ },
+ "FailureReason":{
+ "shape":"FailureReason",
+ "documentation":"A string, up to one KB in size, that contains the reason a processing job failed, if it failed.
"
+ },
+ "ProcessingEndTime":{
+ "shape":"Timestamp",
+ "documentation":"The time that the processing job ended.
"
+ },
+ "ProcessingStartTime":{
+ "shape":"Timestamp",
+ "documentation":"The time that the processing job started.
"
+ },
+ "LastModifiedTime":{
+ "shape":"Timestamp",
+ "documentation":"The time the processing job was last modified.
"
+ },
+ "CreationTime":{
+ "shape":"Timestamp",
+ "documentation":"The time the processing job was created.
"
+ },
+ "MonitoringScheduleArn":{
+ "shape":"MonitoringScheduleArn",
+ "documentation":"The ARN of a monitoring schedule for an endpoint associated with this processing job.
"
+ },
+ "AutoMLJobArn":{
+ "shape":"AutoMLJobArn",
+ "documentation":"The Amazon Resource Name (ARN) of the AutoML job associated with this processing job.
"
+ },
+ "TrainingJobArn":{
+ "shape":"TrainingJobArn",
+ "documentation":"The ARN of the training job associated with this processing job.
"
+ },
+ "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 Amazon SageMaker processing job that is used to analyze data and evaluate models. For more information, see Process Data and Evaluate Models.
"
+ },
"ProcessingJobArn":{
"type":"string",
"max":256,
@@ -11573,7 +11656,7 @@
},
"S3InputMode":{
"shape":"ProcessingS3InputMode",
- "documentation":"Wether 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.
"
},
"S3DataDistributionType":{
"shape":"ProcessingS3DataDistributionType",
@@ -11581,7 +11664,7 @@
},
"S3CompressionType":{
"shape":"ProcessingS3CompressionType",
- "documentation":"Whether to use Gzip
compresion for Amazon S3 storage.
"
+ "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.
"
@@ -12223,22 +12306,22 @@
"members":{
"TrainingJob":{
"shape":"TrainingJob",
- "documentation":"A TrainingJob
object that is returned as part of a Search
request.
"
+ "documentation":"The properties of a training job.
"
},
"Experiment":{
"shape":"Experiment",
- "documentation":"A summary of the properties of an experiment.
"
+ "documentation":"The properties of an experiment.
"
},
"Trial":{
"shape":"Trial",
- "documentation":"A summary of the properties of a trial.
"
+ "documentation":"The properties of a trial.
"
},
"TrialComponent":{
"shape":"TrialComponent",
- "documentation":"A summary of the properties of a trial component.
"
+ "documentation":"The properties of a trial component.
"
}
},
- "documentation":"An individual search result record that contains a single resource object.
"
+ "documentation":"A single resource returned as part of the Search API response.
"
},
"SearchRequest":{
"type":"structure",
@@ -12250,7 +12333,7 @@
},
"SearchExpression":{
"shape":"SearchExpression",
- "documentation":"A Boolean conditional statement. Resource objects must satisfy this condition to be included in search results. You must provide at least one subexpression, filter, or nested filter. The maximum number of recursive SubExpressions
, NestedFilters
, and Filters
that can be included in a SearchExpression
object is 50.
"
+ "documentation":"A Boolean conditional statement. Resources must satisfy this condition to be included in search results. You must provide at least one subexpression, filter, or nested filter. The maximum number of recursive SubExpressions
, NestedFilters
, and Filters
that can be included in a SearchExpression
object is 50.
"
},
"SortBy":{
"shape":"ResourcePropertyName",
@@ -12262,11 +12345,11 @@
},
"NextToken":{
"shape":"NextToken",
- "documentation":"If more than MaxResults
resource objects match the specified SearchExpression
, the SearchResponse
includes a NextToken
. The NextToken
can be passed to the next SearchRequest
to continue retrieving results for the specified SearchExpression
and Sort
parameters.
"
+ "documentation":"If more than MaxResults
resources match the specified SearchExpression
, the response includes a NextToken
. The NextToken
can be passed to the next SearchRequest
to continue retrieving results.
"
},
"MaxResults":{
"shape":"MaxResults",
- "documentation":"The maximum number of results to return in a SearchResponse
.
",
+ "documentation":"The maximum number of results to return.
",
"box":true
}
}
@@ -12276,7 +12359,7 @@
"members":{
"Results":{
"shape":"SearchResultsList",
- "documentation":"A list of SearchResult
objects.
"
+ "documentation":"A list of SearchRecord
objects.
"
},
"NextToken":{
"shape":"NextToken",
@@ -12906,7 +12989,12 @@
"ml.c5.2xlarge",
"ml.c5.4xlarge",
"ml.c5.9xlarge",
- "ml.c5.18xlarge"
+ "ml.c5.18xlarge",
+ "ml.c5n.xlarge",
+ "ml.c5n.2xlarge",
+ "ml.c5n.4xlarge",
+ "ml.c5n.9xlarge",
+ "ml.c5n.18xlarge"
]
},
"TrainingInstanceTypes":{
@@ -13534,7 +13622,7 @@
"documentation":"A list of the components associated with the trial. For each component, a summary of the component's properties is included.
"
}
},
- "documentation":"A summary of the properties of a trial as returned by the Search API.
"
+ "documentation":"The properties of a trial as returned by the Search API.
"
},
"TrialArn":{
"type":"string",
@@ -13556,7 +13644,10 @@
"shape":"TrialComponentArn",
"documentation":"The Amazon Resource Name (ARN) of the trial component.
"
},
- "Source":{"shape":"TrialComponentSource"},
+ "Source":{
+ "shape":"TrialComponentSource",
+ "documentation":"The Amazon Resource Name (ARN) and job type of the source of the component.
"
+ },
"Status":{"shape":"TrialComponentStatus"},
"StartTime":{
"shape":"Timestamp",
@@ -13594,7 +13685,7 @@
},
"SourceDetail":{
"shape":"TrialComponentSourceDetail",
- "documentation":"The source of the trial component.>
"
+ "documentation":"Details of the source of the component.
"
},
"Tags":{
"shape":"TagList",
@@ -13605,7 +13696,7 @@
"documentation":"An array of the parents of the component. A parent is a trial the component is associated with and the experiment the trial is part of. A component might not have any parents.
"
}
},
- "documentation":"A summary of the properties of a trial component as returned by the Search API.
"
+ "documentation":"The properties of a trial component as returned by the Search API.
"
},
"TrialComponentArn":{
"type":"string",
@@ -13719,7 +13810,9 @@
"enum":[
"InProgress",
"Completed",
- "Failed"
+ "Failed",
+ "Stopping",
+ "Stopped"
]
},
"TrialComponentSimpleSummaries":{
@@ -13752,14 +13845,14 @@
"members":{
"SourceArn":{
"shape":"TrialComponentSourceArn",
- "documentation":"The Amazon Resource Name (ARN) of the source.
"
+ "documentation":"The source ARN.
"
},
"SourceType":{
"shape":"SourceType",
"documentation":"The source job type.
"
}
},
- "documentation":"The source of the trial component.
"
+ "documentation":"The Amazon Resource Name (ARN) and job type of the source of a trial component.
"
},
"TrialComponentSourceArn":{
"type":"string",
@@ -13773,9 +13866,16 @@
"shape":"TrialComponentSourceArn",
"documentation":"The Amazon Resource Name (ARN) of the source.
"
},
- "TrainingJob":{"shape":"TrainingJob"}
+ "TrainingJob":{
+ "shape":"TrainingJob",
+ "documentation":"Information about a training job that's the source of a trial component.
"
+ },
+ "ProcessingJob":{
+ "shape":"ProcessingJob",
+ "documentation":"Information about a processing job that's the source of a trial component.
"
+ }
},
- "documentation":"Detailed information about the source of a trial component.
"
+ "documentation":"Detailed information about the source of a trial component. Either ProcessingJob
or TrainingJob
is returned.
"
},
"TrialComponentStatus":{
"type":"structure",
@@ -14657,5 +14757,5 @@
"member":{"shape":"Workteam"}
}
},
- "documentation":"Provides APIs for creating and managing Amazon SageMaker resources.
"
+ "documentation":"Provides APIs for creating and managing Amazon SageMaker resources.
Other Resources:
"
}
From f3ca4e3b5c89f1b3e342dbefa724554ff276b2a4 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 16 Apr 2020 18:06:24 +0000
Subject: [PATCH 063/604] AWS Elemental MediaConvert Update: AWS Elemental
MediaConvert now allows you to specify your input captions frame rate for SCC
captions sources.
---
...ture-AWSElementalMediaConvert-f2d0dd4.json | 5 ++++
.../codegen-resources/service-2.json | 28 ++++++++++++++++++-
2 files changed, 32 insertions(+), 1 deletion(-)
create mode 100644 .changes/next-release/feature-AWSElementalMediaConvert-f2d0dd4.json
diff --git a/.changes/next-release/feature-AWSElementalMediaConvert-f2d0dd4.json b/.changes/next-release/feature-AWSElementalMediaConvert-f2d0dd4.json
new file mode 100644
index 000000000000..3c6da9aa892f
--- /dev/null
+++ b/.changes/next-release/feature-AWSElementalMediaConvert-f2d0dd4.json
@@ -0,0 +1,5 @@
+{
+ "type": "feature",
+ "category": "AWS Elemental MediaConvert",
+ "description": "AWS Elemental MediaConvert now allows you to specify your input captions frame rate for SCC captions sources."
+}
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 f5f44a1f7696..cfe5f757c87f 100644
--- a/services/mediaconvert/src/main/resources/codegen-resources/service-2.json
+++ b/services/mediaconvert/src/main/resources/codegen-resources/service-2.json
@@ -2142,6 +2142,22 @@
},
"documentation": "Set up captions in your outputs by first selecting them from your input here."
},
+ "CaptionSourceFramerate": {
+ "type": "structure",
+ "members": {
+ "FramerateDenominator": {
+ "shape": "__integerMin1Max1001",
+ "locationName": "framerateDenominator",
+ "documentation": "Specify the denominator of the fraction that represents the framerate for the setting Caption source framerate (CaptionSourceFramerate). Use this setting along with the setting Framerate numerator (framerateNumerator)."
+ },
+ "FramerateNumerator": {
+ "shape": "__integerMin1Max60000",
+ "locationName": "framerateNumerator",
+ "documentation": "Specify the numerator of the fraction that represents the framerate for the setting Caption source framerate (CaptionSourceFramerate). Use this setting along with the setting Framerate denominator (framerateDenominator)."
+ }
+ },
+ "documentation": "Ignore this setting unless your input captions format is SCC. To have the service compensate for differing framerates between your input captions and input video, specify the framerate of the captions file. Specify this value as a fraction, using the settings Framerate numerator (framerateNumerator) and Framerate denominator (framerateDenominator). For example, you might specify 24 / 1 for 24 fps, 25 / 1 for 25 fps, 24000 / 1001 for 23.976 fps, or 30000 / 1001 for 29.97 fps."
+ },
"CaptionSourceSettings": {
"type": "structure",
"members": {
@@ -4090,6 +4106,11 @@
"locationName": "convert608To708",
"documentation": "Specify whether this set of input captions appears in your outputs in both 608 and 708 format. If you choose Upconvert (UPCONVERT), MediaConvert includes the captions data in two ways: it passes the 608 data through using the 608 compatibility bytes fields of the 708 wrapper, and it also translates the 608 data into 708."
},
+ "Framerate": {
+ "shape": "CaptionSourceFramerate",
+ "locationName": "framerate",
+ "documentation": "Ignore this setting unless your input captions format is SCC. To have the service compensate for differing framerates between your input captions and input video, specify the framerate of the captions file. Specify this value as a fraction, using the settings Framerate numerator (framerateNumerator) and Framerate denominator (framerateDenominator). For example, you might specify 24 / 1 for 24 fps, 25 / 1 for 25 fps, 24000 / 1001 for 23.976 fps, or 30000 / 1001 for 29.97 fps."
+ },
"SourceFile": {
"shape": "__stringMin14PatternS3SccSCCTtmlTTMLDfxpDFXPStlSTLSrtSRTXmlXMLSmiSMIHttpsSccSCCTtmlTTMLDfxpDFXPStlSTLSrtSRTXmlXMLSmiSMI",
"locationName": "sourceFile",
@@ -9830,6 +9851,11 @@
"min": 1,
"max": 6
},
+ "__integerMin1Max60000": {
+ "type": "integer",
+ "min": 1,
+ "max": 60000
+ },
"__integerMin1Max64": {
"type": "integer",
"min": 1,
@@ -10390,4 +10416,4 @@
}
},
"documentation": "AWS Elemental MediaConvert"
-}
\ No newline at end of file
+}
From 52e20045aac4b5a05a5d47e47750c9c765686a91 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 16 Apr 2020 18:08:09 +0000
Subject: [PATCH 064/604] Updated endpoints.json.
---
.../feature-AWSSDKforJavav2-e97801d.json | 5 +
.../regions/internal/region/endpoints.json | 254 +++++++++++++++++-
2 files changed, 246 insertions(+), 13 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 efe6f4c5d5a9..aa6ed37b542c 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
@@ -615,35 +615,29 @@
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
- "fips-ca-central-1" : {
- "credentialScope" : {
- "region" : "ca-central-1"
- },
- "hostname" : "batch-fips.ca-central-1.amazonaws.com"
- },
"fips-us-east-1" : {
"credentialScope" : {
"region" : "us-east-1"
},
- "hostname" : "batch-fips.us-east-1.amazonaws.com"
+ "hostname" : "fips.batch.us-east-1.amazonaws.com"
},
"fips-us-east-2" : {
"credentialScope" : {
"region" : "us-east-2"
},
- "hostname" : "batch-fips.us-east-2.amazonaws.com"
+ "hostname" : "fips.batch.us-east-2.amazonaws.com"
},
"fips-us-west-1" : {
"credentialScope" : {
"region" : "us-west-1"
},
- "hostname" : "batch-fips.us-west-1.amazonaws.com"
+ "hostname" : "fips.batch.us-west-1.amazonaws.com"
},
"fips-us-west-2" : {
"credentialScope" : {
"region" : "us-west-2"
},
- "hostname" : "batch-fips.us-west-2.amazonaws.com"
+ "hostname" : "fips.batch.us-west-2.amazonaws.com"
},
"me-south-1" : { },
"sa-east-1" : { },
@@ -1662,6 +1656,36 @@
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
+ "fips-ca-central-1" : {
+ "credentialScope" : {
+ "region" : "ca-central-1"
+ },
+ "hostname" : "ec2-fips.ca-central-1.amazonaws.com"
+ },
+ "fips-us-east-1" : {
+ "credentialScope" : {
+ "region" : "us-east-1"
+ },
+ "hostname" : "ec2-fips.us-east-1.amazonaws.com"
+ },
+ "fips-us-east-2" : {
+ "credentialScope" : {
+ "region" : "us-east-2"
+ },
+ "hostname" : "ec2-fips.us-east-2.amazonaws.com"
+ },
+ "fips-us-west-1" : {
+ "credentialScope" : {
+ "region" : "us-west-1"
+ },
+ "hostname" : "ec2-fips.us-west-1.amazonaws.com"
+ },
+ "fips-us-west-2" : {
+ "credentialScope" : {
+ "region" : "us-west-2"
+ },
+ "hostname" : "ec2-fips.us-west-2.amazonaws.com"
+ },
"me-south-1" : { },
"sa-east-1" : { },
"us-east-1" : { },
@@ -1826,6 +1850,114 @@
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
+ "fips-ap-east-1" : {
+ "credentialScope" : {
+ "region" : "ap-east-1"
+ },
+ "hostname" : "elasticfilesystem-fips.ap-east-1.amazonaws.com"
+ },
+ "fips-ap-northeast-1" : {
+ "credentialScope" : {
+ "region" : "ap-northeast-1"
+ },
+ "hostname" : "elasticfilesystem-fips.ap-northeast-1.amazonaws.com"
+ },
+ "fips-ap-northeast-2" : {
+ "credentialScope" : {
+ "region" : "ap-northeast-2"
+ },
+ "hostname" : "elasticfilesystem-fips.ap-northeast-2.amazonaws.com"
+ },
+ "fips-ap-south-1" : {
+ "credentialScope" : {
+ "region" : "ap-south-1"
+ },
+ "hostname" : "elasticfilesystem-fips.ap-south-1.amazonaws.com"
+ },
+ "fips-ap-southeast-1" : {
+ "credentialScope" : {
+ "region" : "ap-southeast-1"
+ },
+ "hostname" : "elasticfilesystem-fips.ap-southeast-1.amazonaws.com"
+ },
+ "fips-ap-southeast-2" : {
+ "credentialScope" : {
+ "region" : "ap-southeast-2"
+ },
+ "hostname" : "elasticfilesystem-fips.ap-southeast-2.amazonaws.com"
+ },
+ "fips-ca-central-1" : {
+ "credentialScope" : {
+ "region" : "ca-central-1"
+ },
+ "hostname" : "elasticfilesystem-fips.ca-central-1.amazonaws.com"
+ },
+ "fips-eu-central-1" : {
+ "credentialScope" : {
+ "region" : "eu-central-1"
+ },
+ "hostname" : "elasticfilesystem-fips.eu-central-1.amazonaws.com"
+ },
+ "fips-eu-north-1" : {
+ "credentialScope" : {
+ "region" : "eu-north-1"
+ },
+ "hostname" : "elasticfilesystem-fips.eu-north-1.amazonaws.com"
+ },
+ "fips-eu-west-1" : {
+ "credentialScope" : {
+ "region" : "eu-west-1"
+ },
+ "hostname" : "elasticfilesystem-fips.eu-west-1.amazonaws.com"
+ },
+ "fips-eu-west-2" : {
+ "credentialScope" : {
+ "region" : "eu-west-2"
+ },
+ "hostname" : "elasticfilesystem-fips.eu-west-2.amazonaws.com"
+ },
+ "fips-eu-west-3" : {
+ "credentialScope" : {
+ "region" : "eu-west-3"
+ },
+ "hostname" : "elasticfilesystem-fips.eu-west-3.amazonaws.com"
+ },
+ "fips-me-south-1" : {
+ "credentialScope" : {
+ "region" : "me-south-1"
+ },
+ "hostname" : "elasticfilesystem-fips.me-south-1.amazonaws.com"
+ },
+ "fips-sa-east-1" : {
+ "credentialScope" : {
+ "region" : "sa-east-1"
+ },
+ "hostname" : "elasticfilesystem-fips.sa-east-1.amazonaws.com"
+ },
+ "fips-us-east-1" : {
+ "credentialScope" : {
+ "region" : "us-east-1"
+ },
+ "hostname" : "elasticfilesystem-fips.us-east-1.amazonaws.com"
+ },
+ "fips-us-east-2" : {
+ "credentialScope" : {
+ "region" : "us-east-2"
+ },
+ "hostname" : "elasticfilesystem-fips.us-east-2.amazonaws.com"
+ },
+ "fips-us-west-1" : {
+ "credentialScope" : {
+ "region" : "us-west-1"
+ },
+ "hostname" : "elasticfilesystem-fips.us-west-1.amazonaws.com"
+ },
+ "fips-us-west-2" : {
+ "credentialScope" : {
+ "region" : "us-west-2"
+ },
+ "hostname" : "elasticfilesystem-fips.us-west-2.amazonaws.com"
+ },
"me-south-1" : { },
"sa-east-1" : { },
"us-east-1" : { },
@@ -2839,6 +2971,30 @@
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
+ "fips-us-east-1" : {
+ "credentialScope" : {
+ "region" : "us-east-1"
+ },
+ "hostname" : "lambda-fips.us-east-1.amazonaws.com"
+ },
+ "fips-us-east-2" : {
+ "credentialScope" : {
+ "region" : "us-east-2"
+ },
+ "hostname" : "lambda-fips.us-east-2.amazonaws.com"
+ },
+ "fips-us-west-1" : {
+ "credentialScope" : {
+ "region" : "us-west-1"
+ },
+ "hostname" : "lambda-fips.us-west-1.amazonaws.com"
+ },
+ "fips-us-west-2" : {
+ "credentialScope" : {
+ "region" : "us-west-2"
+ },
+ "hostname" : "lambda-fips.us-west-2.amazonaws.com"
+ },
"me-south-1" : { },
"sa-east-1" : { },
"us-east-1" : { },
@@ -3385,6 +3541,12 @@
"region" : "us-east-1"
},
"hostname" : "organizations.us-east-1.amazonaws.com"
+ },
+ "fips-aws-global" : {
+ "credentialScope" : {
+ "region" : "us-east-1"
+ },
+ "hostname" : "organizations-fips.us-east-1.amazonaws.com"
}
},
"isRegionalized" : false,
@@ -5389,6 +5551,12 @@
}
}
},
+ "api.sagemaker" : {
+ "endpoints" : {
+ "cn-north-1" : { },
+ "cn-northwest-1" : { }
+ }
+ },
"apigateway" : {
"endpoints" : {
"cn-north-1" : { },
@@ -5411,6 +5579,7 @@
},
"athena" : {
"endpoints" : {
+ "cn-north-1" : { },
"cn-northwest-1" : { }
}
},
@@ -5557,7 +5726,19 @@
"elasticfilesystem" : {
"endpoints" : {
"cn-north-1" : { },
- "cn-northwest-1" : { }
+ "cn-northwest-1" : { },
+ "fips-cn-north-1" : {
+ "credentialScope" : {
+ "region" : "cn-north-1"
+ },
+ "hostname" : "elasticfilesystem-fips.cn-north-1.amazonaws.com.cn"
+ },
+ "fips-cn-northwest-1" : {
+ "credentialScope" : {
+ "region" : "cn-northwest-1"
+ },
+ "hostname" : "elasticfilesystem-fips.cn-northwest-1.amazonaws.com.cn"
+ }
}
},
"elasticloadbalancing" : {
@@ -5612,6 +5793,7 @@
},
"glue" : {
"endpoints" : {
+ "cn-north-1" : { },
"cn-northwest-1" : { }
}
},
@@ -5659,6 +5841,12 @@
"cn-northwest-1" : { }
}
},
+ "kafka" : {
+ "endpoints" : {
+ "cn-north-1" : { },
+ "cn-northwest-1" : { }
+ }
+ },
"kinesis" : {
"endpoints" : {
"cn-north-1" : { },
@@ -5735,6 +5923,12 @@
"cn-northwest-1" : { }
}
},
+ "runtime.sagemaker" : {
+ "endpoints" : {
+ "cn-north-1" : { },
+ "cn-northwest-1" : { }
+ }
+ },
"s3" : {
"defaults" : {
"protocols" : [ "http", "https" ],
@@ -6268,8 +6462,18 @@
},
"ec2" : {
"endpoints" : {
- "us-gov-east-1" : { },
- "us-gov-west-1" : { }
+ "us-gov-east-1" : {
+ "credentialScope" : {
+ "region" : "us-gov-east-1"
+ },
+ "hostname" : "ec2.us-gov-east-1.amazonaws.com"
+ },
+ "us-gov-west-1" : {
+ "credentialScope" : {
+ "region" : "us-gov-west-1"
+ },
+ "hostname" : "ec2.us-gov-west-1.amazonaws.com"
+ }
}
},
"ecs" : {
@@ -6320,6 +6524,18 @@
},
"elasticfilesystem" : {
"endpoints" : {
+ "fips-us-gov-east-1" : {
+ "credentialScope" : {
+ "region" : "us-gov-east-1"
+ },
+ "hostname" : "elasticfilesystem-fips.us-gov-east-1.amazonaws.com"
+ },
+ "fips-us-gov-west-1" : {
+ "credentialScope" : {
+ "region" : "us-gov-west-1"
+ },
+ "hostname" : "elasticfilesystem-fips.us-gov-west-1.amazonaws.com"
+ },
"us-gov-east-1" : { },
"us-gov-west-1" : { }
}
@@ -6499,6 +6715,18 @@
},
"lambda" : {
"endpoints" : {
+ "fips-us-gov-east-1" : {
+ "credentialScope" : {
+ "region" : "us-gov-east-1"
+ },
+ "hostname" : "lambda-fips.us-gov-east-1.amazonaws.com"
+ },
+ "fips-us-gov-west-1" : {
+ "credentialScope" : {
+ "region" : "us-gov-west-1"
+ },
+ "hostname" : "lambda-fips.us-gov-west-1.amazonaws.com"
+ },
"us-gov-east-1" : { },
"us-gov-west-1" : { }
}
From 6814342cb6521eb75d7290eaf7d437359881d4bb Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 16 Apr 2020 18:08:45 +0000
Subject: [PATCH 065/604] Release 2.11.13. Updated CHANGELOG.md, README.md and
all pom.xml.
---
.changes/2.11.13.json | 81 +++++++++++++++++++
.../bugfix-NettyNIOHTTPClient-20fc78a.json | 5 --
...ture-AWSElementalMediaConvert-f2d0dd4.json | 5 --
.../next-release/feature-AWSGlue-2b2ed28.json | 5 --
.../feature-AWSIoTEvents-5b5f615.json | 5 --
.../feature-AWSLambda-a49bbfa.json | 5 --
.../feature-AWSMediaTailor-a9bd8f8.json | 5 --
.../feature-AWSMigrationHub-0c3dfcc.json | 5 --
.../feature-AWSSDKforJavav2-e97801d.json | 5 --
.../feature-AWSSecurityHub-7ee670a.json | 5 --
...ture-AmazonAugmentedAIRuntime-5c586bf.json | 5 --
...ure-AmazonElasticComputeCloud-44866a5.json | 5 --
...re-AmazonImportExportSnowball-e308cf7.json | 5 --
...azonRelationalDatabaseService-74ea430.json | 5 --
...eature-AmazonSageMakerService-6062776.json | 5 --
.../feature-EC2ImageBuilder-4420ca8.json | 5 --
CHANGELOG.md | 61 ++++++++++++++
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/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/netty-nio-client/pom.xml | 2 +-
http-clients/pom.xml | 2 +-
http-clients/url-connection-client/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/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/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/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/iam/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/iotthingsgraph/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/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/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/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/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/textract/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, 408 insertions(+), 341 deletions(-)
create mode 100644 .changes/2.11.13.json
delete mode 100644 .changes/next-release/bugfix-NettyNIOHTTPClient-20fc78a.json
delete mode 100644 .changes/next-release/feature-AWSElementalMediaConvert-f2d0dd4.json
delete mode 100644 .changes/next-release/feature-AWSGlue-2b2ed28.json
delete mode 100644 .changes/next-release/feature-AWSIoTEvents-5b5f615.json
delete mode 100644 .changes/next-release/feature-AWSLambda-a49bbfa.json
delete mode 100644 .changes/next-release/feature-AWSMediaTailor-a9bd8f8.json
delete mode 100644 .changes/next-release/feature-AWSMigrationHub-0c3dfcc.json
delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-e97801d.json
delete mode 100644 .changes/next-release/feature-AWSSecurityHub-7ee670a.json
delete mode 100644 .changes/next-release/feature-AmazonAugmentedAIRuntime-5c586bf.json
delete mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-44866a5.json
delete mode 100644 .changes/next-release/feature-AmazonImportExportSnowball-e308cf7.json
delete mode 100644 .changes/next-release/feature-AmazonRelationalDatabaseService-74ea430.json
delete mode 100644 .changes/next-release/feature-AmazonSageMakerService-6062776.json
delete mode 100644 .changes/next-release/feature-EC2ImageBuilder-4420ca8.json
diff --git a/.changes/2.11.13.json b/.changes/2.11.13.json
new file mode 100644
index 000000000000..112e1d2ce94d
--- /dev/null
+++ b/.changes/2.11.13.json
@@ -0,0 +1,81 @@
+{
+ "version": "2.11.13",
+ "date": "2020-04-16",
+ "entries": [
+ {
+ "type": "feature",
+ "category": "Amazon Augmented AI Runtime",
+ "description": "This release updates Amazon Augmented AI ListHumanLoops and StartHumanLoop APIs."
+ },
+ {
+ "type": "feature",
+ "category": "AWS Elemental MediaConvert",
+ "description": "AWS Elemental MediaConvert now allows you to specify your input captions frame rate for SCC captions sources."
+ },
+ {
+ "type": "feature",
+ "category": "AWS SecurityHub",
+ "description": "Added a new BatchUpdateFindings action, which allows customers to update selected information about their findings. Security Hub customers use BatchUpdateFindings to track their investigation into a finding. BatchUpdateFindings is intended to replace the UpdateFindings action, which is deprecated."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Elastic Compute Cloud",
+ "description": "Amazon EC2 now supports adding AWS resource tags for placement groups and key pairs, at creation time. The CreatePlacementGroup API will now return placement group information when created successfully. The DeleteKeyPair API now supports deletion by resource ID."
+ },
+ {
+ "type": "feature",
+ "category": "AWS Glue",
+ "description": "This release adds support for querying GetUserDefinedFunctions API without databaseName."
+ },
+ {
+ "type": "feature",
+ "category": "AWS MediaTailor",
+ "description": "AWS Elemental MediaTailor SDK now allows configuration of Avail Suppression."
+ },
+ {
+ "type": "feature",
+ "category": "AWS SDK for Java v2",
+ "description": "Updated service endpoint metadata."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Relational Database Service",
+ "description": "This release adds support for Amazon RDS Proxy with PostgreSQL compatibility."
+ },
+ {
+ "type": "feature",
+ "category": "EC2 Image Builder",
+ "description": "This release includes support for additional OS Versions within EC2 Image Builder."
+ },
+ {
+ "type": "feature",
+ "category": "AWS Lambda",
+ "description": "Sample code for AWS Lambda operations"
+ },
+ {
+ "type": "feature",
+ "category": "Amazon SageMaker Service",
+ "description": "Amazon SageMaker now supports running training jobs on ml.g4dn and ml.c5n instance types. Amazon SageMaker supports in \"IN\" operation for Search now."
+ },
+ {
+ "type": "bugfix",
+ "category": "Netty NIO HTTP Client",
+ "description": "Mark a connection as unreusable if there was a 5xx server error so that a new request will establish a new connection."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Import/Export Snowball",
+ "description": "An update to the Snowball Edge Storage Optimized device has been launched. Like the previous version, it has 80 TB of capacity for data transfer. Now it has 40 vCPUs, 80 GiB, and a 1 TiB SATA SSD of memory for EC2 compatible compute. The 80 TB of capacity can also be used for EBS-like volumes for AMIs."
+ },
+ {
+ "type": "feature",
+ "category": "AWS Migration Hub",
+ "description": "Adding ThrottlingException"
+ },
+ {
+ "type": "feature",
+ "category": "AWS IoT Events",
+ "description": "API update that allows users to customize event action payloads, and adds support for Amazon DynamoDB actions."
+ }
+ ]
+}
\ No newline at end of file
diff --git a/.changes/next-release/bugfix-NettyNIOHTTPClient-20fc78a.json b/.changes/next-release/bugfix-NettyNIOHTTPClient-20fc78a.json
deleted file mode 100644
index 5d801e5546e5..000000000000
--- a/.changes/next-release/bugfix-NettyNIOHTTPClient-20fc78a.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "category": "Netty NIO HTTP Client",
- "type": "bugfix",
- "description": "Mark a connection as unreusable if there was a 5xx server error so that a new request will establish a new connection."
-}
diff --git a/.changes/next-release/feature-AWSElementalMediaConvert-f2d0dd4.json b/.changes/next-release/feature-AWSElementalMediaConvert-f2d0dd4.json
deleted file mode 100644
index 3c6da9aa892f..000000000000
--- a/.changes/next-release/feature-AWSElementalMediaConvert-f2d0dd4.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Elemental MediaConvert",
- "description": "AWS Elemental MediaConvert now allows you to specify your input captions frame rate for SCC captions sources."
-}
diff --git a/.changes/next-release/feature-AWSGlue-2b2ed28.json b/.changes/next-release/feature-AWSGlue-2b2ed28.json
deleted file mode 100644
index 7d7c27ce2840..000000000000
--- a/.changes/next-release/feature-AWSGlue-2b2ed28.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Glue",
- "description": "This release adds support for querying GetUserDefinedFunctions API without databaseName."
-}
diff --git a/.changes/next-release/feature-AWSIoTEvents-5b5f615.json b/.changes/next-release/feature-AWSIoTEvents-5b5f615.json
deleted file mode 100644
index 5ba563bf5e5e..000000000000
--- a/.changes/next-release/feature-AWSIoTEvents-5b5f615.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "AWS IoT Events",
- "description": "API update that allows users to customize event action payloads, and adds support for Amazon DynamoDB actions."
-}
diff --git a/.changes/next-release/feature-AWSLambda-a49bbfa.json b/.changes/next-release/feature-AWSLambda-a49bbfa.json
deleted file mode 100644
index b2ed3b9e65b3..000000000000
--- a/.changes/next-release/feature-AWSLambda-a49bbfa.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Lambda",
- "description": "Sample code for AWS Lambda operations"
-}
diff --git a/.changes/next-release/feature-AWSMediaTailor-a9bd8f8.json b/.changes/next-release/feature-AWSMediaTailor-a9bd8f8.json
deleted file mode 100644
index 211032a81335..000000000000
--- a/.changes/next-release/feature-AWSMediaTailor-a9bd8f8.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "AWS MediaTailor",
- "description": "AWS Elemental MediaTailor SDK now allows configuration of Avail Suppression."
-}
diff --git a/.changes/next-release/feature-AWSMigrationHub-0c3dfcc.json b/.changes/next-release/feature-AWSMigrationHub-0c3dfcc.json
deleted file mode 100644
index 2fa61f507393..000000000000
--- a/.changes/next-release/feature-AWSMigrationHub-0c3dfcc.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Migration Hub",
- "description": "Adding ThrottlingException"
-}
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-AWSSecurityHub-7ee670a.json b/.changes/next-release/feature-AWSSecurityHub-7ee670a.json
deleted file mode 100644
index a09f9c6afae5..000000000000
--- a/.changes/next-release/feature-AWSSecurityHub-7ee670a.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "AWS SecurityHub",
- "description": "Added a new BatchUpdateFindings action, which allows customers to update selected information about their findings. Security Hub customers use BatchUpdateFindings to track their investigation into a finding. BatchUpdateFindings is intended to replace the UpdateFindings action, which is deprecated."
-}
diff --git a/.changes/next-release/feature-AmazonAugmentedAIRuntime-5c586bf.json b/.changes/next-release/feature-AmazonAugmentedAIRuntime-5c586bf.json
deleted file mode 100644
index 62b297a60ae9..000000000000
--- a/.changes/next-release/feature-AmazonAugmentedAIRuntime-5c586bf.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Augmented AI Runtime",
- "description": "This release updates Amazon Augmented AI ListHumanLoops and StartHumanLoop APIs."
-}
diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-44866a5.json b/.changes/next-release/feature-AmazonElasticComputeCloud-44866a5.json
deleted file mode 100644
index 4cd09a899e4c..000000000000
--- a/.changes/next-release/feature-AmazonElasticComputeCloud-44866a5.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Elastic Compute Cloud",
- "description": "Amazon EC2 now supports adding AWS resource tags for placement groups and key pairs, at creation time. The CreatePlacementGroup API will now return placement group information when created successfully. The DeleteKeyPair API now supports deletion by resource ID."
-}
diff --git a/.changes/next-release/feature-AmazonImportExportSnowball-e308cf7.json b/.changes/next-release/feature-AmazonImportExportSnowball-e308cf7.json
deleted file mode 100644
index ccb09d0d2a73..000000000000
--- a/.changes/next-release/feature-AmazonImportExportSnowball-e308cf7.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Import/Export Snowball",
- "description": "An update to the Snowball Edge Storage Optimized device has been launched. Like the previous version, it has 80 TB of capacity for data transfer. Now it has 40 vCPUs, 80 GiB, and a 1 TiB SATA SSD of memory for EC2 compatible compute. The 80 TB of capacity can also be used for EBS-like volumes for AMIs."
-}
diff --git a/.changes/next-release/feature-AmazonRelationalDatabaseService-74ea430.json b/.changes/next-release/feature-AmazonRelationalDatabaseService-74ea430.json
deleted file mode 100644
index e30d4102ef52..000000000000
--- a/.changes/next-release/feature-AmazonRelationalDatabaseService-74ea430.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Relational Database Service",
- "description": "This release adds support for Amazon RDS Proxy with PostgreSQL compatibility."
-}
diff --git a/.changes/next-release/feature-AmazonSageMakerService-6062776.json b/.changes/next-release/feature-AmazonSageMakerService-6062776.json
deleted file mode 100644
index c46ef22d289c..000000000000
--- a/.changes/next-release/feature-AmazonSageMakerService-6062776.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon SageMaker Service",
- "description": "Amazon SageMaker now supports running training jobs on ml.g4dn and ml.c5n instance types. Amazon SageMaker supports in \"IN\" operation for Search now."
-}
diff --git a/.changes/next-release/feature-EC2ImageBuilder-4420ca8.json b/.changes/next-release/feature-EC2ImageBuilder-4420ca8.json
deleted file mode 100644
index 10982da72639..000000000000
--- a/.changes/next-release/feature-EC2ImageBuilder-4420ca8.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type": "feature",
- "category": "EC2 Image Builder",
- "description": "This release includes support for additional OS Versions within EC2 Image Builder."
-}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 38dcc3e5a9ac..9fb335cf27da 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,64 @@
+# __2.11.13__ __2020-04-16__
+## __AWS Elemental MediaConvert__
+ - ### Features
+ - AWS Elemental MediaConvert now allows you to specify your input captions frame rate for SCC captions sources.
+
+## __AWS Glue__
+ - ### Features
+ - This release adds support for querying GetUserDefinedFunctions API without databaseName.
+
+## __AWS IoT Events__
+ - ### Features
+ - API update that allows users to customize event action payloads, and adds support for Amazon DynamoDB actions.
+
+## __AWS Lambda__
+ - ### Features
+ - Sample code for AWS Lambda operations
+
+## __AWS MediaTailor__
+ - ### Features
+ - AWS Elemental MediaTailor SDK now allows configuration of Avail Suppression.
+
+## __AWS Migration Hub__
+ - ### Features
+ - Adding ThrottlingException
+
+## __AWS SDK for Java v2__
+ - ### Features
+ - Updated service endpoint metadata.
+
+## __AWS SecurityHub__
+ - ### Features
+ - Added a new BatchUpdateFindings action, which allows customers to update selected information about their findings. Security Hub customers use BatchUpdateFindings to track their investigation into a finding. BatchUpdateFindings is intended to replace the UpdateFindings action, which is deprecated.
+
+## __Amazon Augmented AI Runtime__
+ - ### Features
+ - This release updates Amazon Augmented AI ListHumanLoops and StartHumanLoop APIs.
+
+## __Amazon Elastic Compute Cloud__
+ - ### Features
+ - Amazon EC2 now supports adding AWS resource tags for placement groups and key pairs, at creation time. The CreatePlacementGroup API will now return placement group information when created successfully. The DeleteKeyPair API now supports deletion by resource ID.
+
+## __Amazon Import/Export Snowball__
+ - ### Features
+ - An update to the Snowball Edge Storage Optimized device has been launched. Like the previous version, it has 80 TB of capacity for data transfer. Now it has 40 vCPUs, 80 GiB, and a 1 TiB SATA SSD of memory for EC2 compatible compute. The 80 TB of capacity can also be used for EBS-like volumes for AMIs.
+
+## __Amazon Relational Database Service__
+ - ### Features
+ - This release adds support for Amazon RDS Proxy with PostgreSQL compatibility.
+
+## __Amazon SageMaker Service__
+ - ### Features
+ - Amazon SageMaker now supports running training jobs on ml.g4dn and ml.c5n instance types. Amazon SageMaker supports in "IN" operation for Search now.
+
+## __EC2 Image Builder__
+ - ### Features
+ - This release includes support for additional OS Versions within EC2 Image Builder.
+
+## __Netty NIO HTTP Client__
+ - ### Bugfixes
+ - Mark a connection as unreusable if there was a 5xx server error so that a new request will establish a new connection.
+
# __2.11.12__ __2020-04-08__
## __AWS CloudFormation__
- ### Features
diff --git a/README.md b/README.md
index 234f8e69d7dc..76cb288bc4cb 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.11.12
+ 2.11.13
pom
import
@@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only:
software.amazon.awssdk
ec2
- 2.11.12
+ 2.11.13
software.amazon.awssdk
s3
- 2.11.12
+ 2.11.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.11.12
+ 2.11.13
```
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index 846ba817421b..c44dfa710457 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
archetype-lambda
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index 335e6ac73fda..0a91d771b635 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index 5521e8e7848b..17207e071048 100644
--- a/aws-sdk-java/pom.xml
+++ b/aws-sdk-java/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13-SNAPSHOT
+ 2.11.13
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index d180e37fa1e2..376593154db3 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index 5d3d4de10cf9..01b940fac838 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13-SNAPSHOT
+ 2.11.13
../pom.xml
bom
diff --git a/bundle/pom.xml b/bundle/pom.xml
index 90eb83ad3852..5330364a7c0e 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13-SNAPSHOT
+ 2.11.13
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 6b57c02ccb06..693d4f290140 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.11.13-SNAPSHOT
+ 2.11.13
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index 15d25cb18013..0efdfc2edc74 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13-SNAPSHOT
+ 2.11.13
codegen-lite
AWS Java SDK :: Code Generator Lite
diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml
index 2b056f71be14..3ef509b4e17c 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.11.13-SNAPSHOT
+ 2.11.13
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index 56f54da6b782..f2c83c860275 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13-SNAPSHOT
+ 2.11.13
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index e06bf28a0310..fa12d408fcc7 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index e448223b426d..bde0098db1fe 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index 9caf7fe0747e..64249509934b 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.13-SNAPSHOT
+ 2.11.13
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index 6d97a3a539df..699574441577 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.13-SNAPSHOT
+ 2.11.13
aws-core
diff --git a/core/pom.xml b/core/pom.xml
index ffbb209fa1e5..4cfd53050e41 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index 997ed084672c..c2a59982d029 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.13-SNAPSHOT
+ 2.11.13
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index 1d08314fd22e..4319a5fb6da5 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.11.13-SNAPSHOT
+ 2.11.13
4.0.0
diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml
index 3945b61e051f..4a81faf1d023 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.11.13-SNAPSHOT
+ 2.11.13
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index b2aa7bf04efd..310eca9a3a5e 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.11.13-SNAPSHOT
+ 2.11.13
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index 6a0e7fa320a6..8e7a6efb1899 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.11.13-SNAPSHOT
+ 2.11.13
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index 5c35a84eda86..ced5e22dd7cc 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.11.13-SNAPSHOT
+ 2.11.13
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index 08ce6a7af5b0..00f7ec2d05f4 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index 9859d026dcaa..569d1c700452 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index d1d97603ed0e..68159ed0cdec 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.13-SNAPSHOT
+ 2.11.13
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index 777351a0e940..4dad1e0fbba9 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.11.13-SNAPSHOT
+ 2.11.13
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index fd1b832895bb..027b94233faa 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.11.13-SNAPSHOT
+ 2.11.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 7ba2cc452794..25e512d26585 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.11.13-SNAPSHOT
+ 2.11.13
apache-client
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index 71aa34039764..da9e9d2e1f19 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.11.13-SNAPSHOT
+ 2.11.13
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index 8c4a6f391f21..0dbfa5356b78 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index c17caefd93ab..887ec5facf04 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.11.13-SNAPSHOT
+ 2.11.13
4.0.0
diff --git a/pom.xml b/pom.xml
index 939d25781c94..a34b19402547 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13-SNAPSHOT
+ 2.11.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 f08a9124472e..32d8b516e4ba 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13-SNAPSHOT
+ 2.11.13
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index a3d4186fff03..64cbf7fe8733 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.11.13-SNAPSHOT
+ 2.11.13
dynamodb-enhanced
${awsjavasdk.version}-PREVIEW
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index 0069483000d7..18f18845a8b0 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13-SNAPSHOT
+ 2.11.13
services-custom
AWS Java SDK :: Custom Services
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index ce77b207c712..86d5aba8dcfd 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 3219ad09e8c5..4d181217c130 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index dcb0e3c3d2b3..a4b441459cf3 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml
index 497a7a2ed637..17935b078629 100644
--- a/services/alexaforbusiness/pom.xml
+++ b/services/alexaforbusiness/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
alexaforbusiness
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index 02d56a3f8b1d..86cc876e256d 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index ce86b3819346..53f812eea497 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index 80f48f021cab..71c31973bc56 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index 9e5b561f20f6..aeeb00bb1d7c 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index 287712fe0904..b559d7d82b9a 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index c760c8d0d763..5a9478ddc7a4 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 92fdf66555fd..87efa2f83834 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index caf48d2cb01d..fece4e4d5dcf 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index 645797b30de1..a933141b11a9 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index 0a4b9b12e306..3c6d509c9fc4 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index 1325dda2bba2..1818ceec84fa 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
appsync
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index f574ae63a6ae..c3ccd81c366e 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index e9fea00ba3d5..35026843ad4e 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index 827d9c001fc5..d347cc91b058 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index 95e69ffdb53f..ebb0ca3f9137 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index 8eab551b85d2..39fe4b05969d 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 13ccf4dfdcbd..95bf5d1dd19e 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index aa9a633f6daf..5d6d6db4e64d 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index b657e4860420..c651c429e43e 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
cloud9
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index 0ffffed92f81..7d096f780003 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 0c9c4139ea8d..0b7f788508e4 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index 6f547517d361..b4d79e5a6f65 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index 0fd991887fe0..908bf49c7f62 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index f2c5187a02f2..6f134c03a51a 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index a07a3faa1ffb..a8d7cff94a89 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index 4e8f8c44eec5..4ef3a5ec480a 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index ee1a2fa842be..a7f0f9191a9a 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index 46def4eb26e6..568bb36b976b 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index 0eff29409762..7823220884f8 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index b5903f4eb806..b38b8e185e2a 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index cbb13d625317..1685d826bca1 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index dbae30667a5b..1b7dfedd482e 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index ff762f3aa28f..c0044527b426 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index 6296fb55fdb6..40a257ce14f6 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index 972dc8b3b7aa..9ae8fc4b6598 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index a4f3f6d89b67..1ace4e8d0c81 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index b8c38962d3df..82c770c1d9fb 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index 3282f4eb06ed..dea7eafdbbc6 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index 2f7b89e7baa6..84793143b23d 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index 8ba4f43b8597..0588fbf581d4 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index 7f34c6e2fa98..28c2b6a3363f 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
cognitoidentityprovider
AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service
diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml
index 3d3ad82c28a6..f5fc5518abd7 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index e121ee567732..e460a1af4aa2 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index b1b3518db068..3d79fbe50349 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index aa495112c748..a3557c1826cf 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index cd0c720ad793..d62a6efc4e94 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index 516a94a460c9..9d0c91b7c677 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index 6cff50328a41..064af2a0cb35 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index 60a66ccad037..d21186e1c27f 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
costandusagereport
AWS Java SDK :: Services :: AWS Cost and Usage Report
diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml
index a763eea2c573..be309e9ee466 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
costexplorer
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index b9983cd7270f..b6d90a44508f 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index f21fa1f4dd29..2b3d82586dc7 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index 014c25b5dd8f..129ffc8ccce1 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index 4d751a30b1c6..c4d98d54d813 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index 2cc7cdf8569d..ca29a09c88ae 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index a20f04f0db9a..42a83a27b9dc 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index a636d0b74b45..3eb83dc14771 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index 66e048f37a39..ceebc16bc5d1 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index a0ff72bde7f9..70e7ab87ed0f 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index 5506e66e3ea9..dbfbdffcce33 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index fa9247c90ae1..39f8bc631212 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index 6484473fc785..6b630bcf1775 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index f591ccc4df32..65686ab107bd 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 8ae93b1e25db..25042d493d9f 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index fb917bb77c42..81277d89a3db 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index 19e53a0dede0..29bd97bebfb0 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index 945650f1a618..f3d4998808ae 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index c382b07147b8..0af33c203443 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index 491672eccace..7c15452e24bc 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index 2823394aaf8e..26190494b2b8 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index 777d0a784783..a4a8a55c2067 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index a4fb7217c20e..96833c9d7c0b 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index 6e575eb650f3..b8fa345edc7b 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index ad7d3f9dcd6f..fd3405c41c0d 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index 595fd7941286..49ce05f18029 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index d2ec15161dc9..03c091eed151 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index ee28e0e60f04..492ed3f2c814 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index a946638c9446..0a469e368e8b 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index 17f13763f014..0dafda91722b 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index 7ac461a3c3ad..5ea93bf6f998 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index 9a7ceb63a71d..ee89c0acf953 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index 98e6f3d53dcb..faa7527e2d5d 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index 1b280b889fa0..caabbea2aced 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index 00fde3102e3f..13f50ab6d071 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index 35225f8feda0..e87605755104 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index b7106cbb88e1..668e276d13e6 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index 834952c1e1f6..d125597a45f6 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index 26048a8265a3..3922d4846053 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
glue
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index 7037ca6228dc..54d7af0a4a6a 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index fbdb371fdf63..6086312544cd 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index 55ba4aa77209..78f183284f34 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index c84c9e65b352..56f546a4a413 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index e2ad859ed4d6..b41588b6146f 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index 1dfe2090b0b6..8a5e5cc39793 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index ad53e8a50dc4..8765cb33d1d7 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index 9858b9498216..83b0fab22fa8 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index ae79f542af6d..c687864de101 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index 1e587e654e10..1691c9276020 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index 69a00a367749..eb967d04e468 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index 4be43b3e5263..6e79abc43c32 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index c01bd31ad4a8..1bab4b8c3b5d 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 0b3ac7bf8de2..632ad2b1c391 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index ace2d5477c84..63c5e00f2734 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index 18644da67b4d..96d9db5d5242 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index 552c0093466d..1b361cca042e 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index 736fae78ab30..323f0db14157 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 2e0194edd014..b98bcaf4cf2e 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index b7bda7293cb0..12bc73b6fc69 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index a5cde558a344..ea4b3580e422 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index 07836e310d48..ef0d899d67ab 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index c557bca29a25..78bd4e1093be 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index 48682a317b8e..2eb5c47dcc58 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index 8eefdf5331d8..0cf3c4f0fdc0 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index a631f2b8d991..18cd71d5818e 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index 846f3323a775..f465305e07b9 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index ef60413dc9d0..6d6514bf32e4 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index ce1681d17109..26f6f6116532 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index 9353237b5b0f..92ad1462b617 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index e97947decede..49471bd6c7b2 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index 0f59209891ec..5e5fa6411242 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index 5e548f87ffeb..e0cab3920ccc 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index 20ac0f0d2281..b3cff33e4631 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie/pom.xml b/services/macie/pom.xml
index 602e1b8fe598..a75e451c7b02 100644
--- a/services/macie/pom.xml
+++ b/services/macie/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
macie
AWS Java SDK :: Services :: Macie
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index 4e128d53ba33..899fe61979b0 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index 53dfc0b986a4..a817ddd9e9e1 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 0aa90bd61a2f..9107a5500138 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index bd499be4b9e2..ae80848c5361 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index e80752dd9fc5..c9e699c6d4ca 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 457b7c53b06e..968ef724175d 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index 7cf2121cd7ef..fd53a381b917 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 3d00b42bd83a..4c2b9084f58f 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index cc91439e327f..d0cdd5907dc0 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
mediapackage
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index b68eaaeca4e9..b37c031d7203 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index 204f04d2fed3..b878e14c8d0a 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index d6a16df22298..5fad7992a66d 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 7ea065df0198..d62f0c881fac 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index 52fc86553bee..8448cbc3ca26 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index d1616328c847..80ff70ae60c6 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index 1ad74bcfe8a9..8a5c5ecebb78 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index 2cb640c4c22d..eb4aaea318bb 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index d13d1c2efcfe..4faad9df115d 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index 5ecef1212cc7..be3c85585772 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index 1929a3c7bbee..b2845df33025 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index c392528034a5..cc7e1d63ce52 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index b42dfb89db05..0d41f7ed1f2a 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
opsworkscm
AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate
diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml
index 26b67c50e0df..fae4d82e6136 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index d8aa8bd126a6..be3802edd463 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index 0f980a2db729..d9f54d7a47a0 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index 31d223b4a1da..90b50a9a02fe 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 6fe1bca9d7e8..8134966e6fd0 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 8a878d808db3..fb0336857ea0 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index 9395f645a4e7..5a82f97cab6c 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index e2a8cf49a4cb..43e2323da74c 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index 2c746608b257..cb1504bf45ca 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index 8ab645c6d246..6573e69bc6f8 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index b1c7d9ce8ece..3845a494d0f1 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13-SNAPSHOT
+ 2.11.13
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index 6f57e7c6d74e..8f84e5a48bac 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
pricing
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index a23ed07983b1..c391c2101082 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index f2d4b61e21d2..8ea4efd4870e 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index 0294d2aa4e00..78714ae1fb7e 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index 00b1730aa76f..29428e2dc1fd 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 19f92d838c0c..4eb3ed10ade7 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index 10bd100880cd..aa1e35ad4220 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index 311f6cd0626c..c65b800fe794 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index 978e6f55e68c..b5b743f007e4 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index 2a2f7e7e7861..bf9ce7a4c00d 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index 3d0e35430a0f..9e812d043b33 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
resourcegroupstaggingapi
AWS Java SDK :: Services :: AWS Resource Groups Tagging API
diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml
index d3274a339cad..b73cdb0b07ee 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index 1ceb6dce40df..9a523846f8f8 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index 1e19d9a00676..b1e916211057 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index 687dac1a5ce3..e62614792974 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index a91fa8bc9ab4..3555cf49a127 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index 106fae4fd21c..86dafc54355a 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index d91ef14d9f64..acd79223c5ed 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index bdc0edd51b9c..4a61cb3cbf2c 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index 2ca77a77f70c..1fdf9c96cc5d 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index 087f820b153c..a80b36320de8 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index d9ade2167049..705f2015d881 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index 2f9439fe48a2..a92190e83070 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index 872880747073..2b89c5319299 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index 86a686cd8953..c5fb66b0db5d 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 2a6d883bebb8..78d24b395115 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index 460aa7c783dc..d19ef57b61f0 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index 2b2b1fee81cc..4ec034c28170 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index 69ac0cc67570..0a4d90d0aafc 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index 5ab1509f13cc..e0bbea714dcd 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index f2c179f21333..8696a6d23410 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index b10dcb1afbe4..fc166bc974f8 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index 9118b699274e..3d3502fa9efd 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index 1f81d2fc2472..b90fa1c44819 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index 7038a1bcb7b9..1ed63327ca50 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 03325f584ccc..853b48556fc4 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index a9b19bd9c531..79da70fa89b5 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index 3006f4b33690..33a9cd2e5587 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
ssm
AWS Java SDK :: Services :: AWS Simple Systems Management (SSM)
diff --git a/services/sso/pom.xml b/services/sso/pom.xml
index 984521e1b8c9..0a248fe485b0 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index 3e42c224fad7..dba261a7088a 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index 866cc57eb1c3..e43c30707cce 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index 320ee5abc102..8122bcffa943 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/support/pom.xml b/services/support/pom.xml
index 4feabddb59da..2d30a0b7fa45 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 753a0f0511f2..52ff2a984ec6 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index c57f35e679bf..bd5af186cc4f 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index ebce238311c7..183cfcb1ca40 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index c09dd083db00..a78ac98c169c 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index ad7fed3d56cb..902af0dafd2d 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index 088b703eaf06..e2f3ae097873 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
translate
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index 2977daf9b3f1..49901cf5076d 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index 4dc8c15d3f03..ea5c5b4d9414 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index 8e13eda8ee8e..4e25b26dcedb 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index c1701c2c381d..eb0802ad59be 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index 01bb1c4093d1..b814daaa876c 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index 4044c955d68a..166da5319171 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index e21b1b98606d..95b25c89de50 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.13
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index fd302ea146d1..9a72e40c804e 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13-SNAPSHOT
+ 2.11.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 0d24d7735377..2abc0ba50bb4 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.11.13-SNAPSHOT
+ 2.11.13
../../pom.xml
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index 18bb9c5303d1..9b91ee396cb3 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.11.13-SNAPSHOT
+ 2.11.13
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index 9af517e390cf..4f9cbfb794f9 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.11.13-SNAPSHOT
+ 2.11.13
../../pom.xml
4.0.0
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index f791c383a7ae..8930a2656cdc 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.11.13-SNAPSHOT
+ 2.11.13
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index b71a10f614f2..31db1c80d3ca 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.11.13-SNAPSHOT
+ 2.11.13
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index 5a6c4de98e70..18fccf9edc4e 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.11.13-SNAPSHOT
+ 2.11.13
../../pom.xml
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index 22b71c0d29a7..12ef15a0d9ff 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.11.13-SNAPSHOT
+ 2.11.13
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index dc1060ab364d..cf6448de3355 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.11.13-SNAPSHOT
+ 2.11.13
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index 364bb5c34df8..3e6fde625f20 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.11.13-SNAPSHOT
+ 2.11.13
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index 6e1587c896b5..fb0b1845a683 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.11.13-SNAPSHOT
+ 2.11.13
../../pom.xml
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index 209285e4cf9b..fa9b956d01f4 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.13-SNAPSHOT
+ 2.11.13
4.0.0
From b5fb047dc6daf876bb176dd8ef912ec177745288 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Thu, 16 Apr 2020 18:34:56 +0000
Subject: [PATCH 066/604] Update to next snapshot version: 2.11.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/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/netty-nio-client/pom.xml | 2 +-
http-clients/pom.xml | 2 +-
http-clients/url-connection-client/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/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/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/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/iam/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/iotthingsgraph/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/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/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/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/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/textract/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 +-
262 files changed, 262 insertions(+), 262 deletions(-)
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index c44dfa710457..8f4adb93efaa 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
archetype-lambda
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index 0a91d771b635..fa77b0f7f001 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index 17207e071048..4aaae45430b3 100644
--- a/aws-sdk-java/pom.xml
+++ b/aws-sdk-java/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13
+ 2.11.14-SNAPSHOT
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index 376593154db3..93e327d1cbae 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index 01b940fac838..1969f5d27025 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13
+ 2.11.14-SNAPSHOT
../pom.xml
bom
diff --git a/bundle/pom.xml b/bundle/pom.xml
index 5330364a7c0e..5e6862d634b3 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13
+ 2.11.14-SNAPSHOT
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 693d4f290140..767120cc5336 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.11.13
+ 2.11.14-SNAPSHOT
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index 0efdfc2edc74..40f26b42e963 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13
+ 2.11.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 3ef509b4e17c..fd9acd8f076c 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.11.13
+ 2.11.14-SNAPSHOT
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index f2c83c860275..a5f91292f547 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13
+ 2.11.14-SNAPSHOT
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index fa12d408fcc7..66c2b705c828 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index bde0098db1fe..5ab61ebc2e62 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index 64249509934b..fa177c54a2ae 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.13
+ 2.11.14-SNAPSHOT
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index 699574441577..8d0b0da948a2 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.13
+ 2.11.14-SNAPSHOT
aws-core
diff --git a/core/pom.xml b/core/pom.xml
index 4cfd53050e41..113c85ac7a62 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index c2a59982d029..26584d30579f 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.13
+ 2.11.14-SNAPSHOT
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index 4319a5fb6da5..55bcfc6b2cf7 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.11.13
+ 2.11.14-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml
index 4a81faf1d023..46135405e2c2 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.11.13
+ 2.11.14-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index 310eca9a3a5e..4c02ea5e3636 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.11.13
+ 2.11.14-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index 8e7a6efb1899..bf4d72223c0e 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.11.13
+ 2.11.14-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index ced5e22dd7cc..35fe1b1313b9 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.11.13
+ 2.11.14-SNAPSHOT
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index 00f7ec2d05f4..b3da783086d8 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index 569d1c700452..7ba1b20a0613 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index 68159ed0cdec..a64c864e1bbe 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.11.13
+ 2.11.14-SNAPSHOT
regions
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index 4dad1e0fbba9..a14715f49e8c 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.11.13
+ 2.11.14-SNAPSHOT
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index 027b94233faa..fa55a2c64dde 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.11.13
+ 2.11.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 25e512d26585..3eb08f2c1106 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.11.13
+ 2.11.14-SNAPSHOT
apache-client
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index da9e9d2e1f19..3cc44db8ce4c 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.11.13
+ 2.11.14-SNAPSHOT
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index 0dbfa5356b78..8cae86a2dcdd 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index 887ec5facf04..e5bae2b80422 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.11.13
+ 2.11.14-SNAPSHOT
4.0.0
diff --git a/pom.xml b/pom.xml
index a34b19402547..c7867a42d576 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13
+ 2.11.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 32d8b516e4ba..5385a8758a54 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13
+ 2.11.14-SNAPSHOT
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index 64cbf7fe8733..0d31cfa5eceb 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.11.13
+ 2.11.14-SNAPSHOT
dynamodb-enhanced
${awsjavasdk.version}-PREVIEW
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index 18f18845a8b0..768021924718 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13
+ 2.11.14-SNAPSHOT
services-custom
AWS Java SDK :: Custom Services
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index 86d5aba8dcfd..e9afbbcd74e6 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 4d181217c130..d79dc9834d90 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index a4b441459cf3..bf4ef6d5290a 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml
index 17935b078629..6f1949013cf2 100644
--- a/services/alexaforbusiness/pom.xml
+++ b/services/alexaforbusiness/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
alexaforbusiness
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index 86cc876e256d..64e975731909 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index 53f812eea497..508d5d0f6f55 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index 71c31973bc56..faf7dc8e688a 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index aeeb00bb1d7c..5e70416103a4 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index b559d7d82b9a..58faf37c2c19 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index 5a9478ddc7a4..695b536de1eb 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 87efa2f83834..2bde43c4c5e0 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index fece4e4d5dcf..a20db2c68fe8 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index a933141b11a9..bc6cff53dd4e 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index 3c6d509c9fc4..1db2dde6c708 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index 1818ceec84fa..c7f213addb13 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
appsync
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index c3ccd81c366e..26cb14112233 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index 35026843ad4e..028c2cb02840 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index d347cc91b058..251d5617eca6 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index ebb0ca3f9137..3e571122f9a8 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index 39fe4b05969d..ab656a5a67b0 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 95bf5d1dd19e..af0e31663829 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index 5d6d6db4e64d..34e66c1f2b29 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index c651c429e43e..9abaa436ef0b 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
cloud9
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index 7d096f780003..610ea1d6b0ab 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 0b7f788508e4..3657786adb82 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index b4d79e5a6f65..415d3399f03f 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index 908bf49c7f62..193e9848fac7 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index 6f134c03a51a..96a78b863002 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index a8d7cff94a89..52cff95e95d4 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index 4ef3a5ec480a..07dc9dffe272 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index a7f0f9191a9a..8b4149073af3 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index 568bb36b976b..5d45bfb11370 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index 7823220884f8..7a0a04e7fcd9 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index b38b8e185e2a..1c380002b5a1 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index 1685d826bca1..b584e6c060df 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index 1b7dfedd482e..63b2fc455ff7 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index c0044527b426..85b467b1550b 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index 40a257ce14f6..e8ab6ab3bd95 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index 9ae8fc4b6598..dbada222b91e 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index 1ace4e8d0c81..345e990badc9 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml
index 82c770c1d9fb..9a6c855769a6 100644
--- a/services/codestar/pom.xml
+++ b/services/codestar/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
codestar
AWS Java SDK :: Services :: AWS CodeStar
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index dea7eafdbbc6..bebf4e10740e 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index 84793143b23d..6114c380d147 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index 0588fbf581d4..946113c06221 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index 28c2b6a3363f..9b06272952c0 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.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 f5fc5518abd7..45b661c04e86 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index e460a1af4aa2..9db0765ce900 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index 3d79fbe50349..0f3cdc9f1612 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index a3557c1826cf..9c16414a89af 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index d62a6efc4e94..2e985709ffa9 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index 9d0c91b7c677..a3a6e6f2842c 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index 064af2a0cb35..dfd187880758 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index d21186e1c27f..289580ce73e1 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.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 be309e9ee466..69b35288ef3f 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
costexplorer
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index b6d90a44508f..c9a7fc0c8c17 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index 2b3d82586dc7..4941c28f1c07 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index 129ffc8ccce1..f7bde771b822 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index c4d98d54d813..b66d3af3d053 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index ca29a09c88ae..5327193bb935 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index 42a83a27b9dc..aaccfb590607 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index 3eb83dc14771..def1aa733f4b 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index ceebc16bc5d1..50940f9753b7 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index 70e7ab87ed0f..8e4f6fc68865 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index dbfbdffcce33..dc4a58ffbf2c 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index 39f8bc631212..cf0cc4239c47 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index 6b630bcf1775..12f54a752f9d 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index 65686ab107bd..4972714b23c4 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 25042d493d9f..90f03c2813f7 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index 81277d89a3db..7ff511f61fd3 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index 29bd97bebfb0..68338497fdff 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index f3d4998808ae..8af38f145416 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index 0af33c203443..aab5306d713e 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index 7c15452e24bc..7d2cf653ce98 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index 26190494b2b8..addc8784b9eb 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index a4a8a55c2067..8593a601d85a 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml
index 96833c9d7c0b..0df8d4f5233a 100644
--- a/services/elasticinference/pom.xml
+++ b/services/elasticinference/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
elasticinference
AWS Java SDK :: Services :: Elastic Inference
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index b8fa345edc7b..76f7b6affdbc 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index fd3405c41c0d..c1089330ba26 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index 49ce05f18029..735c69482862 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 03c091eed151..0aae3e25009a 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index 492ed3f2c814..74d7abded197 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index 0a469e368e8b..59ece8bee649 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index 0dafda91722b..3db3892b3f5f 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index 5ea93bf6f998..0ae335c53adc 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index ee89c0acf953..688c5c314793 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index faa7527e2d5d..e32c317231dd 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index caabbea2aced..75376a205ed9 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index 13f50ab6d071..d61d21421cf1 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index e87605755104..8d535ac90459 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index 668e276d13e6..a4b098212b55 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index d125597a45f6..6aec9c0fddb5 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index 3922d4846053..fed49cf6d209 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
glue
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index 54d7af0a4a6a..f44b3f023130 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index 6086312544cd..cc33656ca1c9 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index 78f183284f34..b609da9b0f96 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index 56f546a4a413..22f6e40bb40b 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index b41588b6146f..dada6ad84655 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index 8a5e5cc39793..7ffa5be4d2cd 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 8765cb33d1d7..c333e7191b24 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index 83b0fab22fa8..426af2c85be8 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml
index c687864de101..3f858e988d23 100644
--- a/services/iot1clickdevices/pom.xml
+++ b/services/iot1clickdevices/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
iot1clickdevices
AWS Java SDK :: Services :: IoT 1Click Devices Service
diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml
index 1691c9276020..3f8d42e971bd 100644
--- a/services/iot1clickprojects/pom.xml
+++ b/services/iot1clickprojects/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
iot1clickprojects
AWS Java SDK :: Services :: IoT 1Click Projects
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index eb967d04e468..003f807df58b 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index 6e79abc43c32..d8b7ce8825aa 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index 1bab4b8c3b5d..7edcb2eb3f83 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 632ad2b1c391..11434f541fac 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 63c5e00f2734..d236c508f49b 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index 96d9db5d5242..66b592f014c7 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index 1b361cca042e..8031c8d1b243 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index 323f0db14157..633d61fc1ec4 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index b98bcaf4cf2e..93e5d89d65c4 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index 12bc73b6fc69..7f734175f192 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index ea4b3580e422..f3ee21b9444d 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index ef0d899d67ab..9e9ab4a9902c 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index 78bd4e1093be..621f54396627 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index 2eb5c47dcc58..b64ddedb930b 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index 0cf3c4f0fdc0..58eb80fde12f 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index 18cd71d5818e..aac73a52e827 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index f465305e07b9..494f0c127bbb 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index 6d6514bf32e4..88302b31ee71 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index 26f6f6116532..056a40d313b3 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index 92ad1462b617..c58ac933079b 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index 49471bd6c7b2..383297ba7b12 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index 5e5fa6411242..3a3491dab0b7 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index e0cab3920ccc..c19cbb6065a3 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index b3cff33e4631..4ef16eb2e126 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie/pom.xml b/services/macie/pom.xml
index a75e451c7b02..e6b240917ab9 100644
--- a/services/macie/pom.xml
+++ b/services/macie/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
macie
AWS Java SDK :: Services :: Macie
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index 899fe61979b0..7e4effb58be9 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index a817ddd9e9e1..767c93369695 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 9107a5500138..d6e7889da992 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index ae80848c5361..155fab26c0bb 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index c9e699c6d4ca..9ba0a08f268d 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 968ef724175d..e902d2bca129 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index fd53a381b917..3d9ba4377ac7 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 4c2b9084f58f..e42234d75871 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index d0cdd5907dc0..69c7142e8aaa 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
mediapackage
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index b37c031d7203..4843570e2943 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index b878e14c8d0a..13a4812fd37a 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index 5fad7992a66d..6a7cb12b554c 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index d62f0c881fac..6ee351191e7b 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index 8448cbc3ca26..85bb98b4e881 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index 80ff70ae60c6..4f76290e6e0d 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml
index 8a5c5ecebb78..b3bb44bb9ff1 100644
--- a/services/mobile/pom.xml
+++ b/services/mobile/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
mobile
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index eb4aaea318bb..f8d49a19fce9 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index 4faad9df115d..f206ba13d61c 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index be3c85585772..590a5687a3c9 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index b2845df33025..4257b51f2aff 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml
index cc7e1d63ce52..313966a98297 100644
--- a/services/opsworks/pom.xml
+++ b/services/opsworks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
opsworks
AWS Java SDK :: Services :: AWS OpsWorks
diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml
index 0d41f7ed1f2a..ce5795f36131 100644
--- a/services/opsworkscm/pom.xml
+++ b/services/opsworkscm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.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 fae4d82e6136..74aac7aef6c0 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index be3802edd463..58636f20806c 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index d9f54d7a47a0..bd8d0d2e75d2 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index 90b50a9a02fe..ddb6f63f638b 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 8134966e6fd0..3ec1c609722f 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index fb0336857ea0..0a70050c7b3e 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index 5a82f97cab6c..9108da0dd31c 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index 43e2323da74c..7d78ddbd0d3e 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index cb1504bf45ca..02b19a819807 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index 6573e69bc6f8..3548a271e238 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index 3845a494d0f1..6de28fcb5a8f 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.11.13
+ 2.11.14-SNAPSHOT
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index 8f84e5a48bac..c4ebae4d355b 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
pricing
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index c391c2101082..540de4a274b4 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index 8ea4efd4870e..ddbd5402b931 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index 78714ae1fb7e..de62cdb1f624 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index 29428e2dc1fd..932e3b67632d 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 4eb3ed10ade7..f1f7270dc4a3 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index aa1e35ad4220..e8801853b432 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index c65b800fe794..ef2f7d06c27d 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index b5b743f007e4..44ed873503a8 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index bf9ce7a4c00d..37c344d60789 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index 9e812d043b33..7ef090628701 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.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 b73cdb0b07ee..4feb5eb90057 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index 9a523846f8f8..2aeafd28b03e 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index b1e916211057..886fe72da2ec 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index e62614792974..59948d3a930d 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index 3555cf49a127..253a8ab4c79e 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index 86dafc54355a..ba1ccfc18bb6 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index acd79223c5ed..c5162d46abab 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 4a61cb3cbf2c..f200ba079fcd 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index 1fdf9c96cc5d..c127d848e5b9 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index a80b36320de8..c486cc3edccb 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index 705f2015d881..085aa6940565 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index a92190e83070..3426519436c7 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index 2b89c5319299..e67b161920e6 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index c5fb66b0db5d..276aa15be5b8 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 78d24b395115..b19e4cb3fd52 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index d19ef57b61f0..10f947bb0cdf 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index 4ec034c28170..a07c17c87805 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index 0a4d90d0aafc..398ba3c101b8 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index e0bbea714dcd..9ea5cb9e131b 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index 8696a6d23410..969774c12596 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index fc166bc974f8..ec0321ff119f 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index 3d3502fa9efd..7382c9900e89 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/sms/pom.xml b/services/sms/pom.xml
index b90fa1c44819..4cf919b67b49 100644
--- a/services/sms/pom.xml
+++ b/services/sms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
sms
AWS Java SDK :: Services :: AWS Server Migration
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index 1ed63327ca50..823bf9130bd5 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 853b48556fc4..0fd37b100607 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index 79da70fa89b5..928fd3c51180 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index 33a9cd2e5587..02953eb33c09 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.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 0a248fe485b0..98549b38ed38 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index dba261a7088a..01459bbe6eb0 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index e43c30707cce..3401c9f462e8 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index 8122bcffa943..5979df845a92 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/support/pom.xml b/services/support/pom.xml
index 2d30a0b7fa45..dfb69a7e1816 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 52ff2a984ec6..d36cd808ac12 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index bd5af186cc4f..ff5f5467ac21 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index 183cfcb1ca40..1fca34612240 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index a78ac98c169c..bc285a0c45f9 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index 902af0dafd2d..93762fc1675a 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index e2f3ae097873..e71a1828e3c8 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
translate
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index 49901cf5076d..6c8c39d12574 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index ea5c5b4d9414..d9a1bab5571f 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index 4e25b26dcedb..1338521689bd 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml
index eb0802ad59be..9cafdfee2870 100644
--- a/services/worklink/pom.xml
+++ b/services/worklink/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
worklink
AWS Java SDK :: Services :: WorkLink
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index b814daaa876c..92656d284d65 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index 166da5319171..a5451c310cd1 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 95b25c89de50..4179443dda1a 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.14-SNAPSHOT
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index 9a72e40c804e..96b1e85cdc42 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.11.13
+ 2.11.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 2abc0ba50bb4..8709ccdf3a9f 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.11.13
+ 2.11.14-SNAPSHOT
../../pom.xml
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index 9b91ee396cb3..a702fbf75103 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.11.13
+ 2.11.14-SNAPSHOT
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index 4f9cbfb794f9..e916a18cff0f 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.11.13
+ 2.11.14-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index 8930a2656cdc..f4436ba8f049 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.11.13
+ 2.11.14-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 31db1c80d3ca..b631e1233284 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.11.13
+ 2.11.14-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index 18fccf9edc4e..f74d87045936 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.11.13
+ 2.11.14-SNAPSHOT
../../pom.xml
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index 12ef15a0d9ff..afdda5473b7f 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.11.13
+ 2.11.14-SNAPSHOT
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index cf6448de3355..f8ba3b193d5c 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.11.13
+ 2.11.14-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index 3e6fde625f20..91c4d833a1da 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.11.13
+ 2.11.14-SNAPSHOT
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index fb0b1845a683..017a5508925d 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.11.13
+ 2.11.14-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/utils/pom.xml b/utils/pom.xml
index fa9b956d01f4..24b6b459bf5e 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.11.13
+ 2.11.14-SNAPSHOT
4.0.0
From be5e7f12edd5cbf2c13cc57f0b79c291263680d8 Mon Sep 17 00:00:00 2001
From: Bret Ambrose
Date: Thu, 16 Apr 2020 15:29:27 -0700
Subject: [PATCH 067/604] Proxy support + slight creation/ownership rework
---
.../http/crt/AwsCrtAsyncHttpClient.java | 108 +++++---
.../awssdk/http/crt/ProxyConfiguration.java | 241 ++++++++++++++++++
.../AwsCrtHttpClientSpiVerificationTest.java | 69 +----
.../http/crt/CrtHttpClientTestUtils.java | 87 +++++++
.../http/crt/ProxyConfigurationTest.java | 111 ++++++++
.../awssdk/http/crt/ProxyWireMockTest.java | 134 ++++++++++
6 files changed, 651 insertions(+), 99 deletions(-)
create mode 100644 http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/ProxyConfiguration.java
create mode 100644 http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/CrtHttpClientTestUtils.java
create mode 100644 http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/ProxyConfigurationTest.java
create mode 100644 http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/ProxyWireMockTest.java
diff --git a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
index 2c163a8af7ad..275e3fdce7b9 100644
--- a/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
+++ b/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java
@@ -31,6 +31,7 @@
import software.amazon.awssdk.crt.http.HttpClientConnectionManager;
import software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions;
import software.amazon.awssdk.crt.http.HttpHeader;
+import software.amazon.awssdk.crt.http.HttpProxyOptions;
import software.amazon.awssdk.crt.http.HttpRequest;
import software.amazon.awssdk.crt.io.ClientBootstrap;
import software.amazon.awssdk.crt.io.EventLoopGroup;
@@ -75,7 +76,8 @@ public final class AwsCrtAsyncHttpClient implements SdkAsyncHttpClient {
private final SocketOptions socketOptions;
private final TlsContextOptions tlsContextOptions;
private final TlsContext tlsContext;
- private final int windowSize;
+ private final HttpProxyOptions proxyOptions;
+ private final int initialWindowSize;
private final int maxConnectionsPerEndpoint;
private final boolean manualWindowManagement;
private boolean isClosed = false;
@@ -85,46 +87,63 @@ private AwsCrtAsyncHttpClient(DefaultBuilder builder, AttributeMap config) {
Validate.isPositive(maxConns, "maxConns");
Validate.notNull(builder.cipherPreference, "cipherPreference");
- Validate.isPositive(builder.windowSize, "windowSize");
+ Validate.isPositive(builder.initialWindowSize, "initialWindowSize");
Validate.notNull(builder.eventLoopGroup, "eventLoopGroup");
Validate.notNull(builder.hostResolver, "hostResolver");
- /**
- * Must call own() in same order that CrtResources are created in, so that they will be closed in reverse order.
- *
- * Do NOT use Dependency Injection for Native CrtResources. It's possible to crash the JVM Process if Native
- * Resources are closed in the wrong order (Eg closing the Bootstrap/Threadpool when there are still open
- * connections). By creating and owning our own Native CrtResources we can guarantee that things are shutdown
- * in the correct order.
- */
-
- this.bootstrap = own(new ClientBootstrap(builder.eventLoopGroup, builder.hostResolver));
- this.socketOptions = own(new SocketOptions());
-
- /**
- * Sonar raises a false-positive that the TlsContextOptions created here will not be closed. Using a "NOSONAR"
- * comment so that Sonar will ignore that false-positive.
- */
- this.tlsContextOptions = own(TlsContextOptions.createDefaultClient() // NOSONAR
- .withCipherPreference(builder.cipherPreference)
- .withVerifyPeer(!config.get(SdkHttpConfigurationOption.TRUST_ALL_CERTIFICATES)));
-
- this.tlsContext = own(new TlsContext(this.tlsContextOptions));
- this.windowSize = builder.windowSize;
- this.maxConnectionsPerEndpoint = maxConns;
- this.manualWindowManagement = builder.manualWindowManagement;
+ try (ClientBootstrap bootstrap = new ClientBootstrap(builder.eventLoopGroup, builder.hostResolver);
+ SocketOptions socketOptions = new SocketOptions();
+ TlsContextOptions tlsContextOptions = TlsContextOptions.createDefaultClient() // NOSONAR
+ .withCipherPreference(builder.cipherPreference)
+ .withVerifyPeer(!config.get(SdkHttpConfigurationOption.TRUST_ALL_CERTIFICATES));
+ TlsContext tlsContext = new TlsContext(tlsContextOptions)) {
+
+ this.bootstrap = own(bootstrap);
+ this.socketOptions = own(socketOptions);
+ this.tlsContextOptions = own(tlsContextOptions);
+ this.tlsContext = own(tlsContext);
+
+ this.initialWindowSize = builder.initialWindowSize;
+ this.maxConnectionsPerEndpoint = maxConns;
+ this.manualWindowManagement = builder.manualWindowManagement;
+
+ ProxyConfiguration builderProxyConfig = builder.proxyConfiguration;
+ if (builderProxyConfig != null) {
+ HttpProxyOptions proxyOptions = new HttpProxyOptions();
+
+ proxyOptions.setHost(builderProxyConfig.host());
+ proxyOptions.setPort(builderProxyConfig.port());
+ if (builderProxyConfig.scheme() != null && builderProxyConfig.scheme().equalsIgnoreCase("https")) {
+ proxyOptions.setTlsContext(tlsContext);
+ }
+
+ if (builderProxyConfig.username() != null && builderProxyConfig.password() != null) {
+ proxyOptions.setAuthorizationUsername(builderProxyConfig.username());
+ proxyOptions.setAuthorizationPassword(builderProxyConfig.password());
+ proxyOptions.setAuthorizationType(HttpProxyOptions.HttpProxyAuthorizationType.Basic);
+ } else {
+ proxyOptions.setAuthorizationType(HttpProxyOptions.HttpProxyAuthorizationType.None);
+ }
+
+ this.proxyOptions = proxyOptions;
+ } else {
+ this.proxyOptions = null;
+ }
+ }
}
/**
* Marks a Native CrtResource as owned by the current Java Object.
- * This will guarantee that any owned CrtResources are closed in reverse order when this Java Object is closed.
*
* @param subresource The Resource to own.
* @param The CrtResource Type
* @return The CrtResource passed in
*/
private T own(T subresource) {
- ownedSubResources.push(subresource);
+ if (subresource != null) {
+ subresource.addRef();
+ ownedSubResources.push(subresource);
+ }
return subresource;
}
@@ -152,9 +171,10 @@ private HttpClientConnectionManager createConnectionPool(URI uri) {
.withSocketOptions(socketOptions)
.withTlsContext(tlsContext)
.withUri(uri)
- .withWindowSize(windowSize)
+ .withWindowSize(initialWindowSize)
.withMaxConnections(maxConnectionsPerEndpoint)
- .withManualWindowManagement(manualWindowManagement);
+ .withManualWindowManagement(manualWindowManagement)
+ .withProxyOptions(proxyOptions);
return HttpClientConnectionManager.create(options);
}
@@ -272,7 +292,7 @@ public CompletableFuture execute(AsyncExecuteRequest asyncRequest) {
}
AwsCrtAsyncHttpStreamAdapter crtToSdkAdapter =
- new AwsCrtAsyncHttpStreamAdapter(crtConn, requestFuture, asyncRequest, windowSize);
+ new AwsCrtAsyncHttpStreamAdapter(crtConn, requestFuture, asyncRequest, initialWindowSize);
HttpRequest crtRequest = toCrtRequest(uri, asyncRequest, crtToSdkAdapter);
// Submit the Request on this Connection
@@ -329,10 +349,10 @@ public interface Builder extends SdkAsyncHttpClient.Builder {
+ private final String scheme;
+ private final String host;
+ private final int port;
+
+ private final String username;
+ private final String password;
+
+ private ProxyConfiguration(BuilderImpl builder) {
+ this.scheme = builder.scheme;
+ this.host = builder.host;
+ this.port = builder.port;
+ this.username = builder.username;
+ this.password = builder.password;
+ }
+
+ /**
+ * @return The proxy scheme.
+ */
+ public String scheme() {
+ return scheme;
+ }
+
+ /**
+ * @return The proxy host.
+ */
+ public String host() {
+ return host;
+ }
+
+ /**
+ * @return The proxy port.
+ */
+ public int port() {
+ return port;
+ }
+
+ /**
+ * @return Basic authentication username
+ */
+ public String username() {
+ return username;
+ }
+
+ /**
+ * @return Basic authentication password
+ */
+ public String password() {
+ return password;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+
+ ProxyConfiguration that = (ProxyConfiguration) o;
+
+ if (port != that.port) {
+ return false;
+ }
+
+ if (!Objects.equals(this.scheme, that.scheme)) {
+ return false;
+ }
+
+ if (!Objects.equals(this.host, that.host)) {
+ return false;
+ }
+
+ if (!Objects.equals(this.username, that.username)) {
+ return false;
+ }
+
+ if (!Objects.equals(this.password, that.password)) {
+ return false;
+ }
+
+ return true;
+
+ }
+
+ @Override
+ public int hashCode() {
+ int result = scheme != null ? scheme.hashCode() : 0;
+ result = 31 * result + (host != null ? host.hashCode() : 0);
+ result = 31 * result + port;
+ result = 31 * result + (username != null ? username.hashCode() : 0);
+ result = 31 * result + (password != null ? password.hashCode() : 0);
+
+ return result;
+ }
+
+ @Override
+ public Builder toBuilder() {
+ return new BuilderImpl(this);
+ }
+
+ public static Builder builder() {
+ return new BuilderImpl();
+ }
+
+ /**
+ * Builder for {@link ProxyConfiguration}.
+ */
+ public interface Builder extends CopyableBuilder {
+
+ /**
+ * Set the hostname of the proxy.
+ * @param host The proxy host.
+ * @return This object for method chaining.
+ */
+ Builder host(String host);
+
+ /**
+ * Set the port that the proxy expects connections on.
+ * @param port The proxy port.
+ * @return This object for method chaining.
+ */
+ Builder port(int port);
+
+ /**
+ * The HTTP scheme to use for connecting to the proxy. Valid values are {@code http} and {@code https}.
+ *
+ * The client defaults to {@code http} if none is given.
+ *
+ * @param scheme The proxy scheme.
+ * @return This object for method chaining.
+ */
+ Builder scheme(String scheme);
+
+ /**
+ * The username to use for basic proxy authentication
+ *
+ * If not set, the client will not use basic authentication
+ *
+ * @param username The basic authentication username.
+ * @return This object for method chaining.
+ */
+ Builder username(String username);
+
+ /**
+ * The password to use for basic proxy authentication
+ *
+ * If not set, the client will not use basic authentication
+ *
+ * @param password The basic authentication password.
+ * @return This object for method chaining.
+ */
+ Builder password(String password);
+ }
+
+ private static final class BuilderImpl implements Builder {
+ private String scheme;
+ private String host;
+ private int port;
+ private String username;
+ private String password;
+
+ private BuilderImpl() {
+ }
+
+ private BuilderImpl(ProxyConfiguration proxyConfiguration) {
+ this.scheme = proxyConfiguration.scheme;
+ this.host = proxyConfiguration.host;
+ this.port = proxyConfiguration.port;
+ this.username = proxyConfiguration.username;
+ this.password = proxyConfiguration.password;
+ }
+
+ @Override
+ public Builder scheme(String scheme) {
+ this.scheme = scheme;
+ return this;
+ }
+
+ @Override
+ public Builder host(String host) {
+ this.host = host;
+ return this;
+ }
+
+ @Override
+ public Builder port(int port) {
+ this.port = port;
+ return this;
+ }
+
+ @Override
+ public Builder username(String username) {
+ this.username = username;
+ return this;
+ }
+
+ @Override
+ public Builder password(String password) {
+ this.password = password;
+ return this;
+ }
+
+ @Override
+ public ProxyConfiguration build() {
+ return new ProxyConfiguration(this);
+ }
+ }
+}
diff --git a/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/AwsCrtHttpClientSpiVerificationTest.java b/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/AwsCrtHttpClientSpiVerificationTest.java
index 8bec55c03b66..6b8ac3860dd9 100644
--- a/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/AwsCrtHttpClientSpiVerificationTest.java
+++ b/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/AwsCrtHttpClientSpiVerificationTest.java
@@ -30,7 +30,6 @@
import com.github.tomakehurst.wiremock.junit.WireMockRule;
import java.net.URI;
import java.nio.ByteBuffer;
-import java.util.Map;
import java.util.Random;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutionException;
@@ -48,7 +47,6 @@
import software.amazon.awssdk.crt.CrtResource;
import software.amazon.awssdk.crt.io.EventLoopGroup;
import software.amazon.awssdk.crt.io.HostResolver;
-import software.amazon.awssdk.http.SdkHttpFullRequest;
import software.amazon.awssdk.http.SdkHttpMethod;
import software.amazon.awssdk.http.SdkHttpRequest;
import software.amazon.awssdk.http.SdkHttpResponse;
@@ -112,7 +110,7 @@ public void onError(Throwable error) {
}
};
- SdkHttpRequest request = createRequest(URI.create("http://localhost:" + mockServer.port()));
+ SdkHttpRequest request = CrtHttpClientTestUtils.createRequest(URI.create("http://localhost:" + mockServer.port()));
CompletableFuture executeFuture = client.execute(AsyncExecuteRequest.builder()
.request(request)
@@ -144,7 +142,7 @@ public void onStream(Publisher stream) {
}
};
- SdkHttpRequest request = createRequest(URI.create("http://localhost:" + mockServer.port()));
+ SdkHttpRequest request = CrtHttpClientTestUtils.createRequest(URI.create("http://localhost:" + mockServer.port()));
CompletableFuture future = client.execute(AsyncExecuteRequest.builder()
.request(request)
@@ -192,7 +190,7 @@ public void onError(Throwable t) {
};
URI uri = URI.create("http://localhost:" + mockServer.port());
- SdkHttpRequest request = createRequest(uri, path, null, SdkHttpMethod.GET, emptyMap());
+ SdkHttpRequest request = CrtHttpClientTestUtils.createRequest(uri, path, null, SdkHttpMethod.GET, emptyMap());
CompletableFuture future = client.execute(AsyncExecuteRequest.builder()
.request(request)
@@ -214,44 +212,13 @@ private void makePutRequest(String path, byte[] reqBody, int expectedStatus) thr
final AtomicReference response = new AtomicReference<>(null);
final AtomicReference error = new AtomicReference<>(null);
- Subscriber subscriber = new Subscriber() {
- @Override
- public void onSubscribe(Subscription subscription) {
- subscription.request(Long.MAX_VALUE);
- }
-
- @Override
- public void onNext(ByteBuffer byteBuffer) {
- }
+ Subscriber subscriber = CrtHttpClientTestUtils.createDummySubscriber();
- @Override
- public void onError(Throwable throwable) {
- }
-
- @Override
- public void onComplete() {
- }
- };
-
- SdkAsyncHttpResponseHandler handler = new SdkAsyncHttpResponseHandler() {
- @Override
- public void onHeaders(SdkHttpResponse headers) {
- response.compareAndSet(null, headers);
- }
- @Override
- public void onStream(Publisher stream) {
- stream.subscribe(subscriber);
- streamReceived.complete(true);
- }
-
- @Override
- public void onError(Throwable t) {
- error.compareAndSet(null, t);
- }
- };
+ SdkAsyncHttpResponseHandler handler = CrtHttpClientTestUtils.createTestResponseHandler(response,
+ streamReceived, error, subscriber);
URI uri = URI.create("http://localhost:" + mockServer.port());
- SdkHttpRequest request = createRequest(uri, path, reqBody, SdkHttpMethod.PUT, emptyMap());
+ SdkHttpRequest request = CrtHttpClientTestUtils.createRequest(uri, path, reqBody, SdkHttpMethod.PUT, emptyMap());
CompletableFuture future = client.execute(AsyncExecuteRequest.builder()
.request(request)
@@ -278,29 +245,7 @@ public void testPutRequest() throws Exception {
makePutRequest(pathExpect404, randomBody, 404);
}
- private SdkHttpFullRequest createRequest(URI endpoint) {
- return createRequest(endpoint, "/", null, SdkHttpMethod.GET, emptyMap());
- }
- private SdkHttpFullRequest createRequest(URI endpoint,
- String resourcePath,
- byte[] body,
- SdkHttpMethod method,
- Map params) {
-
- String contentLength = (body == null) ? null : String.valueOf(body.length);
- return SdkHttpFullRequest.builder()
- .uri(endpoint)
- .method(method)
- .encodedPath(resourcePath)
- .applyMutation(b -> params.forEach(b::putRawQueryParameter))
- .applyMutation(b -> {
- b.putHeader("Host", endpoint.getHost());
- if (contentLength != null) {
- b.putHeader("Content-Length", contentLength);
- }
- }).build();
- }
private static class TestResponseHandler implements SdkAsyncHttpResponseHandler {
@Override
diff --git a/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/CrtHttpClientTestUtils.java b/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/CrtHttpClientTestUtils.java
new file mode 100644
index 000000000000..3d1619cf26b6
--- /dev/null
+++ b/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/CrtHttpClientTestUtils.java
@@ -0,0 +1,87 @@
+package software.amazon.awssdk.http.crt;
+
+import org.reactivestreams.Publisher;
+import org.reactivestreams.Subscriber;
+import org.reactivestreams.Subscription;
+import software.amazon.awssdk.http.SdkHttpFullRequest;
+import software.amazon.awssdk.http.SdkHttpMethod;
+import software.amazon.awssdk.http.SdkHttpResponse;
+import software.amazon.awssdk.http.async.SdkAsyncHttpResponseHandler;
+
+import java.net.URI;
+import java.nio.ByteBuffer;
+import java.util.Map;
+import java.util.concurrent.CompletableFuture;
+import java.util.concurrent.atomic.AtomicReference;
+
+import static java.util.Collections.emptyMap;
+
+public class CrtHttpClientTestUtils {
+
+ static Subscriber createDummySubscriber() {
+ return new Subscriber() {
+ @Override
+ public void onSubscribe(Subscription subscription) {
+ subscription.request(Long.MAX_VALUE);
+ }
+
+ @Override
+ public void onNext(ByteBuffer byteBuffer) {
+ }
+
+ @Override
+ public void onError(Throwable throwable) {
+ }
+
+ @Override
+ public void onComplete() {
+ }
+ };
+ }
+
+ static SdkAsyncHttpResponseHandler createTestResponseHandler(AtomicReference response,
+ CompletableFuture streamReceived,
+ AtomicReference error,
+ Subscriber subscriber) {
+ return new SdkAsyncHttpResponseHandler() {
+ @Override
+ public void onHeaders(SdkHttpResponse headers) {
+ response.compareAndSet(null, headers);
+ }
+ @Override
+ public void onStream(Publisher stream) {
+ stream.subscribe(subscriber);
+ streamReceived.complete(true);
+ }
+
+ @Override
+ public void onError(Throwable t) {
+ error.compareAndSet(null, t);
+ }
+ };
+ }
+
+ static SdkHttpFullRequest createRequest(URI endpoint) {
+ return createRequest(endpoint, "/", null, SdkHttpMethod.GET, emptyMap());
+ }
+
+ static SdkHttpFullRequest createRequest(URI endpoint,
+ String resourcePath,
+ byte[] body,
+ SdkHttpMethod method,
+ Map params) {
+
+ String contentLength = (body == null) ? null : String.valueOf(body.length);
+ return SdkHttpFullRequest.builder()
+ .uri(endpoint)
+ .method(method)
+ .encodedPath(resourcePath)
+ .applyMutation(b -> params.forEach(b::putRawQueryParameter))
+ .applyMutation(b -> {
+ b.putHeader("Host", endpoint.getHost());
+ if (contentLength != null) {
+ b.putHeader("Content-Length", contentLength);
+ }
+ }).build();
+ }
+}
diff --git a/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/ProxyConfigurationTest.java b/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/ProxyConfigurationTest.java
new file mode 100644
index 000000000000..3f01c7a7774d
--- /dev/null
+++ b/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/ProxyConfigurationTest.java
@@ -0,0 +1,111 @@
+/*
+ * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License").
+ * You may not use this file except in compliance with the License.
+ * A copy of the License is located at
+ *
+ * http://aws.amazon.com/apache2.0
+ *
+ * or in the "license" file accompanying this file. This file is distributed
+ * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
+ * express or implied. See the License for the specific language governing
+ * permissions and limitations under the License.
+ */
+
+package software.amazon.awssdk.http.crt;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import java.lang.reflect.InvocationTargetException;
+import java.lang.reflect.Method;
+import java.util.Random;
+import java.util.stream.Stream;
+import org.junit.Test;
+
+/**
+ * Tests for {@link ProxyConfiguration}.
+ */
+public class ProxyConfigurationTest {
+ private static final Random RNG = new Random();
+
+ @Test
+ public void build_setsAllProperties() {
+ verifyAllPropertiesSet(allPropertiesSetConfig());
+ }
+
+ @Test
+ public void toBuilder_roundTrip_producesExactCopy() {
+ ProxyConfiguration original = allPropertiesSetConfig();
+
+ ProxyConfiguration copy = original.toBuilder().build();
+
+ assertThat(copy).isEqualTo(original);
+ }
+
+ @Test
+ public void toBuilderModified_doesNotModifySource() {
+ ProxyConfiguration original = allPropertiesSetConfig();
+
+ ProxyConfiguration modified = setAllPropertiesToRandomValues(original.toBuilder()).build();
+
+ assertThat(original).isNotEqualTo(modified);
+ }
+
+ private ProxyConfiguration allPropertiesSetConfig() {
+ return setAllPropertiesToRandomValues(ProxyConfiguration.builder()).build();
+ }
+
+ private ProxyConfiguration.Builder setAllPropertiesToRandomValues(ProxyConfiguration.Builder builder) {
+ Stream.of(builder.getClass().getDeclaredMethods())
+ .filter(m -> m.getParameterCount() == 1 && m.getReturnType().equals(ProxyConfiguration.Builder.class))
+ .forEach(m -> {
+ try {
+ m.setAccessible(true);
+ setRandomValue(builder, m);
+ } catch (Exception e) {
+ throw new RuntimeException("Could not create random proxy config", e);
+ }
+ });
+ return builder;
+ }
+
+ private void setRandomValue(Object o, Method setter) throws InvocationTargetException, IllegalAccessException {
+ Class> paramClass = setter.getParameterTypes()[0];
+
+ if (String.class.equals(paramClass)) {
+ setter.invoke(o, randomString());
+ } else if (int.class.equals(paramClass)) {
+ setter.invoke(o, RNG.nextInt());
+ } else {
+ throw new RuntimeException("Don't know how create random value for type " + paramClass);
+ }
+ }
+
+ private void verifyAllPropertiesSet(ProxyConfiguration cfg) {
+ boolean hasNullProperty = Stream.of(cfg.getClass().getDeclaredMethods())
+ .filter(m -> !m.getReturnType().equals(Void.class) && m.getParameterCount() == 0)
+ .anyMatch(m -> {
+ m.setAccessible(true);
+ try {
+ return m.invoke(cfg) == null;
+ } catch (Exception e) {
+ return true;
+ }
+ });
+
+ if (hasNullProperty) {
+ throw new RuntimeException("Given configuration has unset property");
+ }
+ }
+
+ private String randomString() {
+ String alpha = "abcdefghijklmnopqrstuwxyz";
+
+ StringBuilder sb = new StringBuilder(16);
+ for (int i = 0; i < 16; ++i) {
+ sb.append(alpha.charAt(RNG.nextInt(16)));
+ }
+
+ return sb.toString();
+ }
+}
diff --git a/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/ProxyWireMockTest.java b/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/ProxyWireMockTest.java
new file mode 100644
index 000000000000..a720e0fc103d
--- /dev/null
+++ b/http-clients/aws-crt-client/src/test/java/software/amazon/awssdk/http/crt/ProxyWireMockTest.java
@@ -0,0 +1,134 @@
+/*
+ * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License").
+ * You may not use this file except in compliance with the License.
+ * A copy of the License is located at
+ *
+ * http://aws.amazon.com/apache2.0
+ *
+ * or in the "license" file accompanying this file. This file is distributed
+ * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
+ * express or implied. See the License for the specific language governing
+ * permissions and limitations under the License.
+ */
+
+
+package software.amazon.awssdk.http.crt;
+
+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.urlMatching;
+import static java.util.Collections.emptyMap;
+import static org.assertj.core.api.Assertions.assertThat;
+import com.github.tomakehurst.wiremock.WireMockServer;
+import com.github.tomakehurst.wiremock.core.WireMockConfiguration;
+import java.net.URI;
+import java.nio.ByteBuffer;
+import java.util.concurrent.CompletableFuture;
+import java.util.concurrent.TimeUnit;
+import java.util.concurrent.atomic.AtomicReference;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+import org.reactivestreams.Subscriber;
+import software.amazon.awssdk.crt.CrtResource;
+import software.amazon.awssdk.crt.io.EventLoopGroup;
+import software.amazon.awssdk.crt.io.HostResolver;
+import software.amazon.awssdk.http.SdkHttpMethod;
+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.http.async.SdkAsyncHttpResponseHandler;
+
+/**
+ * Tests for HTTP proxy functionality in the CRT client.
+ */
+public class ProxyWireMockTest {
+ private SdkAsyncHttpClient client;
+
+ private EventLoopGroup eventLoopGroup;
+ private HostResolver hostResolver;
+
+ private ProxyConfiguration proxyCfg;
+
+ private WireMockServer mockProxy = new WireMockServer(new WireMockConfiguration()
+ .dynamicPort()
+ .dynamicHttpsPort()
+ .enableBrowserProxying(true)); // make the mock proxy actually forward (to the mock server for our test)
+
+ private WireMockServer mockServer = new WireMockServer(new WireMockConfiguration()
+ .dynamicPort()
+ .dynamicHttpsPort());
+
+
+ @Before
+ public void setup() {
+ mockProxy.start();
+ mockServer.start();
+
+ mockServer.stubFor(get(urlMatching(".*")).willReturn(aResponse().withStatus(200).withBody("hello")));
+
+ proxyCfg = ProxyConfiguration.builder()
+ .host("localhost")
+ .port(mockProxy.port())
+ .build();
+
+
+ int numThreads = Runtime.getRuntime().availableProcessors();
+ eventLoopGroup = new EventLoopGroup(numThreads);
+ hostResolver = new HostResolver(eventLoopGroup);
+
+ client = AwsCrtAsyncHttpClient.builder()
+ .eventLoopGroup(eventLoopGroup)
+ .hostResolver(hostResolver)
+ .manualWindowManagement(true)
+ .proxyConfiguration(proxyCfg)
+ .build();
+ }
+
+ @After
+ public void teardown() {
+ mockServer.stop();
+ mockProxy.stop();
+ client.close();
+ eventLoopGroup.close();
+ hostResolver.close();
+ CrtResource.waitForNoResources();
+ }
+
+ /*
+ * Note the contrast between this test and the netty connect test. The CRT proxy implementation does not
+ * do a CONNECT call for requests using http, so by configuring the proxy mock to forward and the server mock
+ * to return success, we can actually create an end-to-end test.
+ *
+ * We have an outstanding request to change this behavior to match https (use a CONNECT call). Once that
+ * change happens, this test will break and need to be updated to be more like the netty one.
+ */
+ @Test
+ public void proxyConfigured_httpGet() throws Throwable {
+
+ CompletableFuture streamReceived = new CompletableFuture<>();
+ final AtomicReference response = new AtomicReference<>(null);
+ final AtomicReference error = new AtomicReference<>(null);
+
+ Subscriber