List Managed Resources
arczonalshift_list_managed_resources | R Documentation |
Lists all the resources in your Amazon Web Services account in this Amazon Web Services Region that are managed for zonal shifts in Amazon Route 53 Application Recovery Controller, and information about them¶
Description¶
Lists all the resources in your Amazon Web Services account in this Amazon Web Services Region that are managed for zonal shifts in Amazon Route 53 Application Recovery Controller, and information about them. The information includes the zonal autoshift status for the resource, as well as the Amazon Resource Name (ARN), the Availability Zones that each resource is deployed in, and the resource name.
Usage¶
arczonalshift_list_managed_resources(maxResults, nextToken)
Arguments¶
maxResults |
The number of objects that you want to return with this call. |
nextToken |
Specifies that you want to receive the next page of results.
Valid only if you received a |
Value¶
A list with the following syntax:
list(
items = list(
list(
appliedWeights = list(
123.0
),
arn = "string",
autoshifts = list(
list(
appliedStatus = "APPLIED"|"NOT_APPLIED",
awayFrom = "string",
startTime = as.POSIXct(
"2015-01-01"
)
)
),
availabilityZones = list(
"string"
),
name = "string",
practiceRunStatus = "ENABLED"|"DISABLED",
zonalAutoshiftStatus = "ENABLED"|"DISABLED",
zonalShifts = list(
list(
appliedStatus = "APPLIED"|"NOT_APPLIED",
awayFrom = "string",
comment = "string",
expiryTime = as.POSIXct(
"2015-01-01"
),
practiceRunOutcome = "FAILED"|"INTERRUPTED"|"PENDING"|"SUCCEEDED",
resourceIdentifier = "string",
startTime = as.POSIXct(
"2015-01-01"
),
zonalShiftId = "string"
)
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_managed_resources(
maxResults = 123,
nextToken = "string"
)