Uses of Class
software.amazon.awssdk.enhanced.dynamodb.mapper.StaticAttribute.Builder
Packages that use StaticAttribute.Builder
-
Uses of StaticAttribute.Builder in software.amazon.awssdk.enhanced.dynamodb.mapper
Methods in software.amazon.awssdk.enhanced.dynamodb.mapper that return StaticAttribute.BuilderModifier and TypeMethodDescriptionStaticAttribute.Builder.addTag(StaticAttributeTag tag) Associates a singleStaticAttributeTagwith this attribute.StaticAttribute.Builder.attributeConverter(AttributeConverter<R> attributeConverter) AnAttributeConverterfor the attribute type (EnhancedType), that can convert this attribute.static <T,R> StaticAttribute.Builder<T, R> Constructs a new builder for this class using supplied types.static <T,R> StaticAttribute.Builder<T, R> StaticAttribute.builder(Class<T> itemClass, EnhancedType<R> attributeType) Constructs a new builder for this class using supplied types.static <T,R> StaticAttribute.Builder<T, R> StaticAttribute.builder(EnhancedType<T> itemType, EnhancedType<R> attributeType) Constructs a new builder for this class using supplied types.A function that can get the value of this attribute from a modelled item it composes.The name of this attributeStaticAttribute.Builder.setter(BiConsumer<T, R> setter) A function that can set the value of this attribute on a modelled item it composes.StaticAttribute.Builder.tags(Collection<StaticAttributeTag> tags) A collection ofStaticAttributeTagassociated with this attribute.StaticAttribute.Builder.tags(StaticAttributeTag... tags) A collection ofStaticAttributeTagassociated with this attribute.StaticAttribute.toBuilder()Converts an instance of this class to aStaticAttribute.Builderthat can be used to modify and reconstruct it.Method parameters in software.amazon.awssdk.enhanced.dynamodb.mapper with type arguments of type StaticAttribute.BuilderModifier and TypeMethodDescriptionStaticTableSchema.Builder.addAttribute(Class<R> attributeClass, Consumer<StaticAttribute.Builder<T, R>> staticAttribute) Adds a single attribute to the table schema that can be mapped between the data item object and the database record.StaticTableSchema.Builder.addAttribute(EnhancedType<R> attributeType, Consumer<StaticAttribute.Builder<T, R>> staticAttribute) Adds a single attribute to the table schema that can be mapped between the data item object and the database record.