List Autoshifts
| arczonalshift_list_autoshifts | R Documentation |
Returns the autoshifts for an Amazon Web Services Region¶
Description¶
Returns the autoshifts for an Amazon Web Services Region. By default,
the call returns only ACTIVE autoshifts. Optionally, you can specify
the status parameter to return COMPLETED autoshifts.
Usage¶
arczonalshift_list_autoshifts(nextToken, status, maxResults)
Arguments¶
nextToken |
Specifies that you want to receive the next page of results.
Valid only if you received a |
status |
The status of the autoshift. |
maxResults |
The number of objects that you want to return with this call. |
Value¶
A list with the following syntax:
list(
items = list(
list(
awayFrom = "string",
endTime = as.POSIXct(
"2015-01-01"
),
startTime = as.POSIXct(
"2015-01-01"
),
status = "ACTIVE"|"COMPLETED"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_autoshifts(
nextToken = "string",
status = "ACTIVE"|"COMPLETED",
maxResults = 123
)