Show / Hide Table of Contents

Class DynamoSerializerOptions

The DynamoSerializerOptions class provides properties to change the default (de)serialization behavior .

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.Collections.Generic.List<IDynamoAttributeConverter>

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.Boolean

UseDefaultConverters

The UseDefaultConverters property controls if the default DynamoDB converters are enabled.

Declaration
public bool UseDefaultConverters { get; set; }
Property Value
Type Description
System.Boolean
In This Article
Back to top Generated by DocFX