Change fields to be start with lower case based on examing of real AWS calls.

This commit is contained in:
Steve Pulec 2015-09-16 18:13:44 -04:00
commit 65dd7f7639
3 changed files with 29 additions and 25 deletions

View file

@ -34,7 +34,7 @@ class DataPipelineResponse(BaseResponse):
"HasMoreResults": False,
"Marker": None,
"PipelineIdList": [
{"Id": pipeline.pipeline_id, "Name": pipeline.name} for pipeline in pipelines
pipeline.to_meta_json() for pipeline in pipelines
]
})