class Aws::S3::ObjectAcl

def load

Returns:
  • (self) -
def load
  resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
    @client.get_object_acl(
    bucket: @bucket_name,
    key: @object_key
  )
  end
  @data = resp.data
  self
end