Skip to content
This repository has been archived by the owner on Nov 20, 2018. It is now read-only.

Release v2.0.14 - 2014-12-12

Compare
Choose a tag to compare
@awstools awstools released this 12 Dec 18:18
· 81 commits to master since this release

References: #124, #168

  • Feature - Aws::ElasticTranscoder - Added support for user metadata to
    Aws::ElasticTranscoder::Client.

  • Feature - Aws::Glacier - Added support for data retrieval policies to
    Aws::Glacier::Client.

  • Upgrading - Aws::SNS - Removed :topic_arn from the list of identifiers
    required to construct an Aws::SNS::Subscription. Subscription is no
    longer a sub-resource of Topic.

    sns = Aws::SNS::Resource.new
    
    # old
    subscription = sns.topic(topic_arn).subscription(subscription_arn)
    
    # new
    subscription = sns.subscription(subscription_arn)