I'm currently using `[assembly: LambdaSerializer(typeof(Amazon.Lambda.Serialization.Json.JsonSerializer))]`. How can I make my json Camel Case instead of default PascalCasing ? Right now, I've to add `[JsonProperty(PropertyName = "fullName")]` for each property. Thanks !!