Class DynamoSerializerOptions
The Dynamo
Inheritance
System.Object
DynamoSerializerOptions
Namespace: LambdaSharp.DynamoDB.Serialization
Assembly: LambdaSharp.DynamoDB.Serialization.dll
Syntax
public class DynamoSerializerOptions
Properties
Converters
The Converters
property lists additional custom converters to use when (de)serializing values.
Custom converters take precedence over default converters. Default converters can be disabled entirely by
setting the UseDefaultConverters
property to false
.
Declaration
public List<IDynamoAttributeConverter> Converters { get; set; }
Property Value
Type | Description |
---|---|
System. |
IgnoreNullValues
The IgnoreNullValues
property controls if null
values are serialized as DynamoDB NULL attribute values or skipped.
Declaration
public bool IgnoreNullValues { get; set; }
Property Value
Type | Description |
---|---|
System. |
UseDefaultConverters
The UseDefaultConverters
property controls if the default DynamoDB converters are enabled.
Declaration
public bool UseDefaultConverters { get; set; }
Property Value
Type | Description |
---|---|
System. |