class AmazonS3::UploadPartRequest
- AmazonS3::UploadPartRequest
- Reference
- Object
Included Modules
Defined in:
clients/s3.crConstructors
Class Method Summary
Instance Method Summary
- #body : IO | String | Bytes | Nil
- #body=(body : IO | String | Bytes | Nil)
- #bucket : String
- #bucket=(bucket : String)
- #content_length : Int64 | Nil
- #content_length=(content_length : Int64 | Nil)
- #content_md5 : String | Nil
- #content_md5=(content_md5 : String | Nil)
- #expected_bucket_owner : String | Nil
- #expected_bucket_owner=(expected_bucket_owner : String | Nil)
- #key : String
- #key=(key : String)
- #part_number : Int32
- #part_number=(part_number : Int32)
- #request_payer : String | Nil
- #request_payer=(request_payer : String | Nil)
- #sse_customer_algorithm : String | Nil
- #sse_customer_algorithm=(sse_customer_algorithm : String | Nil)
- #sse_customer_key : String | Nil
- #sse_customer_key=(sse_customer_key : String | Nil)
- #sse_customer_key_md5 : String | Nil
- #sse_customer_key_md5=(sse_customer_key_md5 : String | Nil)
- #upload_id : String
- #upload_id=(upload_id : String)
Instance methods inherited from module AWSSdk::RestXML::Structure
process(request : HTTP::Request)
process,
serialize(xml : XML::Builder)
serialize
Constructor Detail
def self.new(bucket : String, key : String, part_number : Int32, upload_id : String, body : IO | String | Bytes = nil, content_length : Int64 = nil, content_md5 : String = nil, sse_customer_algorithm : String = nil, sse_customer_key : String = nil, sse_customer_key_md5 : String = nil, request_payer : String = nil, expected_bucket_owner : String = nil)
#