class Aws::S3::MultipartUpload
def abort(options = {})
-
(Types::AbortMultipartUploadOutput)
-
Options Hash:
(**options)
-
:if_match_initiated_time
(Time, DateTime, Date, Integer, String
) -- -
:expected_bucket_owner
(String
) -- -
:request_payer
(String
) --
Parameters:
-
options
(Hash
) -- ({})
Other tags:
- Example: Request syntax with placeholder values -
def abort(options = {}) options = options.merge( bucket: @bucket_name, key: @object_key, upload_id: @id ) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.abort_multipart_upload(options) end resp.data end