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¶
codebuild_create_report_group(name, type, exportConfig, tags)
Arguments¶
name |
[required] The name of the report group. |
type |
[required] The type of report group. |
exportConfig |
[required] A |
tags |
A 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"
)
)
)