Delete Build Batch
codebuild_delete_build_batch | R Documentation |
Deletes a batch build¶
Description¶
Deletes a batch build.
Usage¶
codebuild_delete_build_batch(id)
Arguments¶
id |
[required] The identifier of the batch build to delete. |
Value¶
A list with the following syntax:
list(
statusCode = "string",
buildsDeleted = list(
"string"
),
buildsNotDeleted = list(
list(
id = "string",
statusCode = "string"
)
)
)
Request syntax¶
svc$delete_build_batch(
id = "string"
)