Create Report Group
| codebuild_create_report_group | R Documentation |
Creates a report group¶
Description¶
Creates a report group. A report group contains a collection of reports.
Usage¶
Arguments¶
name[required] The name of the report group.
type[required] The type of report group.
exportConfig[required] A
ReportExportConfigobject that contains information about where the report group test results are exported.tagsA list of tag key and value pairs associated with this report group.
These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.
Value¶
A list with the following syntax:
list(
reportGroup = list(
arn = "string",
name = "string",
type = "TEST"|"CODE_COVERAGE",
exportConfig = list(
exportConfigType = "S3"|"NO_EXPORT",
s3Destination = list(
bucket = "string",
bucketOwner = "string",
path = "string",
packaging = "ZIP"|"NONE",
encryptionKey = "string",
encryptionDisabled = TRUE|FALSE
)
),
created = as.POSIXct(
"2015-01-01"
),
lastModified = as.POSIXct(
"2015-01-01"
),
tags = list(
list(
key = "string",
value = "string"
)
),
status = "ACTIVE"|"DELETING"
)
)
Request syntax¶
svc$create_report_group(
name = "string",
type = "TEST"|"CODE_COVERAGE",
exportConfig = list(
exportConfigType = "S3"|"NO_EXPORT",
s3Destination = list(
bucket = "string",
bucketOwner = "string",
path = "string",
packaging = "ZIP"|"NONE",
encryptionKey = "string",
encryptionDisabled = TRUE|FALSE
)
),
tags = list(
list(
key = "string",
value = "string"
)
)
)