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

Release v2.0.12 - 2014-12-04

Compare
Choose a tag to compare
@awstools awstools released this 04 Dec 22:19
· 100 commits to master since this release

References: #167

  • Feature - Aws::S3 - Added a #public_url method to Aws::S3::Object.
    Use this method to generate a URL that can be pasted into the
    browser for objects with a "public-read" ACL.

    s3 = Aws::S3::Resource.new(region:'us-west-2')
    s3.bucket('aws-sdk').object('key').public_url
    #=> "https://aws-sdk.s3-us-west-2.amazonaws.com/key"
  • Feature - Aws::Route53 - Added support to Aws::Route53::Client for the new
    UpdateHostedZoneComment operation.

  • Feature - Aws::IAM - Added support to Aws::IAM::Client for the new
    GetAccountAuthorizationDetails operation.

  • Feature - Aws::Kinesis - Added support to Aws::Kinesis::Client for the new
    PutRecords operation.

    kinesis = Aws::Kinesis::Client.new
    kinesis.put_records(stream_name: '...', records:[...])
  • Issue - Aws::STS::Client - Resolved an issue with the endpoint used for Gov Cloud.
    Resolves issue #167.

  • Issue - Persistent Connections - Resolved an issue that prevented Aws::S3::Client
    from re-using HTTP connections.