Describe Report Job
backup_describe_report_job | R Documentation |
Returns the details associated with creating a report as specified by its ReportJobId¶
Description¶
Returns the details associated with creating a report as specified by
its ReportJobId
.
Usage¶
Arguments¶
ReportJobId
[required] The identifier of the report job. A unique, randomly generated, Unicode, UTF-8 encoded string that is at most 1,024 bytes long. The report job ID cannot be edited.
Value¶
A list with the following syntax:
list(
ReportJob = list(
ReportJobId = "string",
ReportPlanArn = "string",
ReportTemplate = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
CompletionTime = as.POSIXct(
"2015-01-01"
),
Status = "string",
StatusMessage = "string",
ReportDestination = list(
S3BucketName = "string",
S3Keys = list(
"string"
)
)
)
)