Learn R Programming

paws.storage (version 0.1.5)

s3control: AWS S3 Control

Description

AWS S3 Control provides access to Amazon S3 control plane operations.

Usage

s3control(config = list())

Arguments

config

Optional configuration of credentials, endpoint, and/or region.

Service syntax

svc <- s3control(
  config = list(
    credentials = list(
      creds = list(
        access_key_id = "string",
        secret_access_key = "string",
        session_token = "string"
      ),
      profile = "string"
    ),
    endpoint = "string",
    region = "string"
  )
)

Operations

create_job Creates an Amazon S3 batch operations job
delete_public_access_block Deletes the block public access configuration for the specified account
describe_job Retrieves the configuration parameters and status for a batch operations job
get_public_access_block Get public access block
list_jobs Lists current jobs and jobs that have ended within the last 30 days for the AWS account making the request
put_public_access_block Put public access block
update_job_priority Updates an existing job's priority

Examples

Run this code
# NOT RUN {
svc <- s3control()
svc$create_job(
  Foo = 123
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab