class Aws::S3::MultipartUploadPart
def upload(options = {})
-
(Types::UploadPartOutput)
-
Options Hash:
(**options)
-
:request_payer
(String
) -- -
:sse_customer_key_md5
(String
) -- -
:sse_customer_key
(String
) -- -
:sse_customer_algorithm
(String
) -- -
:content_md5
(String
) -- -
:content_length
(Integer
) -- -
:body
(String, IO
) --
Parameters:
-
options
(Hash
) -- ({})
Other tags:
- Example: Request syntax with placeholder values -
def upload(options = {}) options = options.merge( bucket: @bucket_name, key: @object_key, upload_id: @multipart_upload_id, part_number: @part_number ) resp = @client.upload_part(options) resp.data end