Skip to content

Commit

Permalink
Added support for the Amazon Simple Systems Management Service (SSM)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremeamia committed Feb 18, 2015
1 parent cc00add commit 37304bc
Show file tree
Hide file tree
Showing 7 changed files with 1,124 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

## Next Release

* `Aws\Ssm` - Added support for the **Amazon Simple Systems Management Service
(SSM)**.
* `Aws\Sts` - Added support for regional endpoints.
* `Aws\CloudFront` - Added support for origin paths in web distributions.

Expand Down
6 changes: 6 additions & 0 deletions src/Aws/Common/Resources/aws-config.php
Expand Up @@ -281,6 +281,12 @@
'class' => 'Aws\Sqs\SqsClient'
),

'ssm' => array(
'alias' => 'Ssm',
'extends' => 'default_settings',
'class' => 'Aws\Ssm\SsmClient'
),

'storagegateway' => array(
'alias' => 'StorageGateway',
'extends' => 'default_settings',
Expand Down
24 changes: 24 additions & 0 deletions src/Aws/Ssm/Exception/SsmException.php
@@ -0,0 +1,24 @@
<?php
/**
* Copyright 2010-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/

namespace Aws\Ssm\Exception;

use Aws\Common\Exception\ServiceResponseException;

/**
* Default service exception class
*/
class SsmException extends ServiceResponseException {}

0 comments on commit 37304bc

Please sign in to comment.