Uses of Class
software.amazon.awssdk.utils.AttributeMap.Builder
-
Packages that use AttributeMap.Builder Package Description software.amazon.awssdk.utils -
-
Uses of AttributeMap.Builder in software.amazon.awssdk.utils
Methods in software.amazon.awssdk.utils that return AttributeMap.Builder Modifier and Type Method Description static AttributeMap.BuilderAttributeMap. builder()AttributeMap.BuilderAttributeMap.Builder. copy()<T> AttributeMap.BuilderAttributeMap.Builder. put(AttributeMap.Key<T> key, T value)Add a mapping between the provided key and value.AttributeMap.BuilderAttributeMap.Builder. putAll(Map<? extends AttributeMap.Key<?>,?> attributes)Adds all the attributes from the map provided.AttributeMap.BuilderAttributeMap.Builder. putAll(AttributeMap attributes)Put all of the attributes from the provided map into this one.<T> AttributeMap.BuilderAttributeMap.Builder. putLazy(AttributeMap.Key<T> key, AttributeMap.LazyValue<T> lazyValue)Add a mapping between the provided key and value provider.<T> AttributeMap.BuilderAttributeMap.Builder. putLazyIfAbsent(AttributeMap.Key<T> key, AttributeMap.LazyValue<T> lazyValue)Equivalent toputLazy(Key, LazyValue), but does not assign the value if there is already a non-null value assigned for the provided key.AttributeMap.BuilderAttributeMap. toBuilder()
-