class Aws::S3::MultipartUpload

def initialize(*args)

Options Hash: (**options)
  • :client (Client) --
  • :id (required, String) --
  • :object_key (required, String) --
  • :bucket_name (required, String) --
  • :client (Client) --

Overloads:
  • def initialize(options = {})
  • def initialize(bucket_name, object_key, id, options = {})

Parameters:
  • id (String) --
  • object_key (String) --
  • bucket_name (String) --
def initialize(*args)
  options = Hash === args.last ? args.pop.dup : {}
  @bucket_name = extract_bucket_name(args, options)
  @object_key = extract_object_key(args, options)
  @id = extract_id(args, options)
  @data = options.delete(:data)
  @client = options.delete(:client) || Client.new(options)
  @waiter_block_warned = false
end