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 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 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(nextToken, maxResults)
Arguments¶
nextToken |
Specifies that you want to receive the next page of results.
Valid only if you received a |
maxResults |
The number of objects that you want to return with this call. |
Value¶
A list with the following syntax:
list(
items = list(
list(
arn = "string",
name = "string",
availabilityZones = list(
"string"
),
appliedWeights = list(
123.0
),
zonalShifts = list(
list(
appliedStatus = "APPLIED"|"NOT_APPLIED",
zonalShiftId = "string",
resourceIdentifier = "string",
awayFrom = "string",
expiryTime = as.POSIXct(
"2015-01-01"
),
startTime = as.POSIXct(
"2015-01-01"
),
comment = "string",
shiftType = "ZONAL_SHIFT"|"PRACTICE_RUN"|"FIS_EXPERIMENT"|"ZONAL_AUTOSHIFT",
practiceRunOutcome = "FAILED"|"INTERRUPTED"|"PENDING"|"SUCCEEDED"|"CAPACITY_CHECK_FAILED"
)
),
autoshifts = list(
list(
appliedStatus = "APPLIED"|"NOT_APPLIED",
awayFrom = "string",
startTime = as.POSIXct(
"2015-01-01"
)
)
),
zonalAutoshiftStatus = "ENABLED"|"DISABLED",
practiceRunStatus = "ENABLED"|"DISABLED"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_managed_resources(
nextToken = "string",
maxResults = 123
)