List Recording Configurations
ivs_list_recording_configurations | R Documentation |
Gets summary information about all recording configurations in your account, in the Amazon Web Services region where the API request is processed¶
Description¶
Gets summary information about all recording configurations in your account, in the Amazon Web Services region where the API request is processed.
Usage¶
ivs_list_recording_configurations(maxResults, nextToken)
Arguments¶
maxResults |
Maximum number of recording configurations to return. Default: your service quota or 100, whichever is smaller. |
nextToken |
The first recording configuration to retrieve. This is used for
pagination; see the |
Value¶
A list with the following syntax:
list(
nextToken = "string",
recordingConfigurations = list(
list(
arn = "string",
destinationConfiguration = list(
s3 = list(
bucketName = "string"
)
),
name = "string",
state = "CREATING"|"CREATE_FAILED"|"ACTIVE",
tags = list(
"string"
)
)
)
)
Request syntax¶
svc$list_recording_configurations(
maxResults = 123,
nextToken = "string"
)