Skip to content

Commit

Permalink
Merge pull request #810 from DyfanJones/main
Browse files Browse the repository at this point in the history
add operation to service
  • Loading branch information
DyfanJones committed Jul 19, 2024
2 parents 2e5ea96 + b367dc3 commit c37c23b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make.paws/R/custom/s3.R
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ s3_download_file <- function(Bucket, Key, Filename, IfMatch = NULL, IfModifiedSi
input <- .s3$get_object_input(Bucket = Bucket, IfMatch = IfMatch, IfModifiedSince = IfModifiedSince, IfNoneMatch = IfNoneMatch, IfUnmodifiedSince = IfUnmodifiedSince, Key = Key, Range = Range, ResponseCacheControl = ResponseCacheControl, ResponseContentDisposition = ResponseContentDisposition, ResponseContentEncoding = ResponseContentEncoding, ResponseContentLanguage = ResponseContentLanguage, ResponseContentType = ResponseContentType, ResponseExpires = ResponseExpires, VersionId = VersionId, SSECustomerAlgorithm = SSECustomerAlgorithm, SSECustomerKey = SSECustomerKey, SSECustomerKeyMD5 = SSECustomerKeyMD5, RequestPayer = RequestPayer, PartNumber = PartNumber, ExpectedBucketOwner = ExpectedBucketOwner)
output <- .s3$get_object_output()
config <- get_config()
svc <- .s3$service(config)
svc <- .s3$service(config, op)
request <- new_request(svc, op, input, output, Filename)
response <- send_request(request)
return(list())
Expand Down

0 comments on commit c37c23b

Please sign in to comment.