Skip to content

List Lifecycle Executions

imagebuilder_list_lifecycle_executions R Documentation

Get the lifecycle runtime history for the specified resource

Description

Get the lifecycle runtime history for the specified resource.

Usage

imagebuilder_list_lifecycle_executions(maxResults, nextToken,
  resourceArn)

Arguments

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.

resourceArn

[required] The Amazon Resource Name (ARN) of the resource for which to get a list of lifecycle runtime instances.

Value

A list with the following syntax:

list(
  lifecycleExecutions = list(
    list(
      lifecycleExecutionId = "string",
      lifecyclePolicyArn = "string",
      resourcesImpactedSummary = list(
        hasImpactedResources = TRUE|FALSE
      ),
      state = list(
        status = "IN_PROGRESS"|"CANCELLED"|"CANCELLING"|"FAILED"|"SUCCESS"|"PENDING",
        reason = "string"
      ),
      startTime = as.POSIXct(
        "2015-01-01"
      ),
      endTime = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_lifecycle_executions(
  maxResults = 123,
  nextToken = "string",
  resourceArn = "string"
)