paws.common (version 0.2.5)

new_operation: Return an API operation object

Description

Return an API operation object, with information on what to request for a given API operation. For example, the S3 service's "list buckets" operation is named ListBuckets, it requires a GET request, and so on.

Usage

new_operation(
  name,
  http_method,
  http_path,
  paginator,
  before_presign_fn = NULL
)

Arguments

name

The API operation name.

http_method

The HTTP method, e.g. "GET" or "POST".

http_path

The HTTP path.

paginator

Currently unused.

before_presign_fn

Currently unused.

See Also

Other API request functions: new_handlers(), new_request(), new_service(), send_request()

Examples

Run this code
# NOT RUN {
# Save info about the S3 ListBuckets API operation.
op <- new_operation(
  name = "ListBuckets",
  http_method = "GET",
  http_path = "/",
  paginator = list()
)

# }

Run the code above in your browser using DataCamp Workspace