new_operation {paws.common} | R Documentation |
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. |
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
# Save info about the S3 ListBuckets API operation.
op <- new_operation(
name = "ListBuckets",
http_method = "GET",
http_path = "/",
paginator = list()
)
[Package paws.common version 0.7.4 Index]