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.Builder
AttributeMap. builder()
AttributeMap.Builder
AttributeMap.Builder. copy()
<T> AttributeMap.Builder
AttributeMap.Builder. put(AttributeMap.Key<T> key, T value)
Add a mapping between the provided key and value.AttributeMap.Builder
AttributeMap.Builder. putAll(Map<? extends AttributeMap.Key<?>,?> attributes)
Adds all the attributes from the map provided.AttributeMap.Builder
AttributeMap.Builder. putAll(AttributeMap attributes)
Put all of the attributes from the provided map into this one.<T> AttributeMap.Builder
AttributeMap.Builder. putLazy(AttributeMap.Key<T> key, AttributeMap.LazyValue<T> lazyValue)
Add a mapping between the provided key and value provider.<T> AttributeMap.Builder
AttributeMap.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.Builder
AttributeMap. toBuilder()
-