View a list of build IDs in Amazon CodeBuild
You can use the Amazon CodeBuild console, Amazon CLI, or Amazon SDKs to view a list of build IDs for builds managed by CodeBuild.
Topics
View a list of build IDs (console)
Open the Amazon CodeBuild console at https://console.amazonaws.cn/codesuite/codebuild/home
. -
In the navigation pane, choose Build history.
Note By default, only the 10 most recent builds are displayed. To view more builds, choose the gear icon, and then choose a different value for Builds per page or use the back and forward arrows.
View a list of build IDs (Amazon CLI)
For more information about using the Amazon CLI with CodeBuild, see the Command line reference.
-
Run the list-builds command:
aws codebuild list-builds --sort-order
sort-order
--next-tokennext-token
In the preceding command, replace the following placeholders:
-
sort-order
: Optional string used to indicate how to list the build IDs. Valid values includeASCENDING
andDESCENDING
. -
next-token
: Optional string. During a previous run, if there were more than 100 items in the list, only the first 100 items are returned, along with a unique string called next token. To get the next batch of items in the list, run this command again, adding the next token to the call. To get all of the items in the list, keep running this command with each subsequent next token, until no more next tokens are returned.
For example, if you run this command:
aws codebuild list-builds --sort-order ASCENDING
A result similar to the following might appear in the output:
{ "nextToken": "4AEA6u7J
...The full token has been omitted for brevity...
MzY2OA==", "ids": [ "codebuild-demo-project:815e755f-bade-4a7e-80f0-efe51EXAMPLE" "codebuild-demo-project:84a7f3d1-d40e-4956-b4cf-7a9d4EXAMPLE"... The full list of build IDs has been omitted for brevity ...
"codebuild-demo-project:931d0b72-bf6f-4040-a472-5c707EXAMPLE" ] }If you run this command again:
aws codebuild list-builds --sort-order ASCENDING --next-token 4AEA6u7J
...The full token has been omitted for brevity...
MzY2OA==A result similar to the following might appear in the output:
{ "ids": [ "codebuild-demo-project:49015049-21cf-4b50-9708-df115EXAMPLE", "codebuild-demo-project:543e7206-68a3-46d6-a4da-759abEXAMPLE",
... The full list of build IDs has been omitted for brevity ...
"codebuild-demo-project:c282f198-4582-4b38-bdc0-26f96EXAMPLE" ] } -
View a list of batch build IDs (Amazon CLI)
For more information about using the Amazon CLI with CodeBuild, see the Command line reference.
-
Run the list-build-batches command:
aws codebuild list-build-batches --sort-order
sort-order
--next-tokennext-token
In the preceding command, replace the following placeholders:
-
sort-order
: Optional string used to indicate how to list the batch build IDs. Valid values includeASCENDING
andDESCENDING
. -
next-token
: Optional string. During a previous run, if there were more than 100 items in the list, only the first 100 items are returned, along with a unique string called next token. To get the next batch of items in the list, run this command again, adding the next token to the call. To get all of the items in the list, keep running this command with each subsequent next token, until no more next tokens are returned.
For example, if you run this command:
aws codebuild list-build-batches --sort-order ASCENDING
A result similar to the following might appear in the output:
{ "nextToken": "4AEA6u7J
...The full token has been omitted for brevity...
MzY2OA==", "ids": [ "codebuild-demo-project:815e755f-bade-4a7e-80f0-efe51EXAMPLE" "codebuild-demo-project:84a7f3d1-d40e-4956-b4cf-7a9d4EXAMPLE"... The full list of build IDs has been omitted for brevity ...
"codebuild-demo-project:931d0b72-bf6f-4040-a472-5c707EXAMPLE" ] }If you run this command again:
aws codebuild list-build-batches --sort-order ASCENDING --next-token 4AEA6u7J
...The full token has been omitted for brevity...
MzY2OA==A result similar to the following might appear in the output:
{ "ids": [ "codebuild-demo-project:49015049-21cf-4b50-9708-df115EXAMPLE", "codebuild-demo-project:543e7206-68a3-46d6-a4da-759abEXAMPLE",
... The full list of build IDs has been omitted for brevity ...
"codebuild-demo-project:c282f198-4582-4b38-bdc0-26f96EXAMPLE" ] } -
View a list of build IDs (Amazon SDKs)
For more information about using CodeBuild with the Amazon SDKs, see the Amazon SDKs and tools reference.