Skip to content

Commit

Permalink
Added support for cross-regional resource warnings to Elastic Transcoder
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremeamia committed Feb 20, 2015
1 parent 90f0573 commit 3f8c13b
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,7 @@
* `Aws\CloudFront` - Added support for origin paths in web distributions.
* `Aws\Ecs` - Added support for specifying volumes and mount points. Also
switched the client to use a JSON protocol.
* `Aws\ElasticTranscoder` - Added support for cross-regional resource warnings.
* `Aws\Route53Domains` - Add iterators for `ListDomains` and `ListOperations`.

## 2.7.18 - 2015-02-12
Expand Down
Expand Up @@ -2525,6 +2525,22 @@
),
),
),
'Warnings' => array(
'type' => 'array',
'location' => 'json',
'items' => array(
'name' => 'Warning',
'type' => 'object',
'properties' => array(
'Code' => array(
'type' => 'string',
),
'Message' => array(
'type' => 'string',
),
),
),
),
),
),
'CreatePresetResponse' => array(
Expand Down Expand Up @@ -5053,6 +5069,22 @@
),
),
),
'Warnings' => array(
'type' => 'array',
'location' => 'json',
'items' => array(
'name' => 'Warning',
'type' => 'object',
'properties' => array(
'Code' => array(
'type' => 'string',
),
'Message' => array(
'type' => 'string',
),
),
),
),
),
),
'ReadPresetResponse' => array(
Expand Down Expand Up @@ -5363,6 +5395,22 @@
),
),
),
'Warnings' => array(
'type' => 'array',
'location' => 'json',
'items' => array(
'name' => 'Warning',
'type' => 'object',
'properties' => array(
'Code' => array(
'type' => 'string',
),
'Message' => array(
'type' => 'string',
),
),
),
),
),
),
'UpdatePipelineNotificationsResponse' => array(
Expand Down

0 comments on commit 3f8c13b

Please sign in to comment.