Skip to content

Batch Get Command Executions

codebuild_batch_get_command_executions R Documentation

Gets information about the command executions

Description

Gets information about the command executions.

Usage

codebuild_batch_get_command_executions(sandboxId, commandExecutionIds)

Arguments

sandboxId

[required] A sandboxId or sandboxArn.

commandExecutionIds

[required] A comma separated list of commandExecutionIds.

Value

A list with the following syntax:

list(
  commandExecutions = list(
    list(
      id = "string",
      sandboxId = "string",
      submitTime = as.POSIXct(
        "2015-01-01"
      ),
      startTime = as.POSIXct(
        "2015-01-01"
      ),
      endTime = as.POSIXct(
        "2015-01-01"
      ),
      status = "string",
      command = "string",
      type = "SHELL",
      exitCode = "string",
      standardOutputContent = "string",
      standardErrContent = "string",
      logs = list(
        groupName = "string",
        streamName = "string",
        deepLink = "string",
        s3DeepLink = "string",
        cloudWatchLogsArn = "string",
        s3LogsArn = "string",
        cloudWatchLogs = list(
          status = "ENABLED"|"DISABLED",
          groupName = "string",
          streamName = "string"
        ),
        s3Logs = list(
          status = "ENABLED"|"DISABLED",
          location = "string",
          encryptionDisabled = TRUE|FALSE,
          bucketOwnerAccess = "NONE"|"READ_ONLY"|"FULL"
        )
      ),
      sandboxArn = "string"
    )
  ),
  commandExecutionsNotFound = list(
    "string"
  )
)

Request syntax

svc$batch_get_command_executions(
  sandboxId = "string",
  commandExecutionIds = list(
    "string"
  )
)