Class AttributeMap
java.lang.Object
software.amazon.awssdk.utils.AttributeMap
- All Implemented Interfaces:
- AutoCloseable,- ToCopyableBuilder<AttributeMap.Builder,,- AttributeMap> - SdkAutoCloseable
@SdkProtectedApi
@Immutable
public final class AttributeMap
extends Object
implements ToCopyableBuilder<AttributeMap.Builder,AttributeMap>, SdkAutoCloseable 
A map from 
AttributeMap.Key<T> to T that ensures the values stored with a key matches the type associated with
 the key. This does not implement Map because it has more strict typing requirements, but a Map can be
 converted
 to an {code AttributeMap} via the type-unsafe AttributeMap method.
 This can be used for storing configuration values (OptionKey.LOG_LEVEL to Boolean.TRUE), attaching
 arbitrary attributes to a request chain (RequestAttribute.CONFIGURATION to ClientConfiguration) or similar
 use-cases.- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic final classstatic classAn abstract class extended by pseudo-enums defining the key for data that is stored in theAttributeMap.static interfaceA value that is evaluated lazily.static interfaceA source for other values, provided to aAttributeMap.LazyValuewhen the value is resolved.
- 
Method SummaryModifier and TypeMethodDescriptionstatic AttributeMap.Builderbuilder()voidclose()<T> booleancontainsKey(AttributeMap.Key<T> typedKey) Return true if the provided key is configured in this map.copy()static AttributeMapempty()boolean<T> Tget(AttributeMap.Key<T> key) Get the value associated with the provided key from this map.inthashCode()merge(AttributeMap lowerPrecedence) Merges two AttributeMaps into one.Take this object and create a builder that contains all of the current property values of this object.toString()Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuildercopy
- 
Method Details- 
containsKeyReturn true if the provided key is configured in this map. Useful for differentiating between whether the provided key was not configured in the map or if it is configured, but its value is null.
- 
getGet the value associated with the provided key from this map. This will return null if the value is not set or if the value stored is null. These cases can be disambiguated usingcontainsKey(Key).
- 
mergeMerges two AttributeMaps into one. This object is given higher precedence then the attributes passed in as a parameter.- Parameters:
- lowerPrecedence- Options to merge into 'this' AttributeMap object. Any attribute already specified in 'this' object will be left as is since it has higher precedence.
- Returns:
- New options with values merged.
 
- 
empty
- 
closepublic void close()Description copied from interface:SdkAutoCloseable- Specified by:
- closein interface- AutoCloseable
- Specified by:
- closein interface- SdkAutoCloseable
 
- 
toString
- 
equals
- 
hashCode
- 
copy
- 
toBuilderDescription copied from interface:ToCopyableBuilderTake this object and create a builder that contains all of the current property values of this object.- Specified by:
- toBuilderin interface- ToCopyableBuilder<AttributeMap.Builder,- AttributeMap> 
- Returns:
- a builder for type T
 
- 
builder
 
-