Adds an object to a bucket.
s3_put_object(ACL, Body, Bucket, CacheControl, ContentDisposition,
ContentEncoding, ContentLanguage, ContentLength, ContentMD5,
ContentType, Expires, GrantFullControl, GrantRead, GrantReadACP,
GrantWriteACP, Key, Metadata, ServerSideEncryption, StorageClass,
WebsiteRedirectLocation, SSECustomerAlgorithm, SSECustomerKey,
SSECustomerKeyMD5, SSEKMSKeyId, RequestPayer, Tagging, ObjectLockMode,
ObjectLockRetainUntilDate, ObjectLockLegalHoldStatus)
The canned ACL to apply to the object.
Object data.
[required] Name of the bucket to which the PUT operation was initiated.
Specifies caching behavior along the request/reply chain.
Specifies presentational information for the object.
Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
The language the content is in.
Size of the body in bytes. This parameter is useful when the size of the body cannot be determined automatically.
The base64-encoded 128-bit MD5 digest of the part data. This parameter is auto-populated when using the command from the CLI
A standard MIME type describing the format of the object data.
The date and time at which the object is no longer cacheable.
Gives the grantee READ, READ\_ACP, and WRITE\_ACP permissions on the object.
Allows grantee to read the object data and its metadata.
Allows grantee to read the object ACL.
Allows grantee to write the ACL for the applicable object.
[required] Object key for which the PUT operation was initiated.
A map of metadata to store with the object in S3.
The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
The type of storage to use for the object. Defaults to 'STANDARD'.
If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
Specifies the algorithm to use to when encrypting the object (e.g., AES256).
Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side<U+00E2><U+20AC><U+2039>-encryption<U+00E2><U+20AC><U+2039>-customer-algorithm header.
Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.
Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html\#specify-signature-version
The tag-set for the object. The tag-set must be encoded as URL Query parameters. (For example, "Key1=Value1")
The Object Lock mode that you want to apply to this object.
The date and time when you want this object's Object Lock to expire.
The Legal Hold status that you want to apply to the specified object.
svc$put_object( ACL = "private"|"public-read"|"public-read-write"|"authenticated-read"|"aws-exec-read"|"bucket-owner-read"|"bucket-owner-full-control", Body = raw, Bucket = "string", CacheControl = "string", ContentDisposition = "string", ContentEncoding = "string", ContentLanguage = "string", ContentLength = 123, ContentMD5 = "string", ContentType = "string", Expires = as.POSIXct( "2015-01-01" ), GrantFullControl = "string", GrantRead = "string", GrantReadACP = "string", GrantWriteACP = "string", Key = "string", Metadata = list( "string" ), ServerSideEncryption = "AES256"|"aws:kms", StorageClass = "STANDARD"|"REDUCED_REDUNDANCY"|"STANDARD_IA"|"ONEZONE_IA"|"INTELLIGENT_TIERING"|"GLACIER"|"DEEP_ARCHIVE", WebsiteRedirectLocation = "string", SSECustomerAlgorithm = "string", SSECustomerKey = raw, SSECustomerKeyMD5 = "string", SSEKMSKeyId = "string", RequestPayer = "requester", Tagging = "string", ObjectLockMode = "GOVERNANCE"|"COMPLIANCE", ObjectLockRetainUntilDate = as.POSIXct( "2015-01-01" ), ObjectLockLegalHoldStatus = "ON"|"OFF" )
# NOT RUN {
# The following example uploads an object. The request specifies optional
# object tags. The bucket is versioned, therefore S3 returns version ID of
# the newly created object.
# }
# NOT RUN {
svc$put_object(
Body = "c:\\HappyFace.jpg",
Bucket = "examplebucket",
Key = "HappyFace.jpg",
Tagging = "key1=value1&key2=value2"
)
# }
# NOT RUN {
# The following example uploads and object. The request specifies optional
# canned ACL (access control list) to all READ access to authenticated
# users. If the bucket is versioning enabled, S3 returns version ID in
# response.
# }
# NOT RUN {
svc$put_object(
ACL = "authenticated-read",
Body = "filetoupload",
Bucket = "examplebucket",
Key = "exampleobject"
)
# }
# NOT RUN {
# The following example creates an object. If the bucket is versioning
# enabled, S3 returns version ID in response.
# }
# NOT RUN {
svc$put_object(
Body = "filetoupload",
Bucket = "examplebucket",
Key = "objectkey"
)
# }
# NOT RUN {
# The following example uploads an object. The request specifies optional
# request headers to directs S3 to use specific storage class and use
# server-side encryption.
# }
# NOT RUN {
svc$put_object(
Body = "HappyFace.jpg",
Bucket = "examplebucket",
Key = "HappyFace.jpg",
ServerSideEncryption = "AES256",
StorageClass = "STANDARD_IA"
)
# }
# NOT RUN {
# The following example uploads an object to a versioning-enabled bucket.
# The source file is specified using Windows file syntax. S3 returns
# VersionId of the newly created object.
# }
# NOT RUN {
svc$put_object(
Body = "HappyFace.jpg",
Bucket = "examplebucket",
Key = "HappyFace.jpg"
)
# }
# NOT RUN {
# The following example creates an object. The request also specifies
# optional metadata. If the bucket is versioning enabled, S3 returns
# version ID in response.
# }
# NOT RUN {
svc$put_object(
Body = "filetoupload",
Bucket = "examplebucket",
Key = "exampleobject",
Metadata = list(
metadata1 = "value1",
metadata2 = "value2"
)
)
# }
# NOT RUN {
# The following example uploads and object. The request specifies the
# optional server-side encryption option. The request also specifies
# optional object tags. If the bucket is versioning enabled, S3 returns
# version ID in response.
# }
# NOT RUN {
svc$put_object(
Body = "filetoupload",
Bucket = "examplebucket",
Key = "exampleobject",
ServerSideEncryption = "AES256",
Tagging = "key1=value1&key2=value2"
)
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab