Amazon.DynamoDBv2.DocumentModel.Filter.ConvertToAttributeValues C# (CSharp) Method

ConvertToAttributeValues() protected static method

protected static ConvertToAttributeValues ( ) : List
return List
        protected static List<AttributeValue> ConvertToAttributeValues(params DynamoDBEntry[] values)
        {
            List<AttributeValue> attributes = new List<AttributeValue>();
            foreach (DynamoDBEntry value in values)
            {
                AttributeValue nativeValue = value.ConvertToAttributeValue();
                if (nativeValue != null)
                {
                    attributes.Add(nativeValue);
                }
            }
            return attributes;
        }