Uses of Class
software.amazon.awssdk.core.interceptor.ExecutionAttribute.DerivedAttributeBuilder
Packages that use ExecutionAttribute.DerivedAttributeBuilder
-
Uses of ExecutionAttribute.DerivedAttributeBuilder in software.amazon.awssdk.core.interceptor
Methods in software.amazon.awssdk.core.interceptor that return ExecutionAttribute.DerivedAttributeBuilderModifier and TypeMethodDescriptionstatic <T,U> ExecutionAttribute.DerivedAttributeBuilder<T, U> ExecutionAttribute.derivedBuilder(String name, Class<T> attributeType, Supplier<ExecutionAttribute<U>> realAttribute) This is the same asExecutionAttribute.derivedBuilder(String, Class, ExecutionAttribute), but the real attribute is loaded lazily at runtime.static <T,U> ExecutionAttribute.DerivedAttributeBuilder<T, U> ExecutionAttribute.derivedBuilder(String name, Class<T> attributeType, ExecutionAttribute<U> realAttribute) Create an execution attribute whose value is derived from another attribute.ExecutionAttribute.DerivedAttributeBuilder.readMapping(Function<U, T> readMapping) Set the "read" mapping for this derived attribute.ExecutionAttribute.DerivedAttributeBuilder.writeMapping(BiFunction<U, T, U> writeMapping) Set the "write" mapping for this derived attribute.