Update Report Group
codebuild_update_report_group | R Documentation |
Updates a report group¶
Description¶
Updates a report group.
Usage¶
Arguments¶
arn
[required] The ARN of the report group to update.
exportConfig
Used to specify an updated export type. Valid values are:
S3
: The report results are exported to an S3 bucket.NO_EXPORT
: The report results are not exported.
tags
An updated 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$update_report_group(
arn = "string",
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"
)
)
)