Describe Job Log Items
| drs_describe_job_log_items | R Documentation |
Retrieves a detailed Job log with pagination¶
Description¶
Retrieves a detailed Job log with pagination.
Usage¶
drs_describe_job_log_items(jobID, maxResults, nextToken)
Arguments¶
jobID |
[required] The ID of the Job for which Job log items will be retrieved. |
maxResults |
Maximum number of Job log items to retrieve. |
nextToken |
The token of the next Job log items to retrieve. |
Value¶
A list with the following syntax:
list(
items = list(
list(
logDateTime = "string",
event = "JOB_START"|"SERVER_SKIPPED"|"CLEANUP_START"|"CLEANUP_END"|"CLEANUP_FAIL"|"SNAPSHOT_START"|"SNAPSHOT_END"|"SNAPSHOT_FAIL"|"USING_PREVIOUS_SNAPSHOT"|"USING_PREVIOUS_SNAPSHOT_FAILED"|"CONVERSION_START"|"CONVERSION_END"|"CONVERSION_FAIL"|"LAUNCH_START"|"LAUNCH_FAILED"|"JOB_CANCEL"|"JOB_END"|"DEPLOY_NETWORK_CONFIGURATION_START"|"DEPLOY_NETWORK_CONFIGURATION_END"|"DEPLOY_NETWORK_CONFIGURATION_FAILED"|"UPDATE_NETWORK_CONFIGURATION_START"|"UPDATE_NETWORK_CONFIGURATION_END"|"UPDATE_NETWORK_CONFIGURATION_FAILED"|"UPDATE_LAUNCH_TEMPLATE_START"|"UPDATE_LAUNCH_TEMPLATE_END"|"UPDATE_LAUNCH_TEMPLATE_FAILED"|"NETWORK_RECOVERY_FAIL",
eventData = list(
sourceServerID = "string",
conversionServerID = "string",
targetInstanceID = "string",
rawError = "string",
conversionProperties = list(
volumeToConversionMap = list(
list(
"string"
)
),
rootVolumeName = "string",
forceUefi = TRUE|FALSE,
dataTimestamp = "string",
volumeToVolumeSize = list(
123
),
volumeToProductCodes = list(
list(
list(
productCodeId = "string",
productCodeMode = "ENABLED"|"DISABLED"
)
)
)
),
eventResourceData = list(
sourceNetworkData = list(
sourceNetworkID = "string",
sourceVpc = "string",
targetVpc = "string",
stackName = "string"
)
),
attemptCount = 123,
maxAttemptsCount = 123
)
)
),
nextToken = "string"
)
Request syntax¶
svc$describe_job_log_items(
jobID = "string",
maxResults = 123,
nextToken = "string"
)