List Storage Configurations
ivsrealtime_list_storage_configurations | R Documentation |
Gets summary information about all storage configurations in your account, in the AWS region where the API request is processed¶
Description¶
Gets summary information about all storage configurations in your account, in the AWS region where the API request is processed.
Usage¶
ivsrealtime_list_storage_configurations(nextToken, maxResults)
Arguments¶
nextToken |
The first storage configuration to retrieve. This is used for
pagination; see the |
maxResults |
Maximum number of storage configurations to return. Default: your service quota or 100, whichever is smaller. |
Value¶
A list with the following syntax:
list(
storageConfigurations = list(
list(
arn = "string",
name = "string",
s3 = list(
bucketName = "string"
),
tags = list(
"string"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_storage_configurations(
nextToken = "string",
maxResults = 123
)