paws.storage (version 0.1.0)

s3: Amazon Simple Storage Service

Description

Amazon Simple Storage Service

Usage

s3()

Arguments

Operations

abort_multipart_upload Aborts a multipart upload
complete_multipart_upload Completes a multipart upload by assembling previously uploaded parts
copy_object Creates a copy of an object that is already stored in Amazon S3
create_bucket Creates a new bucket
create_multipart_upload Initiates a multipart upload and returns an upload ID
delete_bucket Deletes the bucket
delete_bucket_analytics_configuration Deletes an analytics configuration for the bucket (specified by the analytics configuration ID)
delete_bucket_cors Deletes the CORS configuration information set for the bucket
delete_bucket_encryption Deletes the server-side encryption configuration from the bucket
delete_bucket_inventory_configuration Deletes an inventory configuration (identified by the inventory ID) from the bucket
delete_bucket_lifecycle Deletes the lifecycle configuration from the bucket
delete_bucket_metrics_configuration Deletes a metrics configuration (specified by the metrics configuration ID) from the bucket
delete_bucket_policy Deletes the policy from the bucket
delete_bucket_replication Deletes the replication configuration from the bucket
delete_bucket_tagging Deletes the tags from the bucket
delete_bucket_website This operation removes the website configuration from the bucket
delete_object Removes the null version (if there is one) of an object and inserts a delete marker, which becomes the latest version of the object
delete_object_tagging Removes the tag-set from an existing object
delete_objects This operation enables you to delete multiple objects from a bucket using a single HTTP request
delete_public_access_block Removes the PublicAccessBlock configuration from an Amazon S3 bucket
get_bucket_accelerate_configuration Returns the accelerate configuration of a bucket
get_bucket_acl Gets the access control policy for the bucket
get_bucket_analytics_configuration Gets an analytics configuration for the bucket (specified by the analytics configuration ID)
get_bucket_cors Returns the CORS configuration for the bucket
get_bucket_encryption Returns the server-side encryption configuration of a bucket
get_bucket_inventory_configuration Returns an inventory configuration (identified by the inventory ID) from the bucket
get_bucket_lifecycle No longer used, see the GetBucketLifecycleConfiguration operation
get_bucket_lifecycle_configuration Returns the lifecycle configuration information set on the bucket
get_bucket_location Returns the region the bucket resides in
get_bucket_logging Returns the logging status of a bucket and the permissions users have to view and modify that status
get_bucket_metrics_configuration Gets a metrics configuration (specified by the metrics configuration ID) from the bucket
get_bucket_notification No longer used, see the GetBucketNotificationConfiguration operation
get_bucket_notification_configuration Returns the notification configuration of a bucket
get_bucket_policy Returns the policy of a specified bucket
get_bucket_policy_status Retrieves the policy status for an Amazon S3 bucket, indicating whether the bucket is public
get_bucket_replication Returns the replication configuration of a bucket
get_bucket_request_payment Returns the request payment configuration of a bucket
get_bucket_tagging Returns the tag set associated with the bucket
get_bucket_versioning Returns the versioning state of a bucket
get_bucket_website Returns the website configuration for a bucket
get_object Retrieves objects from Amazon S3
get_object_acl Returns the access control list (ACL) of an object
get_object_legal_hold Gets an object's current Legal Hold status
get_object_lock_configuration Gets the Object Lock configuration for a bucket
get_object_retention Retrieves an object's retention settings
get_object_tagging Returns the tag-set of an object
get_object_torrent Return torrent files from a bucket
get_public_access_block Retrieves the PublicAccessBlock configuration for an Amazon S3 bucket
head_bucket This operation is useful to determine if a bucket exists and you have permission to access it
head_object The HEAD operation retrieves metadata from an object without returning the object itself
list_bucket_analytics_configurations Lists the analytics configurations for the bucket
list_bucket_inventory_configurations Returns a list of inventory configurations for the bucket
list_bucket_metrics_configurations Lists the metrics configurations for the bucket
list_buckets Returns a list of all buckets owned by the authenticated sender of the request
list_multipart_uploads This operation lists in-progress multipart uploads
list_object_versions Returns metadata about all of the versions of objects in a bucket
list_objects Returns some or all (up to 1000) of the objects in a bucket
list_objects_v2 Returns some or all (up to 1000) of the objects in a bucket
list_parts Lists the parts that have been uploaded for a specific multipart upload
put_bucket_accelerate_configuration Sets the accelerate configuration of an existing bucket
put_bucket_acl Sets the permissions on a bucket using access control lists (ACL)
put_bucket_analytics_configuration Sets an analytics configuration for the bucket (specified by the analytics configuration ID)
put_bucket_cors Sets the CORS configuration for a bucket
put_bucket_encryption Creates a new server-side encryption configuration (or replaces an existing one, if present)
put_bucket_inventory_configuration Adds an inventory configuration (identified by the inventory ID) from the bucket
put_bucket_lifecycle No longer used, see the PutBucketLifecycleConfiguration operation
put_bucket_lifecycle_configuration Sets lifecycle configuration for your bucket
put_bucket_logging Set the logging parameters for a bucket and to specify permissions for who can view and modify the logging parameters
put_bucket_metrics_configuration Sets a metrics configuration (specified by the metrics configuration ID) for the bucket
put_bucket_notification No longer used, see the PutBucketNotificationConfiguration operation
put_bucket_notification_configuration Enables notifications of specified events for a bucket
put_bucket_policy Replaces a policy on a bucket
put_bucket_replication Creates a replication configuration or replaces an existing one
put_bucket_request_payment Sets the request payment configuration for a bucket
put_bucket_tagging Sets the tags for a bucket
put_bucket_versioning Sets the versioning state of an existing bucket
put_bucket_website Set the website configuration for a bucket
put_object Adds an object to a bucket
put_object_acl uses the acl subresource to set the access control list (ACL) permissions for an object that already exists in a bucket
put_object_legal_hold Applies a Legal Hold configuration to the specified object
put_object_lock_configuration Places an Object Lock configuration on the specified bucket
put_object_retention Places an Object Retention configuration on an object
put_object_tagging Sets the supplied tag-set to an object that already exists in a bucket
put_public_access_block Creates or modifies the PublicAccessBlock configuration for an Amazon S3 bucket
restore_object Restores an archived copy of an object back into Amazon S3
select_object_content This operation filters the contents of an Amazon S3 object based on a simple Structured Query Language (SQL) statement
upload_part Uploads a part in a multipart upload

Examples

Run this code
# NOT RUN {
# The following example aborts a multipart upload.
# }
# NOT RUN {
svc <- s3()
svc$abort_multipart_upload(
  Bucket = "examplebucket",
  Key = "bigobject",
  UploadId = "xadcOB_7YPBOJuoFiQ9cz4P3Pe6FIZwO4f7wN93uHsNBEw97pl5eNwzExg0LAT2dUN91cOmrEQHDsP..."
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace