Describe Source Networks
drs_describe_source_networks | R Documentation |
Lists all Source Networks or multiple Source Networks filtered by ID¶
Description¶
Lists all Source Networks or multiple Source Networks filtered by ID.
Usage¶
drs_describe_source_networks(filters, maxResults, nextToken)
Arguments¶
filters |
A set of filters by which to return Source Networks. |
maxResults |
Maximum number of Source Networks to retrieve. |
nextToken |
The token of the next Source Networks to retrieve. |
Value¶
A list with the following syntax:
list(
items = list(
list(
arn = "string",
cfnStackName = "string",
lastRecovery = list(
apiCallDateTime = as.POSIXct(
"2015-01-01"
),
jobID = "string",
lastRecoveryResult = "NOT_STARTED"|"IN_PROGRESS"|"SUCCESS"|"FAIL"|"PARTIAL_SUCCESS"|"ASSOCIATE_SUCCESS"|"ASSOCIATE_FAIL"
),
launchedVpcID = "string",
replicationStatus = "STOPPED"|"IN_PROGRESS"|"PROTECTED"|"ERROR",
replicationStatusDetails = "string",
sourceAccountID = "string",
sourceNetworkID = "string",
sourceRegion = "string",
sourceVpcID = "string",
tags = list(
"string"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$describe_source_networks(
filters = list(
originAccountID = "string",
originRegion = "string",
sourceNetworkIDs = list(
"string"
)
),
maxResults = 123,
nextToken = "string"
)