List App Version Resources
resiliencehub_list_app_version_resources | R Documentation |
Lists all the resources in an Resilience Hub application¶
Description¶
Lists all the resources in an Resilience Hub application.
Usage¶
resiliencehub_list_app_version_resources(appArn, appVersion, maxResults,
nextToken, resolutionId)
Arguments¶
appArn |
[required] Amazon Resource Name (ARN) of the Resilience Hub
application. The format for this ARN is:
arn: |
appVersion |
[required] The version of the application. |
maxResults |
Maximum number of results to include in the response. If more
results exist than the specified |
nextToken |
Null, or the token from a previous call to get the next set of results. |
resolutionId |
The identifier for a specific resolution. |
Value¶
A list with the following syntax:
list(
nextToken = "string",
physicalResources = list(
list(
additionalInfo = list(
list(
"string"
)
),
appComponents = list(
list(
additionalInfo = list(
list(
"string"
)
),
id = "string",
name = "string",
type = "string"
)
),
excluded = TRUE|FALSE,
logicalResourceId = list(
eksSourceName = "string",
identifier = "string",
logicalStackName = "string",
resourceGroupName = "string",
terraformSourceName = "string"
),
parentResourceName = "string",
physicalResourceId = list(
awsAccountId = "string",
awsRegion = "string",
identifier = "string",
type = "Arn"|"Native"
),
resourceName = "string",
resourceType = "string",
sourceType = "AppTemplate"|"Discovered"
)
),
resolutionId = "string"
)
Request syntax¶
svc$list_app_version_resources(
appArn = "string",
appVersion = "string",
maxResults = 123,
nextToken = "string",
resolutionId = "string"
)