Learn R Programming

paws.storage (version 0.1.8)

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_access_point Creates an access point and associates it with the specified bucket
create_job Creates an Amazon S3 batch operations job
delete_access_point Deletes the specified access point
delete_access_point_policy Deletes the access point policy for the specified access point
delete_public_access_block Removes the PublicAccessBlock configuration for an Amazon Web Services account
describe_job Retrieves the configuration parameters and status for a batch operations job
get_access_point Returns configuration information about the specified access point
get_access_point_policy Returns the access point policy associated with the specified access point
get_access_point_policy_status Indicates whether the specified access point currently has a policy that allows public access
get_public_access_block Retrieves the PublicAccessBlock configuration for an Amazon Web Services account
list_access_points Returns a list of the access points currently associated with the specified bucket
list_jobs Lists current jobs and jobs that have ended within the last 30 days for the AWS account making the request
put_access_point_policy Associates an access policy with the specified access point
put_public_access_block Creates or modifies the PublicAccessBlock configuration for an Amazon Web Services account
update_job_priority Updates an existing job's priority

Examples

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

Run the code above in your browser using DataLab