Class: AWS::S3::ACL::Grantee::Builder

Inherits:
XmlGenerator
  • Object
show all
Defined in:
lib/aws/s3/acl.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(grantee) ⇒ Builder

Returns a new instance of Builder.



458
459
460
461
# File 'lib/aws/s3/acl.rb', line 458

def initialize(grantee)
  @grantee = grantee
  super()
end

Instance Method Details

#buildObject



463
464
465
466
467
# File 'lib/aws/s3/acl.rb', line 463

def build
  xml.tag!('Grantee', attributes) do
    representation
  end
end