List Lifecycle Execution Resources
imagebuilder_list_lifecycle_execution_resources | R Documentation |
List resources that the runtime instance of the image lifecycle identified for lifecycle actions¶
Description¶
List resources that the runtime instance of the image lifecycle identified for lifecycle actions.
Usage¶
imagebuilder_list_lifecycle_execution_resources(lifecycleExecutionId,
parentResourceId, maxResults, nextToken)
Arguments¶
lifecycleExecutionId
[required] Use the unique identifier for a runtime instance of the lifecycle policy to get runtime details.
parentResourceId
You can leave this empty to get a list of Image Builder resources that were identified for lifecycle actions.
To get a list of associated resources that are impacted for an individual resource (the parent), specify its Amazon Resource Name (ARN). Associated resources are produced from your image and distributed when you run a build, such as AMIs or container images stored in ECR repositories.
maxResults
The maximum items to return in a request.
nextToken
A token to specify where to start paginating. This is the nextToken from a previously truncated response.
Value¶
A list with the following syntax:
list(
lifecycleExecutionId = "string",
lifecycleExecutionState = list(
status = "IN_PROGRESS"|"CANCELLED"|"CANCELLING"|"FAILED"|"SUCCESS"|"PENDING",
reason = "string"
),
resources = list(
list(
accountId = "string",
resourceId = "string",
state = list(
status = "FAILED"|"IN_PROGRESS"|"SKIPPED"|"SUCCESS",
reason = "string"
),
action = list(
name = "AVAILABLE"|"DELETE"|"DEPRECATE"|"DISABLE",
reason = "string"
),
region = "string",
snapshots = list(
list(
snapshotId = "string",
state = list(
status = "FAILED"|"IN_PROGRESS"|"SKIPPED"|"SUCCESS",
reason = "string"
)
)
),
imageUris = list(
"string"
),
startTime = as.POSIXct(
"2015-01-01"
),
endTime = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)