transcribeHTTP {aws.transcribe} | R Documentation |
Execute AWS Transcribe API Request
Description
This is the workhorse function to execute calls to the Transcribe API.
Usage
transcribeHTTP(
action,
headers = list(),
query = list(),
body = NULL,
version = "v1",
verbose = getOption("verbose", FALSE),
region = Sys.getenv("AWS_DEFAULT_REGION", "us-east-1"),
key = NULL,
secret = NULL,
session_token = NULL,
...
)
Arguments
action |
A character string specifying an API endpoint. |
headers |
A list of headers to pass to the HTTP request. |
query |
An optional named list containing query string parameters and their character values. |
body |
A request body |
version |
A character string specifying the API version. |
verbose |
A logical indicating whether to be verbose. Default is given by |
region |
A character string specifying an AWS region. See |
key |
A character string specifying an AWS Access Key. See |
secret |
A character string specifying an AWS Secret Key. See |
session_token |
Optionally, a character string specifying an AWS temporary Session Token to use in signing a request. See |
... |
Additional arguments passed to |
Details
This function constructs and signs an Transcribe API request and returns the results thereof, or relevant debugging information in the case of error.
Value
If successful, a named list. Otherwise, a data structure of class “aws-error” containing any error message(s) from AWS and information about the request attempt.
Author(s)
Thomas J. Leeper