Class DynamoObjectConverter
The Dynamo
Implements
Inherited Members
Namespace: LambdaSharp.DynamoDB.Serialization.Converters
Assembly: LambdaSharp.DynamoDB.Serialization.dll
Syntax
public class DynamoObjectConverter : ADynamoAttributeConverter, IDynamoAttributeConverter
Remarks
This converter should always be listed last as it has a broad set of types it matches.
Fields
Instance
The Instance class field exposes a reusable instance of the class.
Declaration
public static readonly DynamoObjectConverter Instance
Field Value
Type | Description |
---|---|
Dynamo |
Methods
CanConvert(Type)
The Can
Declaration
public override bool CanConvert(Type typeToConvert)
Parameters
Type | Name | Description |
---|---|---|
System. |
typeToConvert | The type to convert. |
Returns
Type | Description |
---|---|
System. |
|
Overrides
FromMap(Dictionary<String, AttributeValue>, Type, DynamoSerializerOptions)
The FromMap(Dictionary<String, AttributeValue>, Type, DynamoSerializerOptions) method converts a DynamoDB M attribute value to the type of the converter.
Declaration
public override object FromMap(Dictionary<string, AttributeValue> value, Type targetType, DynamoSerializerOptions options)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The DynamoDB attribute value to convert. |
System. |
targetType | The expected return type. |
Dynamo |
options | The deserialization options. |
Returns
Type | Description |
---|---|
System. |
An instance of type |
Overrides
ToAttributeValue(Object, Type, DynamoSerializerOptions)
The To
Declaration
public override AttributeValue ToAttributeValue(object value, Type targetType, DynamoSerializerOptions options)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The value to convert. |
System. |
targetType | The source value type. |
Dynamo |
options | The serialization options. |
Returns
Type | Description |
---|---|
Amazon. |
A DynamoDB attribute value, or |