Skip to content

Fix Route53 VPCs param name #672

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1,557 commits into from

Conversation

winebarrel
Copy link
Contributor

Unable to get VPN information of private zone:

route53 = AWS::Route53.new
hz = route53.hosted_zones['...']
p hz.vpcs #=> nil

vp_cs -> vpcs:

route53 = AWS::Route53.new
hz = route53.hosted_zones['...']
p hz.vpcs
#=> [{:vpc_region=>"ap-northeast-1", :vpc_id=>"vpc-XXX"}]

trevorrowe and others added 30 commits May 15, 2014 09:07
This makes it easier to filter by a paired tag key and value:

   ec2.instances.with_tag('key', 'value')

The #with_tag method provides an alternative the following:

   ec2.instances.filter('tag:key', 'value')
Route53 rerturns a NoSuchHostedZone error when you attempt
to describe a non-existant hosted zone.  This call was being
used to implement #exists? but it was not rescuing the error.
This adds support for the EC2 2014-05-01 API version.
The `AWS::EC2::Client#copy_snapshot` method will automatically
populated the `:destiation_region` and `:presigned_url` params
for the user to enable copy snapshot on encrypted volumes.
Amazon S3 now enables specifying a lifecycle configuration on versioned
buckets. Versioning provides protection against overwrites and deletes
by enabling you to preserve, retrieve, and restore every version of
every object in an Amazon S3 bucket. Using lifecycle rules, you can
automatically control the cost of storing multiple versions of your
objects.
Additional response data returned from the AssumeRoleWithSAML operation
in the AWS Security Token Service allows you to access information on
the subject, subjectType, issuer, audience, and nameQualifier for an
assumed role.
Includes Hebrew language support, and you can set the desired partition
count option to preconfigure the number of index partitions for a domain
that uses the m2.2xlarge search instance type.
Fix comment on WorkflowExecutionCollection#with_status and #count
…collection

Modified document of `option[:instance_tenancy]`
Add DBSecurityGroupName to AuthorizeDBSecurityGroupIngress
Clarify log_level configuration docs
…r-chain

use default credential provider in samples
According to
http://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectPUT.html

to enable redirect on an S3 object it needs to have
'x-amz-website-redirect' metadata key with new location value.

When creating an object like so:

```ruby

bucket.object['foo'].write('', metadata: { "x-amz-website-redirect" =>
"http://example.com" }, acl: :public_read )
```

`x-amz-website-redirect` gets prepended with `x-amz-meta-` prefix thus
breaking the redirect feature.

This also affects any other meta data key which starts with 'x-amz'.
Includes message attributes support.
Genki Sugawara and others added 25 commits November 6, 2014 15:41
s/erxisting/existing/
Correct EC2Provider expiration timeout
Fix a typo in add_queue_message.rb
AWS::SQS::Queue - use OpenSSL for Digest needs
@trevorrowe
Copy link
Contributor

Thanks for the fix! This has been merged into the aws-sdk-v1 branch by 4e22a77.

@trevorrowe trevorrowe closed this Feb 5, 2015
@winebarrel
Copy link
Contributor Author

Thank you for merge! :-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.