AWS CodeBuild

2020/07/30 - AWS CodeBuild - 9 new 12 updated api methods

Changes  Adding support for BuildBatch, and CodeCoverage APIs. BuildBatch allows you to model your project environment in source, and helps start multiple builds with a single API call. CodeCoverage allows you to track your code coverage using AWS CodeBuild.

StopBuildBatch (new) Link ¶

Stops a running batch build.

See also: AWS API Documentation

Request Syntax

client.stop_build_batch(
    id='string'
)
type id

string

param id

[REQUIRED]

The identifier of the batch build to stop.

rtype

dict

returns

Response Syntax

{
    'buildBatch': {
        'id': 'string',
        'arn': 'string',
        'startTime': datetime(2015, 1, 1),
        'endTime': datetime(2015, 1, 1),
        'currentPhase': 'string',
        'buildBatchStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
        'sourceVersion': 'string',
        'resolvedSourceVersion': 'string',
        'projectName': 'string',
        'phases': [
            {
                'phaseType': 'SUBMITTED'|'DOWNLOAD_BATCHSPEC'|'IN_PROGRESS'|'COMBINE_ARTIFACTS'|'SUCCEEDED'|'FAILED'|'STOPPED',
                'phaseStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
                'startTime': datetime(2015, 1, 1),
                'endTime': datetime(2015, 1, 1),
                'durationInSeconds': 123,
                'contexts': [
                    {
                        'statusCode': 'string',
                        'message': 'string'
                    },
                ]
            },
        ],
        'source': {
            'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
            'location': 'string',
            'gitCloneDepth': 123,
            'gitSubmodulesConfig': {
                'fetchSubmodules': True|False
            },
            'buildspec': 'string',
            'auth': {
                'type': 'OAUTH',
                'resource': 'string'
            },
            'reportBuildStatus': True|False,
            'buildStatusConfig': {
                'context': 'string',
                'targetUrl': 'string'
            },
            'insecureSsl': True|False,
            'sourceIdentifier': 'string'
        },
        'secondarySources': [
            {
                'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
                'location': 'string',
                'gitCloneDepth': 123,
                'gitSubmodulesConfig': {
                    'fetchSubmodules': True|False
                },
                'buildspec': 'string',
                'auth': {
                    'type': 'OAUTH',
                    'resource': 'string'
                },
                'reportBuildStatus': True|False,
                'buildStatusConfig': {
                    'context': 'string',
                    'targetUrl': 'string'
                },
                'insecureSsl': True|False,
                'sourceIdentifier': 'string'
            },
        ],
        'secondarySourceVersions': [
            {
                'sourceIdentifier': 'string',
                'sourceVersion': 'string'
            },
        ],
        'artifacts': {
            'location': 'string',
            'sha256sum': 'string',
            'md5sum': 'string',
            'overrideArtifactName': True|False,
            'encryptionDisabled': True|False,
            'artifactIdentifier': 'string'
        },
        'secondaryArtifacts': [
            {
                'location': 'string',
                'sha256sum': 'string',
                'md5sum': 'string',
                'overrideArtifactName': True|False,
                'encryptionDisabled': True|False,
                'artifactIdentifier': 'string'
            },
        ],
        'cache': {
            'type': 'NO_CACHE'|'S3'|'LOCAL',
            'location': 'string',
            'modes': [
                'LOCAL_DOCKER_LAYER_CACHE'|'LOCAL_SOURCE_CACHE'|'LOCAL_CUSTOM_CACHE',
            ]
        },
        'environment': {
            'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER'|'LINUX_GPU_CONTAINER'|'ARM_CONTAINER'|'WINDOWS_SERVER_2019_CONTAINER',
            'image': 'string',
            'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE'|'BUILD_GENERAL1_2XLARGE',
            'environmentVariables': [
                {
                    'name': 'string',
                    'value': 'string',
                    'type': 'PLAINTEXT'|'PARAMETER_STORE'|'SECRETS_MANAGER'
                },
            ],
            'privilegedMode': True|False,
            'certificate': 'string',
            'registryCredential': {
                'credential': 'string',
                'credentialProvider': 'SECRETS_MANAGER'
            },
            'imagePullCredentialsType': 'CODEBUILD'|'SERVICE_ROLE'
        },
        'serviceRole': 'string',
        'logConfig': {
            'cloudWatchLogs': {
                'status': 'ENABLED'|'DISABLED',
                'groupName': 'string',
                'streamName': 'string'
            },
            's3Logs': {
                'status': 'ENABLED'|'DISABLED',
                'location': 'string',
                'encryptionDisabled': True|False
            }
        },
        'buildTimeoutInMinutes': 123,
        'queuedTimeoutInMinutes': 123,
        'complete': True|False,
        'initiator': 'string',
        'vpcConfig': {
            'vpcId': 'string',
            'subnets': [
                'string',
            ],
            'securityGroupIds': [
                'string',
            ]
        },
        'encryptionKey': 'string',
        'buildBatchNumber': 123,
        'fileSystemLocations': [
            {
                'type': 'EFS',
                'location': 'string',
                'mountPoint': 'string',
                'identifier': 'string',
                'mountOptions': 'string'
            },
        ],
        'buildBatchConfig': {
            'serviceRole': 'string',
            'combineArtifacts': True|False,
            'restrictions': {
                'maximumBuildsAllowed': 123,
                'computeTypesAllowed': [
                    'string',
                ]
            },
            'timeoutInMins': 123
        },
        'buildGroups': [
            {
                'identifier': 'string',
                'dependsOn': [
                    'string',
                ],
                'ignoreFailure': True|False,
                'currentBuildSummary': {
                    'arn': 'string',
                    'requestedOn': datetime(2015, 1, 1),
                    'buildStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
                    'primaryArtifact': {
                        'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                        'location': 'string',
                        'identifier': 'string'
                    },
                    'secondaryArtifacts': [
                        {
                            'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                            'location': 'string',
                            'identifier': 'string'
                        },
                    ]
                },
                'priorBuildSummaryList': [
                    {
                        'arn': 'string',
                        'requestedOn': datetime(2015, 1, 1),
                        'buildStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
                        'primaryArtifact': {
                            'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                            'location': 'string',
                            'identifier': 'string'
                        },
                        'secondaryArtifacts': [
                            {
                                'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                                'location': 'string',
                                'identifier': 'string'
                            },
                        ]
                    },
                ]
            },
        ]
    }
}

Response Structure

  • (dict) --

    • buildBatch (dict) --

      Contains information about a batch build.

      • id (string) --

        The identifier of the batch build.

      • arn (string) --

        The ARN of the batch build.

      • startTime (datetime) --

        The date and time that the batch build started.

      • endTime (datetime) --

        The date and time that the batch build ended.

      • currentPhase (string) --

        The current phase of the batch build.

      • buildBatchStatus (string) --

        The status of the batch build.

      • sourceVersion (string) --

        The identifier of the version of the source code to be built.

      • resolvedSourceVersion (string) --

        The identifier of the resolved version of this batch build's source code.

        • For AWS CodeCommit, GitHub, GitHub Enterprise, and BitBucket, the commit ID.

        • For AWS CodePipeline, the source revision provided by AWS CodePipeline.

        • For Amazon Simple Storage Service (Amazon S3), this does not apply.

      • projectName (string) --

        The name of the batch build project.

      • phases (list) --

        An array of BuildBatchPhase objects the specify the phases of the batch build.

        • (dict) --

          Contains information about a stage for a batch build.

          • phaseType (string) --

            The name of the batch build phase. Valid values include:

            COMBINE_ARTIFACTS

            Build output artifacts are being combined and uploaded to the output location.

            DOWNLOAD_BATCHSPEC

            The batch build specification is being downloaded.

            FAILED

            One or more of the builds failed.

            IN_PROGRESS

            The batch build is in progress.

            STOPPED

            The batch build was stopped.

            SUBMITTED

            The btach build has been submitted.

            SUCCEEDED

            The batch build succeeded.

          • phaseStatus (string) --

            The current status of the batch build phase. Valid values include:

            FAILED

            The build phase failed.

            FAULT

            The build phase faulted.

            IN_PROGRESS

            The build phase is still in progress.

            QUEUED

            The build has been submitted and is queued behind other submitted builds.

            STOPPED

            The build phase stopped.

            SUCCEEDED

            The build phase succeeded.

            TIMED_OUT

            The build phase timed out.

          • startTime (datetime) --

            When the batch build phase started, expressed in Unix time format.

          • endTime (datetime) --

            When the batch build phase ended, expressed in Unix time format.

          • durationInSeconds (integer) --

            How long, in seconds, between the starting and ending times of the batch build's phase.

          • contexts (list) --

            Additional information about the batch build phase. Especially to help troubleshoot a failed btach build.

            • (dict) --

              Additional information about a build phase that has an error. You can use this information for troubleshooting.

              • statusCode (string) --

                The status code for the context of the build phase.

              • message (string) --

                An explanation of the build phase's context. This might include a command ID and an exit code.

      • source (dict) --

        Information about the build input source code for the build project.

        • type (string) --

          The type of repository that contains the source code to be built. Valid values include:

          • BITBUCKET : The source code is in a Bitbucket repository.

          • CODECOMMIT : The source code is in an AWS CodeCommit repository.

          • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

          • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

          • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

          • NO_SOURCE : The project does not have input source code.

          • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

        • location (string) --

          Information about the location of the source code to be built. Valid values include:

          • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

          • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

          • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

            • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

            • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

          • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

        • gitCloneDepth (integer) --

          Information about the Git clone depth for the build project.

        • gitSubmodulesConfig (dict) --

          Information about the Git submodules configuration for the build project.

          • fetchSubmodules (boolean) --

            Set to true to fetch Git submodules for your AWS CodeBuild build project.

        • buildspec (string) --

          The buildspec file declaration to use for the builds in this build project.

          If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

        • auth (dict) --

          Information about the authorization settings for AWS CodeBuild to access the source code to be built.

          This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

          • type (string) --

            Note

            This data type is deprecated and is no longer accurate or used.

            The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

          • resource (string) --

            The resource value that applies to the specified authorization type.

        • reportBuildStatus (boolean) --

          Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

          Note

          The status of a build triggered by a webhook is always reported to your source provider.

        • buildStatusConfig (dict) --

          Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

          • context (string) --

            Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

            Bitbucket

            This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

            GitHub/GitHub Enterprise Server

            This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • targetUrl (string) --

            Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

            Bitbucket

            This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

            GitHub/GitHub Enterprise Server

            This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

        • insecureSsl (boolean) --

          Enable this flag to ignore SSL warnings while connecting to the project source code.

        • sourceIdentifier (string) --

          An identifier for this project source.

      • secondarySources (list) --

        An array of ProjectSource objects that define the sources for the batch build.

        • (dict) --

          Information about the build input source code for the build project.

          • type (string) --

            The type of repository that contains the source code to be built. Valid values include:

            • BITBUCKET : The source code is in a Bitbucket repository.

            • CODECOMMIT : The source code is in an AWS CodeCommit repository.

            • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

            • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

            • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

            • NO_SOURCE : The project does not have input source code.

            • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

          • location (string) --

            Information about the location of the source code to be built. Valid values include:

            • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

            • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

            • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

              • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

              • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

            • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

            • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • gitCloneDepth (integer) --

            Information about the Git clone depth for the build project.

          • gitSubmodulesConfig (dict) --

            Information about the Git submodules configuration for the build project.

            • fetchSubmodules (boolean) --

              Set to true to fetch Git submodules for your AWS CodeBuild build project.

          • buildspec (string) --

            The buildspec file declaration to use for the builds in this build project.

            If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

          • auth (dict) --

            Information about the authorization settings for AWS CodeBuild to access the source code to be built.

            This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

            • type (string) --

              Note

              This data type is deprecated and is no longer accurate or used.

              The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

            • resource (string) --

              The resource value that applies to the specified authorization type.

          • reportBuildStatus (boolean) --

            Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

            Note

            The status of a build triggered by a webhook is always reported to your source provider.

          • buildStatusConfig (dict) --

            Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

            • context (string) --

              Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

            • targetUrl (string) --

              Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • insecureSsl (boolean) --

            Enable this flag to ignore SSL warnings while connecting to the project source code.

          • sourceIdentifier (string) --

            An identifier for this project source.

      • secondarySourceVersions (list) --

        An array of ProjectSourceVersion objects. Each ProjectSourceVersion must be one of:

        • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

        • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

        • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

        • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

        • (dict) --

          A source identifier and its corresponding version.

          • sourceIdentifier (string) --

            An identifier for a source in the build project.

          • sourceVersion (string) --

            The source version for the corresponding source identifier. If specified, must be one of:

            • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

            • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

            • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

            • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

            For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

      • artifacts (dict) --

        A BuildArtifacts object the defines the build artifacts for this batch build.

        • location (string) --

          Information about the location of the build artifacts.

        • sha256sum (string) --

          The SHA-256 hash of the build artifact.

          You can use this hash along with a checksum tool to confirm file integrity and authenticity.

          Note

          This value is available only if the build project's packaging value is set to ZIP .

        • md5sum (string) --

          The MD5 hash of the build artifact.

          You can use this hash along with a checksum tool to confirm file integrity and authenticity.

          Note

          This value is available only if the build project's packaging value is set to ZIP .

        • overrideArtifactName (boolean) --

          If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

        • encryptionDisabled (boolean) --

          Information that tells you if encryption for build artifacts is disabled.

        • artifactIdentifier (string) --

          An identifier for this artifact definition.

      • secondaryArtifacts (list) --

        An array of BuildArtifacts objects the define the build artifacts for this batch build.

        • (dict) --

          Information about build output artifacts.

          • location (string) --

            Information about the location of the build artifacts.

          • sha256sum (string) --

            The SHA-256 hash of the build artifact.

            You can use this hash along with a checksum tool to confirm file integrity and authenticity.

            Note

            This value is available only if the build project's packaging value is set to ZIP .

          • md5sum (string) --

            The MD5 hash of the build artifact.

            You can use this hash along with a checksum tool to confirm file integrity and authenticity.

            Note

            This value is available only if the build project's packaging value is set to ZIP .

          • overrideArtifactName (boolean) --

            If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

          • encryptionDisabled (boolean) --

            Information that tells you if encryption for build artifacts is disabled.

          • artifactIdentifier (string) --

            An identifier for this artifact definition.

      • cache (dict) --

        Information about the cache for the build project.

        • type (string) --

          The type of cache used by the build project. Valid values include:

          • NO_CACHE : The build project does not use any cache.

          • S3 : The build project reads and writes from and to S3.

          • LOCAL : The build project stores a cache locally on a build host that is only available to that build host.

        • location (string) --

          Information about the cache location:

          • NO_CACHE or LOCAL : This value is ignored.

          • S3 : This is the S3 bucket name/prefix.

        • modes (list) --

          If you use a LOCAL cache, the local cache mode. You can use one or more local cache modes at the same time.

          • LOCAL_SOURCE_CACHE mode caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored.

          • LOCAL_DOCKER_LAYER_CACHE mode caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network.

          Note

          • You can use a Docker layer cache in the Linux environment only.

          • The privileged flag must be set so that your project has the required Docker permissions.

          • You should consider the security implications before you use a Docker layer cache.

          • LOCAL_CUSTOM_CACHE mode caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache:

            • Only directories can be specified for caching. You cannot specify individual files.

            • Symlinks are used to reference cached directories.

            • Cached directories are linked to your build before it downloads its project sources. Cached items are overridden if a source item has the same name. Directories are specified using cache paths in the buildspec file.

          • (string) --

      • environment (dict) --

        Information about the build environment of the build project.

        • type (string) --

          The type of build environment to use for related builds.

          • The environment type ARM_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Sydney), and EU (Frankfurt).

          • The environment type LINUX_CONTAINER with compute type build.general1.2xlarge is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and China (Ningxia).

          • The environment type LINUX_GPU_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney) , China (Beijing), and China (Ningxia).

        • image (string) --

          The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats:

          • For an image tag: registry/repository:tag . For example, to specify an image with the tag "latest," use registry/repository:latest .

          • For an image digest: registry/repository@digest . For example, to specify an image with the digest "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf," use registry/repository@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf .

        • computeType (string) --

          Information about the compute resources the build project uses. Available values include:

          • BUILD_GENERAL1_SMALL : Use up to 3 GB memory and 2 vCPUs for builds.

          • BUILD_GENERAL1_MEDIUM : Use up to 7 GB memory and 4 vCPUs for builds.

          • BUILD_GENERAL1_LARGE : Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type.

          • BUILD_GENERAL1_2XLARGE : Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed.

          If you use BUILD_GENERAL1_LARGE :

          • For environment type LINUX_CONTAINER , you can use up to 15 GB memory and 8 vCPUs for builds.

          • For environment type LINUX_GPU_CONTAINER , you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds.

          • For environment type ARM_CONTAINER , you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds.

          For more information, see Build Environment Compute Types in the AWS CodeBuild User Guide.

        • environmentVariables (list) --

          A set of environment variables to make available to builds for this build project.

          • (dict) --

            Information about an environment variable for a build project or a build.

            • name (string) --

              The name or key of the environment variable.

            • value (string) --

              The value of the environment variable.

              Warning

              We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. PLAINTEXT environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI). For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE or SECRETS_MANAGER .

            • type (string) --

              The type of environment variable. Valid values include:

        • privilegedMode (boolean) --

          Enables running the Docker daemon inside a Docker container. Set to true only if the build project is used to build Docker images. Otherwise, a build that attempts to interact with the Docker daemon fails. The default setting is false .

          You can initialize the Docker daemon during the install phase of your build by adding one of the following sets of commands to the install phase of your buildspec file:

          If the operating system's base image is Ubuntu Linux:

          - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

          - timeout 15 sh -c "until docker info; do echo .; sleep 1; done"

          If the operating system's base image is Alpine Linux and the previous command does not work, add the -t argument to timeout :

          - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

          - timeout -t 15 sh -c "until docker info; do echo .; sleep 1; done"

        • certificate (string) --

          The certificate to use with this build project.

        • registryCredential (dict) --

          The credentials for access to a private registry.

          • credential (string) --

            The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.

            Note

            The credential can use the name of the credentials only if they exist in your current AWS Region.

          • credentialProvider (string) --

            The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager.

        • imagePullCredentialsType (string) --

          The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values:

          • CODEBUILD specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal.

          • SERVICE_ROLE specifies that AWS CodeBuild uses your build project's service role.

          When you use a cross-account or private registry image, you must use SERVICE_ROLE credentials. When you use an AWS CodeBuild curated image, you must use CODEBUILD credentials.

      • serviceRole (string) --

        The name of a service role used for builds in the batch.

      • logConfig (dict) --

        Information about logs for a build project. These can be logs in Amazon CloudWatch Logs, built in a specified S3 bucket, or both.

        • cloudWatchLogs (dict) --

          Information about Amazon CloudWatch Logs for a build project. Amazon CloudWatch Logs are enabled by default.

          • status (string) --

            The current status of the logs in Amazon CloudWatch Logs for a build project. Valid values are:

            • ENABLED : Amazon CloudWatch Logs are enabled for this build project.

            • DISABLED : Amazon CloudWatch Logs are not enabled for this build project.

          • groupName (string) --

            The group name of the logs in Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

          • streamName (string) --

            The prefix of the stream name of the Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

        • s3Logs (dict) --

          Information about logs built to an S3 bucket for a build project. S3 logs are not enabled by default.

          • status (string) --

            The current status of the S3 build logs. Valid values are:

            • ENABLED : S3 build logs are enabled for this build project.

            • DISABLED : S3 build logs are not enabled for this build project.

          • location (string) --

            The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket , and your path prefix is build-log , then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log .

          • encryptionDisabled (boolean) --

            Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.

      • buildTimeoutInMinutes (integer) --

        Specifies the maximum amount of time, in minutes, that the build in a batch must be completed in.

      • queuedTimeoutInMinutes (integer) --

        Specifies the amount of time, in minutes, that the batch build is allowed to be queued before it times out.

      • complete (boolean) --

        Indicates if the batch build is complete.

      • initiator (string) --

        The entity that started the batch build. Valid values include:

        • If AWS CodePipeline started the build, the pipeline's name (for example, codepipeline/my-demo-pipeline ).

        • If an AWS Identity and Access Management (IAM) user started the build, the user's name.

        • If the Jenkins plugin for AWS CodeBuild started the build, the string CodeBuild-Jenkins-Plugin .

      • vpcConfig (dict) --

        Information about the VPC configuration that AWS CodeBuild accesses.

        • vpcId (string) --

          The ID of the Amazon VPC.

        • subnets (list) --

          A list of one or more subnet IDs in your Amazon VPC.

          • (string) --

        • securityGroupIds (list) --

          A list of one or more security groups IDs in your Amazon VPC.

          • (string) --

      • encryptionKey (string) --

        The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the batch build output artifacts.

        Note

        You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

        You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/alias-name ).

      • buildBatchNumber (integer) --

        The number of the batch build. For each project, the buildBatchNumber of its first batch build is 1 . The buildBatchNumber of each subsequent batch build is incremented by 1 . If a batch build is deleted, the buildBatchNumber of other batch builds does not change.

      • fileSystemLocations (list) --

        An array of ProjectFileSystemLocation objects for the batch build project. A ProjectFileSystemLocation object specifies the identifier , location , mountOptions , mountPoint , and type of a file system created using Amazon Elastic File System.

        • (dict) --

          Information about a file system created by Amazon Elastic File System (EFS). For more information, see What Is Amazon Elastic File System?

          • type (string) --

            The type of the file system. The one supported type is EFS .

          • location (string) --

            A string that specifies the location of the file system created by Amazon EFS. Its format is efs-dns-name:/directory-path . You can find the DNS name of file system when you view it in the AWS EFS console. The directory path is a path to a directory in the file system that CodeBuild mounts. For example, if the DNS name of a file system is fs-abcd1234.efs.us-west-2.amazonaws.com , and its mount directory is my-efs-mount-directory , then the location is fs-abcd1234.efs.us-west-2.amazonaws.com:/my-efs-mount-directory .

            The directory path in the format efs-dns-name:/directory-path is optional. If you do not specify a directory path, the location is only the DNS name and CodeBuild mounts the entire file system.

          • mountPoint (string) --

            The location in the container where you mount the file system.

          • identifier (string) --

            The name used to access a file system created by Amazon EFS. CodeBuild creates an environment variable by appending the identifier in all capital letters to CODEBUILD_ . For example, if you specify my-efs for identifier , a new environment variable is create named CODEBUILD_MY-EFS .

            The identifier is used to mount your file system.

          • mountOptions (string) --

            The mount options for a file system created by AWS EFS. The default mount options used by CodeBuild are nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 . For more information, see Recommended NFS Mount Options.

      • buildBatchConfig (dict) --

        Contains configuration information about a batch build project.

        • serviceRole (string) --

          Specifies the service role ARN for the batch build project.

        • combineArtifacts (boolean) --

          Specifies if the build artifacts for the batch build should be combined into a single artifact location.

        • restrictions (dict) --

          A BatchRestrictions object that specifies the restrictions for the batch build.

          • maximumBuildsAllowed (integer) --

            Specifies the maximum number of builds allowed.

          • computeTypesAllowed (list) --

            An array of strings that specify the compute types that are allowed for the batch build. See Build environment compute types in the AWS CodeBuild User Guide for these values.

            • (string) --

        • timeoutInMins (integer) --

          Specifies the maximum amount of time, in minutes, that the batch build must be completed in.

      • buildGroups (list) --

        An array of BuildGroup objects that define the build groups for the batch build.

        • (dict) --

          Contains information about a batch build build group. Build groups are used to combine builds that can run in parallel, while still being able to set dependencies on other build groups.

          • identifier (string) --

            Contains the identifier of the build group.

          • dependsOn (list) --

            An array of strings that contain the identifiers of the build groups that this build group depends on.

            • (string) --

          • ignoreFailure (boolean) --

            Specifies if failures in this build group can be ignored.

          • currentBuildSummary (dict) --

            A BuildSummary object that contains a summary of the current build group.

            • arn (string) --

              The batch build ARN.

            • requestedOn (datetime) --

              When the build was started, expressed in Unix time format.

            • buildStatus (string) --

              The status of the build group.

              FAILED

              The build group failed.

              FAULT

              The build group faulted.

              IN_PROGRESS

              The build group is still in progress.

              STOPPED

              The build group stopped.

              SUCCEEDED

              The build group succeeded.

              TIMED_OUT

              The build group timed out.

            • primaryArtifact (dict) --

              A ResolvedArtifact object that represents the primary build artifacts for the build group.

              • type (string) --

                Specifies the type of artifact.

              • location (string) --

                The location of the artifact.

              • identifier (string) --

                The identifier of the artifact.

            • secondaryArtifacts (list) --

              An array of ResolvedArtifact objects that represents the secondary build artifacts for the build group.

              • (dict) --

                Represents a resolved build artifact. A resolve artifact is an artifact that is built and deployed to the destination, such as Amazon Simple Storage Service (Amazon S3).

                • type (string) --

                  Specifies the type of artifact.

                • location (string) --

                  The location of the artifact.

                • identifier (string) --

                  The identifier of the artifact.

          • priorBuildSummaryList (list) --

            An array of BuildSummary objects that contain summaries of previous build groups.

            • (dict) --

              Contains summary information about a batch build group.

              • arn (string) --

                The batch build ARN.

              • requestedOn (datetime) --

                When the build was started, expressed in Unix time format.

              • buildStatus (string) --

                The status of the build group.

                FAILED

                The build group failed.

                FAULT

                The build group faulted.

                IN_PROGRESS

                The build group is still in progress.

                STOPPED

                The build group stopped.

                SUCCEEDED

                The build group succeeded.

                TIMED_OUT

                The build group timed out.

              • primaryArtifact (dict) --

                A ResolvedArtifact object that represents the primary build artifacts for the build group.

                • type (string) --

                  Specifies the type of artifact.

                • location (string) --

                  The location of the artifact.

                • identifier (string) --

                  The identifier of the artifact.

              • secondaryArtifacts (list) --

                An array of ResolvedArtifact objects that represents the secondary build artifacts for the build group.

                • (dict) --

                  Represents a resolved build artifact. A resolve artifact is an artifact that is built and deployed to the destination, such as Amazon Simple Storage Service (Amazon S3).

                  • type (string) --

                    Specifies the type of artifact.

                  • location (string) --

                    The location of the artifact.

                  • identifier (string) --

                    The identifier of the artifact.

ListBuildBatches (new) Link ¶

Retrieves the identifiers of your build batches in the current region.

See also: AWS API Documentation

Request Syntax

client.list_build_batches(
    filter={
        'status': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED'
    },
    maxResults=123,
    sortOrder='ASCENDING'|'DESCENDING',
    nextToken='string'
)
type filter

dict

param filter

A BuildBatchFilter object that specifies the filters for the search.

  • status (string) --

    The status of the batch builds to retrieve. Only batch builds that have this status will be retrieved.

type maxResults

integer

param maxResults

The maximum number of results to return.

type sortOrder

string

param sortOrder

Specifies the sort order of the returned items. Valid values include:

  • ASCENDING : List the batch build identifiers in ascending order by identifier.

  • DESCENDING : List the batch build identifiers in descending order by identifier.

type nextToken

string

param nextToken

The nextToken value returned from a previous call to ListBuildBatches . This specifies the next item to return. To return the beginning of the list, exclude this parameter.

rtype

dict

returns

Response Syntax

{
    'ids': [
        'string',
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • ids (list) --

      An array of strings that contains the batch build identifiers.

      • (string) --

    • nextToken (string) --

      If there are more items to return, this contains a token that is passed to a subsequent call to ListBuildBatches to retrieve the next set of items.

DescribeCodeCoverages (new) Link ¶

Retrieves one or more code coverage reports.

See also: AWS API Documentation

Request Syntax

client.describe_code_coverages(
    reportArn='string',
    nextToken='string',
    maxResults=123,
    sortOrder='ASCENDING'|'DESCENDING',
    sortBy='LINE_COVERAGE_PERCENTAGE'|'FILE_PATH',
    minLineCoveragePercentage=123.0,
    maxLineCoveragePercentage=123.0
)
type reportArn

string

param reportArn

[REQUIRED]

The ARN of the report for which test cases are returned.

type nextToken

string

param nextToken

The nextToken value returned from a previous call to DescribeCodeCoverages . This specifies the next item to return. To return the beginning of the list, exclude this parameter.

type maxResults

integer

param maxResults

The maximum number of results to return.

type sortOrder

string

param sortOrder

Specifies if the results are sorted in ascending or descending order.

type sortBy

string

param sortBy

Specifies how the results are sorted. Possible values are:

FILE_PATH

The results are sorted by file path.

LINE_COVERAGE_PERCENTAGE

The results are sorted by the percentage of lines that are covered.

type minLineCoveragePercentage

float

param minLineCoveragePercentage

The minimum line coverage percentage to report.

type maxLineCoveragePercentage

float

param maxLineCoveragePercentage

The maximum line coverage percentage to report.

rtype

dict

returns

Response Syntax

{
    'nextToken': 'string',
    'codeCoverages': [
        {
            'id': 'string',
            'reportARN': 'string',
            'filePath': 'string',
            'lineCoveragePercentage': 123.0,
            'linesCovered': 123,
            'linesMissed': 123,
            'branchCoveragePercentage': 123.0,
            'branchesCovered': 123,
            'branchesMissed': 123,
            'expired': datetime(2015, 1, 1)
        },
    ]
}

Response Structure

  • (dict) --

    • nextToken (string) --

      If there are more items to return, this contains a token that is passed to a subsequent call to DescribeCodeCoverages to retrieve the next set of items.

    • codeCoverages (list) --

      An array of CodeCoverage objects that contain the results.

      • (dict) --

        Contains code coverage report information.

        Line coverage measures how many statements your tests cover. A statement is a single instruction, not including comments, conditionals, etc.

        Branch coverage determines if your tests cover every possible branch of a control structure, such as an if or case statement.

        • id (string) --

          The identifier of the code coverage report.

        • reportARN (string) --

          The ARN of the report.

        • filePath (string) --

          The path of the test report file.

        • lineCoveragePercentage (float) --

          The percentage of lines that are covered by your tests.

        • linesCovered (integer) --

          The number of lines that are covered by your tests.

        • linesMissed (integer) --

          The number of lines that are not covered by your tests.

        • branchCoveragePercentage (float) --

          The percentage of branches that are covered by your tests.

        • branchesCovered (integer) --

          The number of conditional branches that are covered by your tests.

        • branchesMissed (integer) --

          The number of conditional branches that are not covered by your tests.

        • expired (datetime) --

          The date and time that the tests were run.

ListBuildBatchesForProject (new) Link ¶

Retrieves the identifiers of the build batches for a specific project.

See also: AWS API Documentation

Request Syntax

client.list_build_batches_for_project(
    projectName='string',
    filter={
        'status': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED'
    },
    maxResults=123,
    sortOrder='ASCENDING'|'DESCENDING',
    nextToken='string'
)
type projectName

string

param projectName

The name of the project.

type filter

dict

param filter

A BuildBatchFilter object that specifies the filters for the search.

  • status (string) --

    The status of the batch builds to retrieve. Only batch builds that have this status will be retrieved.

type maxResults

integer

param maxResults

The maximum number of results to return.

type sortOrder

string

param sortOrder

Specifies the sort order of the returned items. Valid values include:

  • ASCENDING : List the batch build identifiers in ascending order by identifier.

  • DESCENDING : List the batch build identifiers in descending order by identifier.

type nextToken

string

param nextToken

The nextToken value returned from a previous call to ListBuildBatchesForProject . This specifies the next item to return. To return the beginning of the list, exclude this parameter.

rtype

dict

returns

Response Syntax

{
    'ids': [
        'string',
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • ids (list) --

      An array of strings that contains the batch build identifiers.

      • (string) --

    • nextToken (string) --

      If there are more items to return, this contains a token that is passed to a subsequent call to ListBuildBatchesForProject to retrieve the next set of items.

DeleteBuildBatch (new) Link ¶

Deletes a batch build.

See also: AWS API Documentation

Request Syntax

client.delete_build_batch(
    id='string'
)
type id

string

param id

[REQUIRED]

The identifier of the batch build to delete.

rtype

dict

returns

Response Syntax

{
    'statusCode': 'string',
    'buildsDeleted': [
        'string',
    ],
    'buildsNotDeleted': [
        {
            'id': 'string',
            'statusCode': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • statusCode (string) --

      The status code.

    • buildsDeleted (list) --

      An array of strings that contain the identifiers of the builds that were deleted.

      • (string) --

    • buildsNotDeleted (list) --

      An array of BuildNotDeleted objects that specify the builds that could not be deleted.

      • (dict) --

        Information about a build that could not be successfully deleted.

        • id (string) --

          The ID of the build that could not be successfully deleted.

        • statusCode (string) --

          Additional information about the build that could not be successfully deleted.

BatchGetBuildBatches (new) Link ¶

Retrieves information about one or more batch builds.

See also: AWS API Documentation

Request Syntax

client.batch_get_build_batches(
    ids=[
        'string',
    ]
)
type ids

list

param ids

[REQUIRED]

An array that contains the batch build identifiers to retrieve.

  • (string) --

rtype

dict

returns

Response Syntax

{
    'buildBatches': [
        {
            'id': 'string',
            'arn': 'string',
            'startTime': datetime(2015, 1, 1),
            'endTime': datetime(2015, 1, 1),
            'currentPhase': 'string',
            'buildBatchStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
            'sourceVersion': 'string',
            'resolvedSourceVersion': 'string',
            'projectName': 'string',
            'phases': [
                {
                    'phaseType': 'SUBMITTED'|'DOWNLOAD_BATCHSPEC'|'IN_PROGRESS'|'COMBINE_ARTIFACTS'|'SUCCEEDED'|'FAILED'|'STOPPED',
                    'phaseStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
                    'startTime': datetime(2015, 1, 1),
                    'endTime': datetime(2015, 1, 1),
                    'durationInSeconds': 123,
                    'contexts': [
                        {
                            'statusCode': 'string',
                            'message': 'string'
                        },
                    ]
                },
            ],
            'source': {
                'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
                'location': 'string',
                'gitCloneDepth': 123,
                'gitSubmodulesConfig': {
                    'fetchSubmodules': True|False
                },
                'buildspec': 'string',
                'auth': {
                    'type': 'OAUTH',
                    'resource': 'string'
                },
                'reportBuildStatus': True|False,
                'buildStatusConfig': {
                    'context': 'string',
                    'targetUrl': 'string'
                },
                'insecureSsl': True|False,
                'sourceIdentifier': 'string'
            },
            'secondarySources': [
                {
                    'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
                    'location': 'string',
                    'gitCloneDepth': 123,
                    'gitSubmodulesConfig': {
                        'fetchSubmodules': True|False
                    },
                    'buildspec': 'string',
                    'auth': {
                        'type': 'OAUTH',
                        'resource': 'string'
                    },
                    'reportBuildStatus': True|False,
                    'buildStatusConfig': {
                        'context': 'string',
                        'targetUrl': 'string'
                    },
                    'insecureSsl': True|False,
                    'sourceIdentifier': 'string'
                },
            ],
            'secondarySourceVersions': [
                {
                    'sourceIdentifier': 'string',
                    'sourceVersion': 'string'
                },
            ],
            'artifacts': {
                'location': 'string',
                'sha256sum': 'string',
                'md5sum': 'string',
                'overrideArtifactName': True|False,
                'encryptionDisabled': True|False,
                'artifactIdentifier': 'string'
            },
            'secondaryArtifacts': [
                {
                    'location': 'string',
                    'sha256sum': 'string',
                    'md5sum': 'string',
                    'overrideArtifactName': True|False,
                    'encryptionDisabled': True|False,
                    'artifactIdentifier': 'string'
                },
            ],
            'cache': {
                'type': 'NO_CACHE'|'S3'|'LOCAL',
                'location': 'string',
                'modes': [
                    'LOCAL_DOCKER_LAYER_CACHE'|'LOCAL_SOURCE_CACHE'|'LOCAL_CUSTOM_CACHE',
                ]
            },
            'environment': {
                'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER'|'LINUX_GPU_CONTAINER'|'ARM_CONTAINER'|'WINDOWS_SERVER_2019_CONTAINER',
                'image': 'string',
                'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE'|'BUILD_GENERAL1_2XLARGE',
                'environmentVariables': [
                    {
                        'name': 'string',
                        'value': 'string',
                        'type': 'PLAINTEXT'|'PARAMETER_STORE'|'SECRETS_MANAGER'
                    },
                ],
                'privilegedMode': True|False,
                'certificate': 'string',
                'registryCredential': {
                    'credential': 'string',
                    'credentialProvider': 'SECRETS_MANAGER'
                },
                'imagePullCredentialsType': 'CODEBUILD'|'SERVICE_ROLE'
            },
            'serviceRole': 'string',
            'logConfig': {
                'cloudWatchLogs': {
                    'status': 'ENABLED'|'DISABLED',
                    'groupName': 'string',
                    'streamName': 'string'
                },
                's3Logs': {
                    'status': 'ENABLED'|'DISABLED',
                    'location': 'string',
                    'encryptionDisabled': True|False
                }
            },
            'buildTimeoutInMinutes': 123,
            'queuedTimeoutInMinutes': 123,
            'complete': True|False,
            'initiator': 'string',
            'vpcConfig': {
                'vpcId': 'string',
                'subnets': [
                    'string',
                ],
                'securityGroupIds': [
                    'string',
                ]
            },
            'encryptionKey': 'string',
            'buildBatchNumber': 123,
            'fileSystemLocations': [
                {
                    'type': 'EFS',
                    'location': 'string',
                    'mountPoint': 'string',
                    'identifier': 'string',
                    'mountOptions': 'string'
                },
            ],
            'buildBatchConfig': {
                'serviceRole': 'string',
                'combineArtifacts': True|False,
                'restrictions': {
                    'maximumBuildsAllowed': 123,
                    'computeTypesAllowed': [
                        'string',
                    ]
                },
                'timeoutInMins': 123
            },
            'buildGroups': [
                {
                    'identifier': 'string',
                    'dependsOn': [
                        'string',
                    ],
                    'ignoreFailure': True|False,
                    'currentBuildSummary': {
                        'arn': 'string',
                        'requestedOn': datetime(2015, 1, 1),
                        'buildStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
                        'primaryArtifact': {
                            'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                            'location': 'string',
                            'identifier': 'string'
                        },
                        'secondaryArtifacts': [
                            {
                                'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                                'location': 'string',
                                'identifier': 'string'
                            },
                        ]
                    },
                    'priorBuildSummaryList': [
                        {
                            'arn': 'string',
                            'requestedOn': datetime(2015, 1, 1),
                            'buildStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
                            'primaryArtifact': {
                                'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                                'location': 'string',
                                'identifier': 'string'
                            },
                            'secondaryArtifacts': [
                                {
                                    'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                                    'location': 'string',
                                    'identifier': 'string'
                                },
                            ]
                        },
                    ]
                },
            ]
        },
    ],
    'buildBatchesNotFound': [
        'string',
    ]
}

Response Structure

  • (dict) --

    • buildBatches (list) --

      An array of BuildBatch objects that represent the retrieved batch builds.

      • (dict) --

        Contains information about a batch build.

        • id (string) --

          The identifier of the batch build.

        • arn (string) --

          The ARN of the batch build.

        • startTime (datetime) --

          The date and time that the batch build started.

        • endTime (datetime) --

          The date and time that the batch build ended.

        • currentPhase (string) --

          The current phase of the batch build.

        • buildBatchStatus (string) --

          The status of the batch build.

        • sourceVersion (string) --

          The identifier of the version of the source code to be built.

        • resolvedSourceVersion (string) --

          The identifier of the resolved version of this batch build's source code.

          • For AWS CodeCommit, GitHub, GitHub Enterprise, and BitBucket, the commit ID.

          • For AWS CodePipeline, the source revision provided by AWS CodePipeline.

          • For Amazon Simple Storage Service (Amazon S3), this does not apply.

        • projectName (string) --

          The name of the batch build project.

        • phases (list) --

          An array of BuildBatchPhase objects the specify the phases of the batch build.

          • (dict) --

            Contains information about a stage for a batch build.

            • phaseType (string) --

              The name of the batch build phase. Valid values include:

              COMBINE_ARTIFACTS

              Build output artifacts are being combined and uploaded to the output location.

              DOWNLOAD_BATCHSPEC

              The batch build specification is being downloaded.

              FAILED

              One or more of the builds failed.

              IN_PROGRESS

              The batch build is in progress.

              STOPPED

              The batch build was stopped.

              SUBMITTED

              The btach build has been submitted.

              SUCCEEDED

              The batch build succeeded.

            • phaseStatus (string) --

              The current status of the batch build phase. Valid values include:

              FAILED

              The build phase failed.

              FAULT

              The build phase faulted.

              IN_PROGRESS

              The build phase is still in progress.

              QUEUED

              The build has been submitted and is queued behind other submitted builds.

              STOPPED

              The build phase stopped.

              SUCCEEDED

              The build phase succeeded.

              TIMED_OUT

              The build phase timed out.

            • startTime (datetime) --

              When the batch build phase started, expressed in Unix time format.

            • endTime (datetime) --

              When the batch build phase ended, expressed in Unix time format.

            • durationInSeconds (integer) --

              How long, in seconds, between the starting and ending times of the batch build's phase.

            • contexts (list) --

              Additional information about the batch build phase. Especially to help troubleshoot a failed btach build.

              • (dict) --

                Additional information about a build phase that has an error. You can use this information for troubleshooting.

                • statusCode (string) --

                  The status code for the context of the build phase.

                • message (string) --

                  An explanation of the build phase's context. This might include a command ID and an exit code.

        • source (dict) --

          Information about the build input source code for the build project.

          • type (string) --

            The type of repository that contains the source code to be built. Valid values include:

            • BITBUCKET : The source code is in a Bitbucket repository.

            • CODECOMMIT : The source code is in an AWS CodeCommit repository.

            • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

            • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

            • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

            • NO_SOURCE : The project does not have input source code.

            • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

          • location (string) --

            Information about the location of the source code to be built. Valid values include:

            • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

            • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

            • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

              • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

              • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

            • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

            • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • gitCloneDepth (integer) --

            Information about the Git clone depth for the build project.

          • gitSubmodulesConfig (dict) --

            Information about the Git submodules configuration for the build project.

            • fetchSubmodules (boolean) --

              Set to true to fetch Git submodules for your AWS CodeBuild build project.

          • buildspec (string) --

            The buildspec file declaration to use for the builds in this build project.

            If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

          • auth (dict) --

            Information about the authorization settings for AWS CodeBuild to access the source code to be built.

            This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

            • type (string) --

              Note

              This data type is deprecated and is no longer accurate or used.

              The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

            • resource (string) --

              The resource value that applies to the specified authorization type.

          • reportBuildStatus (boolean) --

            Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

            Note

            The status of a build triggered by a webhook is always reported to your source provider.

          • buildStatusConfig (dict) --

            Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

            • context (string) --

              Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

            • targetUrl (string) --

              Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • insecureSsl (boolean) --

            Enable this flag to ignore SSL warnings while connecting to the project source code.

          • sourceIdentifier (string) --

            An identifier for this project source.

        • secondarySources (list) --

          An array of ProjectSource objects that define the sources for the batch build.

          • (dict) --

            Information about the build input source code for the build project.

            • type (string) --

              The type of repository that contains the source code to be built. Valid values include:

              • BITBUCKET : The source code is in a Bitbucket repository.

              • CODECOMMIT : The source code is in an AWS CodeCommit repository.

              • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

              • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

              • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

              • NO_SOURCE : The project does not have input source code.

              • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

            • location (string) --

              Information about the location of the source code to be built. Valid values include:

              • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

              • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

              • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

                • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

                • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

              • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

              • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

            • gitCloneDepth (integer) --

              Information about the Git clone depth for the build project.

            • gitSubmodulesConfig (dict) --

              Information about the Git submodules configuration for the build project.

              • fetchSubmodules (boolean) --

                Set to true to fetch Git submodules for your AWS CodeBuild build project.

            • buildspec (string) --

              The buildspec file declaration to use for the builds in this build project.

              If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

            • auth (dict) --

              Information about the authorization settings for AWS CodeBuild to access the source code to be built.

              This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

              • type (string) --

                Note

                This data type is deprecated and is no longer accurate or used.

                The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

              • resource (string) --

                The resource value that applies to the specified authorization type.

            • reportBuildStatus (boolean) --

              Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

              Note

              The status of a build triggered by a webhook is always reported to your source provider.

            • buildStatusConfig (dict) --

              Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

              • context (string) --

                Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

                Bitbucket

                This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

                GitHub/GitHub Enterprise Server

                This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

              • targetUrl (string) --

                Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

                Bitbucket

                This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

                GitHub/GitHub Enterprise Server

                This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

            • insecureSsl (boolean) --

              Enable this flag to ignore SSL warnings while connecting to the project source code.

            • sourceIdentifier (string) --

              An identifier for this project source.

        • secondarySourceVersions (list) --

          An array of ProjectSourceVersion objects. Each ProjectSourceVersion must be one of:

          • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

          • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

          • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

          • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

          • (dict) --

            A source identifier and its corresponding version.

            • sourceIdentifier (string) --

              An identifier for a source in the build project.

            • sourceVersion (string) --

              The source version for the corresponding source identifier. If specified, must be one of:

              • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

              • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

              • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

              • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

              For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

        • artifacts (dict) --

          A BuildArtifacts object the defines the build artifacts for this batch build.

          • location (string) --

            Information about the location of the build artifacts.

          • sha256sum (string) --

            The SHA-256 hash of the build artifact.

            You can use this hash along with a checksum tool to confirm file integrity and authenticity.

            Note

            This value is available only if the build project's packaging value is set to ZIP .

          • md5sum (string) --

            The MD5 hash of the build artifact.

            You can use this hash along with a checksum tool to confirm file integrity and authenticity.

            Note

            This value is available only if the build project's packaging value is set to ZIP .

          • overrideArtifactName (boolean) --

            If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

          • encryptionDisabled (boolean) --

            Information that tells you if encryption for build artifacts is disabled.

          • artifactIdentifier (string) --

            An identifier for this artifact definition.

        • secondaryArtifacts (list) --

          An array of BuildArtifacts objects the define the build artifacts for this batch build.

          • (dict) --

            Information about build output artifacts.

            • location (string) --

              Information about the location of the build artifacts.

            • sha256sum (string) --

              The SHA-256 hash of the build artifact.

              You can use this hash along with a checksum tool to confirm file integrity and authenticity.

              Note

              This value is available only if the build project's packaging value is set to ZIP .

            • md5sum (string) --

              The MD5 hash of the build artifact.

              You can use this hash along with a checksum tool to confirm file integrity and authenticity.

              Note

              This value is available only if the build project's packaging value is set to ZIP .

            • overrideArtifactName (boolean) --

              If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

            • encryptionDisabled (boolean) --

              Information that tells you if encryption for build artifacts is disabled.

            • artifactIdentifier (string) --

              An identifier for this artifact definition.

        • cache (dict) --

          Information about the cache for the build project.

          • type (string) --

            The type of cache used by the build project. Valid values include:

            • NO_CACHE : The build project does not use any cache.

            • S3 : The build project reads and writes from and to S3.

            • LOCAL : The build project stores a cache locally on a build host that is only available to that build host.

          • location (string) --

            Information about the cache location:

            • NO_CACHE or LOCAL : This value is ignored.

            • S3 : This is the S3 bucket name/prefix.

          • modes (list) --

            If you use a LOCAL cache, the local cache mode. You can use one or more local cache modes at the same time.

            • LOCAL_SOURCE_CACHE mode caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored.

            • LOCAL_DOCKER_LAYER_CACHE mode caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network.

            Note

            • You can use a Docker layer cache in the Linux environment only.

            • The privileged flag must be set so that your project has the required Docker permissions.

            • You should consider the security implications before you use a Docker layer cache.

            • LOCAL_CUSTOM_CACHE mode caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache:

              • Only directories can be specified for caching. You cannot specify individual files.

              • Symlinks are used to reference cached directories.

              • Cached directories are linked to your build before it downloads its project sources. Cached items are overridden if a source item has the same name. Directories are specified using cache paths in the buildspec file.

            • (string) --

        • environment (dict) --

          Information about the build environment of the build project.

          • type (string) --

            The type of build environment to use for related builds.

            • The environment type ARM_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Sydney), and EU (Frankfurt).

            • The environment type LINUX_CONTAINER with compute type build.general1.2xlarge is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and China (Ningxia).

            • The environment type LINUX_GPU_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney) , China (Beijing), and China (Ningxia).

          • image (string) --

            The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats:

            • For an image tag: registry/repository:tag . For example, to specify an image with the tag "latest," use registry/repository:latest .

            • For an image digest: registry/repository@digest . For example, to specify an image with the digest "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf," use registry/repository@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf .

          • computeType (string) --

            Information about the compute resources the build project uses. Available values include:

            • BUILD_GENERAL1_SMALL : Use up to 3 GB memory and 2 vCPUs for builds.

            • BUILD_GENERAL1_MEDIUM : Use up to 7 GB memory and 4 vCPUs for builds.

            • BUILD_GENERAL1_LARGE : Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type.

            • BUILD_GENERAL1_2XLARGE : Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed.

            If you use BUILD_GENERAL1_LARGE :

            • For environment type LINUX_CONTAINER , you can use up to 15 GB memory and 8 vCPUs for builds.

            • For environment type LINUX_GPU_CONTAINER , you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds.

            • For environment type ARM_CONTAINER , you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds.

            For more information, see Build Environment Compute Types in the AWS CodeBuild User Guide.

          • environmentVariables (list) --

            A set of environment variables to make available to builds for this build project.

            • (dict) --

              Information about an environment variable for a build project or a build.

              • name (string) --

                The name or key of the environment variable.

              • value (string) --

                The value of the environment variable.

                Warning

                We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. PLAINTEXT environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI). For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE or SECRETS_MANAGER .

              • type (string) --

                The type of environment variable. Valid values include:

          • privilegedMode (boolean) --

            Enables running the Docker daemon inside a Docker container. Set to true only if the build project is used to build Docker images. Otherwise, a build that attempts to interact with the Docker daemon fails. The default setting is false .

            You can initialize the Docker daemon during the install phase of your build by adding one of the following sets of commands to the install phase of your buildspec file:

            If the operating system's base image is Ubuntu Linux:

            - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

            - timeout 15 sh -c "until docker info; do echo .; sleep 1; done"

            If the operating system's base image is Alpine Linux and the previous command does not work, add the -t argument to timeout :

            - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

            - timeout -t 15 sh -c "until docker info; do echo .; sleep 1; done"

          • certificate (string) --

            The certificate to use with this build project.

          • registryCredential (dict) --

            The credentials for access to a private registry.

            • credential (string) --

              The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.

              Note

              The credential can use the name of the credentials only if they exist in your current AWS Region.

            • credentialProvider (string) --

              The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager.

          • imagePullCredentialsType (string) --

            The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values:

            • CODEBUILD specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal.

            • SERVICE_ROLE specifies that AWS CodeBuild uses your build project's service role.

            When you use a cross-account or private registry image, you must use SERVICE_ROLE credentials. When you use an AWS CodeBuild curated image, you must use CODEBUILD credentials.

        • serviceRole (string) --

          The name of a service role used for builds in the batch.

        • logConfig (dict) --

          Information about logs for a build project. These can be logs in Amazon CloudWatch Logs, built in a specified S3 bucket, or both.

          • cloudWatchLogs (dict) --

            Information about Amazon CloudWatch Logs for a build project. Amazon CloudWatch Logs are enabled by default.

            • status (string) --

              The current status of the logs in Amazon CloudWatch Logs for a build project. Valid values are:

              • ENABLED : Amazon CloudWatch Logs are enabled for this build project.

              • DISABLED : Amazon CloudWatch Logs are not enabled for this build project.

            • groupName (string) --

              The group name of the logs in Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

            • streamName (string) --

              The prefix of the stream name of the Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

          • s3Logs (dict) --

            Information about logs built to an S3 bucket for a build project. S3 logs are not enabled by default.

            • status (string) --

              The current status of the S3 build logs. Valid values are:

              • ENABLED : S3 build logs are enabled for this build project.

              • DISABLED : S3 build logs are not enabled for this build project.

            • location (string) --

              The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket , and your path prefix is build-log , then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log .

            • encryptionDisabled (boolean) --

              Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.

        • buildTimeoutInMinutes (integer) --

          Specifies the maximum amount of time, in minutes, that the build in a batch must be completed in.

        • queuedTimeoutInMinutes (integer) --

          Specifies the amount of time, in minutes, that the batch build is allowed to be queued before it times out.

        • complete (boolean) --

          Indicates if the batch build is complete.

        • initiator (string) --

          The entity that started the batch build. Valid values include:

          • If AWS CodePipeline started the build, the pipeline's name (for example, codepipeline/my-demo-pipeline ).

          • If an AWS Identity and Access Management (IAM) user started the build, the user's name.

          • If the Jenkins plugin for AWS CodeBuild started the build, the string CodeBuild-Jenkins-Plugin .

        • vpcConfig (dict) --

          Information about the VPC configuration that AWS CodeBuild accesses.

          • vpcId (string) --

            The ID of the Amazon VPC.

          • subnets (list) --

            A list of one or more subnet IDs in your Amazon VPC.

            • (string) --

          • securityGroupIds (list) --

            A list of one or more security groups IDs in your Amazon VPC.

            • (string) --

        • encryptionKey (string) --

          The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the batch build output artifacts.

          Note

          You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

          You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/alias-name ).

        • buildBatchNumber (integer) --

          The number of the batch build. For each project, the buildBatchNumber of its first batch build is 1 . The buildBatchNumber of each subsequent batch build is incremented by 1 . If a batch build is deleted, the buildBatchNumber of other batch builds does not change.

        • fileSystemLocations (list) --

          An array of ProjectFileSystemLocation objects for the batch build project. A ProjectFileSystemLocation object specifies the identifier , location , mountOptions , mountPoint , and type of a file system created using Amazon Elastic File System.

          • (dict) --

            Information about a file system created by Amazon Elastic File System (EFS). For more information, see What Is Amazon Elastic File System?

            • type (string) --

              The type of the file system. The one supported type is EFS .

            • location (string) --

              A string that specifies the location of the file system created by Amazon EFS. Its format is efs-dns-name:/directory-path . You can find the DNS name of file system when you view it in the AWS EFS console. The directory path is a path to a directory in the file system that CodeBuild mounts. For example, if the DNS name of a file system is fs-abcd1234.efs.us-west-2.amazonaws.com , and its mount directory is my-efs-mount-directory , then the location is fs-abcd1234.efs.us-west-2.amazonaws.com:/my-efs-mount-directory .

              The directory path in the format efs-dns-name:/directory-path is optional. If you do not specify a directory path, the location is only the DNS name and CodeBuild mounts the entire file system.

            • mountPoint (string) --

              The location in the container where you mount the file system.

            • identifier (string) --

              The name used to access a file system created by Amazon EFS. CodeBuild creates an environment variable by appending the identifier in all capital letters to CODEBUILD_ . For example, if you specify my-efs for identifier , a new environment variable is create named CODEBUILD_MY-EFS .

              The identifier is used to mount your file system.

            • mountOptions (string) --

              The mount options for a file system created by AWS EFS. The default mount options used by CodeBuild are nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 . For more information, see Recommended NFS Mount Options.

        • buildBatchConfig (dict) --

          Contains configuration information about a batch build project.

          • serviceRole (string) --

            Specifies the service role ARN for the batch build project.

          • combineArtifacts (boolean) --

            Specifies if the build artifacts for the batch build should be combined into a single artifact location.

          • restrictions (dict) --

            A BatchRestrictions object that specifies the restrictions for the batch build.

            • maximumBuildsAllowed (integer) --

              Specifies the maximum number of builds allowed.

            • computeTypesAllowed (list) --

              An array of strings that specify the compute types that are allowed for the batch build. See Build environment compute types in the AWS CodeBuild User Guide for these values.

              • (string) --

          • timeoutInMins (integer) --

            Specifies the maximum amount of time, in minutes, that the batch build must be completed in.

        • buildGroups (list) --

          An array of BuildGroup objects that define the build groups for the batch build.

          • (dict) --

            Contains information about a batch build build group. Build groups are used to combine builds that can run in parallel, while still being able to set dependencies on other build groups.

            • identifier (string) --

              Contains the identifier of the build group.

            • dependsOn (list) --

              An array of strings that contain the identifiers of the build groups that this build group depends on.

              • (string) --

            • ignoreFailure (boolean) --

              Specifies if failures in this build group can be ignored.

            • currentBuildSummary (dict) --

              A BuildSummary object that contains a summary of the current build group.

              • arn (string) --

                The batch build ARN.

              • requestedOn (datetime) --

                When the build was started, expressed in Unix time format.

              • buildStatus (string) --

                The status of the build group.

                FAILED

                The build group failed.

                FAULT

                The build group faulted.

                IN_PROGRESS

                The build group is still in progress.

                STOPPED

                The build group stopped.

                SUCCEEDED

                The build group succeeded.

                TIMED_OUT

                The build group timed out.

              • primaryArtifact (dict) --

                A ResolvedArtifact object that represents the primary build artifacts for the build group.

                • type (string) --

                  Specifies the type of artifact.

                • location (string) --

                  The location of the artifact.

                • identifier (string) --

                  The identifier of the artifact.

              • secondaryArtifacts (list) --

                An array of ResolvedArtifact objects that represents the secondary build artifacts for the build group.

                • (dict) --

                  Represents a resolved build artifact. A resolve artifact is an artifact that is built and deployed to the destination, such as Amazon Simple Storage Service (Amazon S3).

                  • type (string) --

                    Specifies the type of artifact.

                  • location (string) --

                    The location of the artifact.

                  • identifier (string) --

                    The identifier of the artifact.

            • priorBuildSummaryList (list) --

              An array of BuildSummary objects that contain summaries of previous build groups.

              • (dict) --

                Contains summary information about a batch build group.

                • arn (string) --

                  The batch build ARN.

                • requestedOn (datetime) --

                  When the build was started, expressed in Unix time format.

                • buildStatus (string) --

                  The status of the build group.

                  FAILED

                  The build group failed.

                  FAULT

                  The build group faulted.

                  IN_PROGRESS

                  The build group is still in progress.

                  STOPPED

                  The build group stopped.

                  SUCCEEDED

                  The build group succeeded.

                  TIMED_OUT

                  The build group timed out.

                • primaryArtifact (dict) --

                  A ResolvedArtifact object that represents the primary build artifacts for the build group.

                  • type (string) --

                    Specifies the type of artifact.

                  • location (string) --

                    The location of the artifact.

                  • identifier (string) --

                    The identifier of the artifact.

                • secondaryArtifacts (list) --

                  An array of ResolvedArtifact objects that represents the secondary build artifacts for the build group.

                  • (dict) --

                    Represents a resolved build artifact. A resolve artifact is an artifact that is built and deployed to the destination, such as Amazon Simple Storage Service (Amazon S3).

                    • type (string) --

                      Specifies the type of artifact.

                    • location (string) --

                      The location of the artifact.

                    • identifier (string) --

                      The identifier of the artifact.

    • buildBatchesNotFound (list) --

      An array that contains the identifiers of any batch builds that are not found.

      • (string) --

RetryBuildBatch (new) Link ¶

Restarts a batch build.

See also: AWS API Documentation

Request Syntax

client.retry_build_batch(
    id='string',
    idempotencyToken='string',
    retryType='RETRY_ALL_BUILDS'|'RETRY_FAILED_BUILDS'
)
type id

string

param id

Specifies the identifier of the batch build to restart.

type idempotencyToken

string

param idempotencyToken

A unique, case sensitive identifier you provide to ensure the idempotency of the RetryBuildBatch request. The token is included in the RetryBuildBatch request and is valid for five minutes. If you repeat the RetryBuildBatch request with the same token, but change a parameter, AWS CodeBuild returns a parameter mismatch error.

type retryType

string

param retryType

Specifies the type of retry to perform.

rtype

dict

returns

Response Syntax

{
    'buildBatch': {
        'id': 'string',
        'arn': 'string',
        'startTime': datetime(2015, 1, 1),
        'endTime': datetime(2015, 1, 1),
        'currentPhase': 'string',
        'buildBatchStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
        'sourceVersion': 'string',
        'resolvedSourceVersion': 'string',
        'projectName': 'string',
        'phases': [
            {
                'phaseType': 'SUBMITTED'|'DOWNLOAD_BATCHSPEC'|'IN_PROGRESS'|'COMBINE_ARTIFACTS'|'SUCCEEDED'|'FAILED'|'STOPPED',
                'phaseStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
                'startTime': datetime(2015, 1, 1),
                'endTime': datetime(2015, 1, 1),
                'durationInSeconds': 123,
                'contexts': [
                    {
                        'statusCode': 'string',
                        'message': 'string'
                    },
                ]
            },
        ],
        'source': {
            'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
            'location': 'string',
            'gitCloneDepth': 123,
            'gitSubmodulesConfig': {
                'fetchSubmodules': True|False
            },
            'buildspec': 'string',
            'auth': {
                'type': 'OAUTH',
                'resource': 'string'
            },
            'reportBuildStatus': True|False,
            'buildStatusConfig': {
                'context': 'string',
                'targetUrl': 'string'
            },
            'insecureSsl': True|False,
            'sourceIdentifier': 'string'
        },
        'secondarySources': [
            {
                'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
                'location': 'string',
                'gitCloneDepth': 123,
                'gitSubmodulesConfig': {
                    'fetchSubmodules': True|False
                },
                'buildspec': 'string',
                'auth': {
                    'type': 'OAUTH',
                    'resource': 'string'
                },
                'reportBuildStatus': True|False,
                'buildStatusConfig': {
                    'context': 'string',
                    'targetUrl': 'string'
                },
                'insecureSsl': True|False,
                'sourceIdentifier': 'string'
            },
        ],
        'secondarySourceVersions': [
            {
                'sourceIdentifier': 'string',
                'sourceVersion': 'string'
            },
        ],
        'artifacts': {
            'location': 'string',
            'sha256sum': 'string',
            'md5sum': 'string',
            'overrideArtifactName': True|False,
            'encryptionDisabled': True|False,
            'artifactIdentifier': 'string'
        },
        'secondaryArtifacts': [
            {
                'location': 'string',
                'sha256sum': 'string',
                'md5sum': 'string',
                'overrideArtifactName': True|False,
                'encryptionDisabled': True|False,
                'artifactIdentifier': 'string'
            },
        ],
        'cache': {
            'type': 'NO_CACHE'|'S3'|'LOCAL',
            'location': 'string',
            'modes': [
                'LOCAL_DOCKER_LAYER_CACHE'|'LOCAL_SOURCE_CACHE'|'LOCAL_CUSTOM_CACHE',
            ]
        },
        'environment': {
            'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER'|'LINUX_GPU_CONTAINER'|'ARM_CONTAINER'|'WINDOWS_SERVER_2019_CONTAINER',
            'image': 'string',
            'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE'|'BUILD_GENERAL1_2XLARGE',
            'environmentVariables': [
                {
                    'name': 'string',
                    'value': 'string',
                    'type': 'PLAINTEXT'|'PARAMETER_STORE'|'SECRETS_MANAGER'
                },
            ],
            'privilegedMode': True|False,
            'certificate': 'string',
            'registryCredential': {
                'credential': 'string',
                'credentialProvider': 'SECRETS_MANAGER'
            },
            'imagePullCredentialsType': 'CODEBUILD'|'SERVICE_ROLE'
        },
        'serviceRole': 'string',
        'logConfig': {
            'cloudWatchLogs': {
                'status': 'ENABLED'|'DISABLED',
                'groupName': 'string',
                'streamName': 'string'
            },
            's3Logs': {
                'status': 'ENABLED'|'DISABLED',
                'location': 'string',
                'encryptionDisabled': True|False
            }
        },
        'buildTimeoutInMinutes': 123,
        'queuedTimeoutInMinutes': 123,
        'complete': True|False,
        'initiator': 'string',
        'vpcConfig': {
            'vpcId': 'string',
            'subnets': [
                'string',
            ],
            'securityGroupIds': [
                'string',
            ]
        },
        'encryptionKey': 'string',
        'buildBatchNumber': 123,
        'fileSystemLocations': [
            {
                'type': 'EFS',
                'location': 'string',
                'mountPoint': 'string',
                'identifier': 'string',
                'mountOptions': 'string'
            },
        ],
        'buildBatchConfig': {
            'serviceRole': 'string',
            'combineArtifacts': True|False,
            'restrictions': {
                'maximumBuildsAllowed': 123,
                'computeTypesAllowed': [
                    'string',
                ]
            },
            'timeoutInMins': 123
        },
        'buildGroups': [
            {
                'identifier': 'string',
                'dependsOn': [
                    'string',
                ],
                'ignoreFailure': True|False,
                'currentBuildSummary': {
                    'arn': 'string',
                    'requestedOn': datetime(2015, 1, 1),
                    'buildStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
                    'primaryArtifact': {
                        'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                        'location': 'string',
                        'identifier': 'string'
                    },
                    'secondaryArtifacts': [
                        {
                            'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                            'location': 'string',
                            'identifier': 'string'
                        },
                    ]
                },
                'priorBuildSummaryList': [
                    {
                        'arn': 'string',
                        'requestedOn': datetime(2015, 1, 1),
                        'buildStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
                        'primaryArtifact': {
                            'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                            'location': 'string',
                            'identifier': 'string'
                        },
                        'secondaryArtifacts': [
                            {
                                'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                                'location': 'string',
                                'identifier': 'string'
                            },
                        ]
                    },
                ]
            },
        ]
    }
}

Response Structure

  • (dict) --

    • buildBatch (dict) --

      Contains information about a batch build.

      • id (string) --

        The identifier of the batch build.

      • arn (string) --

        The ARN of the batch build.

      • startTime (datetime) --

        The date and time that the batch build started.

      • endTime (datetime) --

        The date and time that the batch build ended.

      • currentPhase (string) --

        The current phase of the batch build.

      • buildBatchStatus (string) --

        The status of the batch build.

      • sourceVersion (string) --

        The identifier of the version of the source code to be built.

      • resolvedSourceVersion (string) --

        The identifier of the resolved version of this batch build's source code.

        • For AWS CodeCommit, GitHub, GitHub Enterprise, and BitBucket, the commit ID.

        • For AWS CodePipeline, the source revision provided by AWS CodePipeline.

        • For Amazon Simple Storage Service (Amazon S3), this does not apply.

      • projectName (string) --

        The name of the batch build project.

      • phases (list) --

        An array of BuildBatchPhase objects the specify the phases of the batch build.

        • (dict) --

          Contains information about a stage for a batch build.

          • phaseType (string) --

            The name of the batch build phase. Valid values include:

            COMBINE_ARTIFACTS

            Build output artifacts are being combined and uploaded to the output location.

            DOWNLOAD_BATCHSPEC

            The batch build specification is being downloaded.

            FAILED

            One or more of the builds failed.

            IN_PROGRESS

            The batch build is in progress.

            STOPPED

            The batch build was stopped.

            SUBMITTED

            The btach build has been submitted.

            SUCCEEDED

            The batch build succeeded.

          • phaseStatus (string) --

            The current status of the batch build phase. Valid values include:

            FAILED

            The build phase failed.

            FAULT

            The build phase faulted.

            IN_PROGRESS

            The build phase is still in progress.

            QUEUED

            The build has been submitted and is queued behind other submitted builds.

            STOPPED

            The build phase stopped.

            SUCCEEDED

            The build phase succeeded.

            TIMED_OUT

            The build phase timed out.

          • startTime (datetime) --

            When the batch build phase started, expressed in Unix time format.

          • endTime (datetime) --

            When the batch build phase ended, expressed in Unix time format.

          • durationInSeconds (integer) --

            How long, in seconds, between the starting and ending times of the batch build's phase.

          • contexts (list) --

            Additional information about the batch build phase. Especially to help troubleshoot a failed btach build.

            • (dict) --

              Additional information about a build phase that has an error. You can use this information for troubleshooting.

              • statusCode (string) --

                The status code for the context of the build phase.

              • message (string) --

                An explanation of the build phase's context. This might include a command ID and an exit code.

      • source (dict) --

        Information about the build input source code for the build project.

        • type (string) --

          The type of repository that contains the source code to be built. Valid values include:

          • BITBUCKET : The source code is in a Bitbucket repository.

          • CODECOMMIT : The source code is in an AWS CodeCommit repository.

          • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

          • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

          • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

          • NO_SOURCE : The project does not have input source code.

          • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

        • location (string) --

          Information about the location of the source code to be built. Valid values include:

          • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

          • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

          • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

            • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

            • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

          • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

        • gitCloneDepth (integer) --

          Information about the Git clone depth for the build project.

        • gitSubmodulesConfig (dict) --

          Information about the Git submodules configuration for the build project.

          • fetchSubmodules (boolean) --

            Set to true to fetch Git submodules for your AWS CodeBuild build project.

        • buildspec (string) --

          The buildspec file declaration to use for the builds in this build project.

          If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

        • auth (dict) --

          Information about the authorization settings for AWS CodeBuild to access the source code to be built.

          This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

          • type (string) --

            Note

            This data type is deprecated and is no longer accurate or used.

            The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

          • resource (string) --

            The resource value that applies to the specified authorization type.

        • reportBuildStatus (boolean) --

          Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

          Note

          The status of a build triggered by a webhook is always reported to your source provider.

        • buildStatusConfig (dict) --

          Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

          • context (string) --

            Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

            Bitbucket

            This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

            GitHub/GitHub Enterprise Server

            This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • targetUrl (string) --

            Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

            Bitbucket

            This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

            GitHub/GitHub Enterprise Server

            This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

        • insecureSsl (boolean) --

          Enable this flag to ignore SSL warnings while connecting to the project source code.

        • sourceIdentifier (string) --

          An identifier for this project source.

      • secondarySources (list) --

        An array of ProjectSource objects that define the sources for the batch build.

        • (dict) --

          Information about the build input source code for the build project.

          • type (string) --

            The type of repository that contains the source code to be built. Valid values include:

            • BITBUCKET : The source code is in a Bitbucket repository.

            • CODECOMMIT : The source code is in an AWS CodeCommit repository.

            • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

            • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

            • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

            • NO_SOURCE : The project does not have input source code.

            • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

          • location (string) --

            Information about the location of the source code to be built. Valid values include:

            • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

            • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

            • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

              • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

              • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

            • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

            • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • gitCloneDepth (integer) --

            Information about the Git clone depth for the build project.

          • gitSubmodulesConfig (dict) --

            Information about the Git submodules configuration for the build project.

            • fetchSubmodules (boolean) --

              Set to true to fetch Git submodules for your AWS CodeBuild build project.

          • buildspec (string) --

            The buildspec file declaration to use for the builds in this build project.

            If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

          • auth (dict) --

            Information about the authorization settings for AWS CodeBuild to access the source code to be built.

            This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

            • type (string) --

              Note

              This data type is deprecated and is no longer accurate or used.

              The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

            • resource (string) --

              The resource value that applies to the specified authorization type.

          • reportBuildStatus (boolean) --

            Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

            Note

            The status of a build triggered by a webhook is always reported to your source provider.

          • buildStatusConfig (dict) --

            Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

            • context (string) --

              Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

            • targetUrl (string) --

              Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • insecureSsl (boolean) --

            Enable this flag to ignore SSL warnings while connecting to the project source code.

          • sourceIdentifier (string) --

            An identifier for this project source.

      • secondarySourceVersions (list) --

        An array of ProjectSourceVersion objects. Each ProjectSourceVersion must be one of:

        • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

        • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

        • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

        • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

        • (dict) --

          A source identifier and its corresponding version.

          • sourceIdentifier (string) --

            An identifier for a source in the build project.

          • sourceVersion (string) --

            The source version for the corresponding source identifier. If specified, must be one of:

            • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

            • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

            • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

            • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

            For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

      • artifacts (dict) --

        A BuildArtifacts object the defines the build artifacts for this batch build.

        • location (string) --

          Information about the location of the build artifacts.

        • sha256sum (string) --

          The SHA-256 hash of the build artifact.

          You can use this hash along with a checksum tool to confirm file integrity and authenticity.

          Note

          This value is available only if the build project's packaging value is set to ZIP .

        • md5sum (string) --

          The MD5 hash of the build artifact.

          You can use this hash along with a checksum tool to confirm file integrity and authenticity.

          Note

          This value is available only if the build project's packaging value is set to ZIP .

        • overrideArtifactName (boolean) --

          If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

        • encryptionDisabled (boolean) --

          Information that tells you if encryption for build artifacts is disabled.

        • artifactIdentifier (string) --

          An identifier for this artifact definition.

      • secondaryArtifacts (list) --

        An array of BuildArtifacts objects the define the build artifacts for this batch build.

        • (dict) --

          Information about build output artifacts.

          • location (string) --

            Information about the location of the build artifacts.

          • sha256sum (string) --

            The SHA-256 hash of the build artifact.

            You can use this hash along with a checksum tool to confirm file integrity and authenticity.

            Note

            This value is available only if the build project's packaging value is set to ZIP .

          • md5sum (string) --

            The MD5 hash of the build artifact.

            You can use this hash along with a checksum tool to confirm file integrity and authenticity.

            Note

            This value is available only if the build project's packaging value is set to ZIP .

          • overrideArtifactName (boolean) --

            If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

          • encryptionDisabled (boolean) --

            Information that tells you if encryption for build artifacts is disabled.

          • artifactIdentifier (string) --

            An identifier for this artifact definition.

      • cache (dict) --

        Information about the cache for the build project.

        • type (string) --

          The type of cache used by the build project. Valid values include:

          • NO_CACHE : The build project does not use any cache.

          • S3 : The build project reads and writes from and to S3.

          • LOCAL : The build project stores a cache locally on a build host that is only available to that build host.

        • location (string) --

          Information about the cache location:

          • NO_CACHE or LOCAL : This value is ignored.

          • S3 : This is the S3 bucket name/prefix.

        • modes (list) --

          If you use a LOCAL cache, the local cache mode. You can use one or more local cache modes at the same time.

          • LOCAL_SOURCE_CACHE mode caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored.

          • LOCAL_DOCKER_LAYER_CACHE mode caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network.

          Note

          • You can use a Docker layer cache in the Linux environment only.

          • The privileged flag must be set so that your project has the required Docker permissions.

          • You should consider the security implications before you use a Docker layer cache.

          • LOCAL_CUSTOM_CACHE mode caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache:

            • Only directories can be specified for caching. You cannot specify individual files.

            • Symlinks are used to reference cached directories.

            • Cached directories are linked to your build before it downloads its project sources. Cached items are overridden if a source item has the same name. Directories are specified using cache paths in the buildspec file.

          • (string) --

      • environment (dict) --

        Information about the build environment of the build project.

        • type (string) --

          The type of build environment to use for related builds.

          • The environment type ARM_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Sydney), and EU (Frankfurt).

          • The environment type LINUX_CONTAINER with compute type build.general1.2xlarge is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and China (Ningxia).

          • The environment type LINUX_GPU_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney) , China (Beijing), and China (Ningxia).

        • image (string) --

          The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats:

          • For an image tag: registry/repository:tag . For example, to specify an image with the tag "latest," use registry/repository:latest .

          • For an image digest: registry/repository@digest . For example, to specify an image with the digest "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf," use registry/repository@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf .

        • computeType (string) --

          Information about the compute resources the build project uses. Available values include:

          • BUILD_GENERAL1_SMALL : Use up to 3 GB memory and 2 vCPUs for builds.

          • BUILD_GENERAL1_MEDIUM : Use up to 7 GB memory and 4 vCPUs for builds.

          • BUILD_GENERAL1_LARGE : Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type.

          • BUILD_GENERAL1_2XLARGE : Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed.

          If you use BUILD_GENERAL1_LARGE :

          • For environment type LINUX_CONTAINER , you can use up to 15 GB memory and 8 vCPUs for builds.

          • For environment type LINUX_GPU_CONTAINER , you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds.

          • For environment type ARM_CONTAINER , you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds.

          For more information, see Build Environment Compute Types in the AWS CodeBuild User Guide.

        • environmentVariables (list) --

          A set of environment variables to make available to builds for this build project.

          • (dict) --

            Information about an environment variable for a build project or a build.

            • name (string) --

              The name or key of the environment variable.

            • value (string) --

              The value of the environment variable.

              Warning

              We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. PLAINTEXT environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI). For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE or SECRETS_MANAGER .

            • type (string) --

              The type of environment variable. Valid values include:

        • privilegedMode (boolean) --

          Enables running the Docker daemon inside a Docker container. Set to true only if the build project is used to build Docker images. Otherwise, a build that attempts to interact with the Docker daemon fails. The default setting is false .

          You can initialize the Docker daemon during the install phase of your build by adding one of the following sets of commands to the install phase of your buildspec file:

          If the operating system's base image is Ubuntu Linux:

          - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

          - timeout 15 sh -c "until docker info; do echo .; sleep 1; done"

          If the operating system's base image is Alpine Linux and the previous command does not work, add the -t argument to timeout :

          - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

          - timeout -t 15 sh -c "until docker info; do echo .; sleep 1; done"

        • certificate (string) --

          The certificate to use with this build project.

        • registryCredential (dict) --

          The credentials for access to a private registry.

          • credential (string) --

            The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.

            Note

            The credential can use the name of the credentials only if they exist in your current AWS Region.

          • credentialProvider (string) --

            The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager.

        • imagePullCredentialsType (string) --

          The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values:

          • CODEBUILD specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal.

          • SERVICE_ROLE specifies that AWS CodeBuild uses your build project's service role.

          When you use a cross-account or private registry image, you must use SERVICE_ROLE credentials. When you use an AWS CodeBuild curated image, you must use CODEBUILD credentials.

      • serviceRole (string) --

        The name of a service role used for builds in the batch.

      • logConfig (dict) --

        Information about logs for a build project. These can be logs in Amazon CloudWatch Logs, built in a specified S3 bucket, or both.

        • cloudWatchLogs (dict) --

          Information about Amazon CloudWatch Logs for a build project. Amazon CloudWatch Logs are enabled by default.

          • status (string) --

            The current status of the logs in Amazon CloudWatch Logs for a build project. Valid values are:

            • ENABLED : Amazon CloudWatch Logs are enabled for this build project.

            • DISABLED : Amazon CloudWatch Logs are not enabled for this build project.

          • groupName (string) --

            The group name of the logs in Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

          • streamName (string) --

            The prefix of the stream name of the Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

        • s3Logs (dict) --

          Information about logs built to an S3 bucket for a build project. S3 logs are not enabled by default.

          • status (string) --

            The current status of the S3 build logs. Valid values are:

            • ENABLED : S3 build logs are enabled for this build project.

            • DISABLED : S3 build logs are not enabled for this build project.

          • location (string) --

            The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket , and your path prefix is build-log , then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log .

          • encryptionDisabled (boolean) --

            Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.

      • buildTimeoutInMinutes (integer) --

        Specifies the maximum amount of time, in minutes, that the build in a batch must be completed in.

      • queuedTimeoutInMinutes (integer) --

        Specifies the amount of time, in minutes, that the batch build is allowed to be queued before it times out.

      • complete (boolean) --

        Indicates if the batch build is complete.

      • initiator (string) --

        The entity that started the batch build. Valid values include:

        • If AWS CodePipeline started the build, the pipeline's name (for example, codepipeline/my-demo-pipeline ).

        • If an AWS Identity and Access Management (IAM) user started the build, the user's name.

        • If the Jenkins plugin for AWS CodeBuild started the build, the string CodeBuild-Jenkins-Plugin .

      • vpcConfig (dict) --

        Information about the VPC configuration that AWS CodeBuild accesses.

        • vpcId (string) --

          The ID of the Amazon VPC.

        • subnets (list) --

          A list of one or more subnet IDs in your Amazon VPC.

          • (string) --

        • securityGroupIds (list) --

          A list of one or more security groups IDs in your Amazon VPC.

          • (string) --

      • encryptionKey (string) --

        The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the batch build output artifacts.

        Note

        You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

        You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/alias-name ).

      • buildBatchNumber (integer) --

        The number of the batch build. For each project, the buildBatchNumber of its first batch build is 1 . The buildBatchNumber of each subsequent batch build is incremented by 1 . If a batch build is deleted, the buildBatchNumber of other batch builds does not change.

      • fileSystemLocations (list) --

        An array of ProjectFileSystemLocation objects for the batch build project. A ProjectFileSystemLocation object specifies the identifier , location , mountOptions , mountPoint , and type of a file system created using Amazon Elastic File System.

        • (dict) --

          Information about a file system created by Amazon Elastic File System (EFS). For more information, see What Is Amazon Elastic File System?

          • type (string) --

            The type of the file system. The one supported type is EFS .

          • location (string) --

            A string that specifies the location of the file system created by Amazon EFS. Its format is efs-dns-name:/directory-path . You can find the DNS name of file system when you view it in the AWS EFS console. The directory path is a path to a directory in the file system that CodeBuild mounts. For example, if the DNS name of a file system is fs-abcd1234.efs.us-west-2.amazonaws.com , and its mount directory is my-efs-mount-directory , then the location is fs-abcd1234.efs.us-west-2.amazonaws.com:/my-efs-mount-directory .

            The directory path in the format efs-dns-name:/directory-path is optional. If you do not specify a directory path, the location is only the DNS name and CodeBuild mounts the entire file system.

          • mountPoint (string) --

            The location in the container where you mount the file system.

          • identifier (string) --

            The name used to access a file system created by Amazon EFS. CodeBuild creates an environment variable by appending the identifier in all capital letters to CODEBUILD_ . For example, if you specify my-efs for identifier , a new environment variable is create named CODEBUILD_MY-EFS .

            The identifier is used to mount your file system.

          • mountOptions (string) --

            The mount options for a file system created by AWS EFS. The default mount options used by CodeBuild are nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 . For more information, see Recommended NFS Mount Options.

      • buildBatchConfig (dict) --

        Contains configuration information about a batch build project.

        • serviceRole (string) --

          Specifies the service role ARN for the batch build project.

        • combineArtifacts (boolean) --

          Specifies if the build artifacts for the batch build should be combined into a single artifact location.

        • restrictions (dict) --

          A BatchRestrictions object that specifies the restrictions for the batch build.

          • maximumBuildsAllowed (integer) --

            Specifies the maximum number of builds allowed.

          • computeTypesAllowed (list) --

            An array of strings that specify the compute types that are allowed for the batch build. See Build environment compute types in the AWS CodeBuild User Guide for these values.

            • (string) --

        • timeoutInMins (integer) --

          Specifies the maximum amount of time, in minutes, that the batch build must be completed in.

      • buildGroups (list) --

        An array of BuildGroup objects that define the build groups for the batch build.

        • (dict) --

          Contains information about a batch build build group. Build groups are used to combine builds that can run in parallel, while still being able to set dependencies on other build groups.

          • identifier (string) --

            Contains the identifier of the build group.

          • dependsOn (list) --

            An array of strings that contain the identifiers of the build groups that this build group depends on.

            • (string) --

          • ignoreFailure (boolean) --

            Specifies if failures in this build group can be ignored.

          • currentBuildSummary (dict) --

            A BuildSummary object that contains a summary of the current build group.

            • arn (string) --

              The batch build ARN.

            • requestedOn (datetime) --

              When the build was started, expressed in Unix time format.

            • buildStatus (string) --

              The status of the build group.

              FAILED

              The build group failed.

              FAULT

              The build group faulted.

              IN_PROGRESS

              The build group is still in progress.

              STOPPED

              The build group stopped.

              SUCCEEDED

              The build group succeeded.

              TIMED_OUT

              The build group timed out.

            • primaryArtifact (dict) --

              A ResolvedArtifact object that represents the primary build artifacts for the build group.

              • type (string) --

                Specifies the type of artifact.

              • location (string) --

                The location of the artifact.

              • identifier (string) --

                The identifier of the artifact.

            • secondaryArtifacts (list) --

              An array of ResolvedArtifact objects that represents the secondary build artifacts for the build group.

              • (dict) --

                Represents a resolved build artifact. A resolve artifact is an artifact that is built and deployed to the destination, such as Amazon Simple Storage Service (Amazon S3).

                • type (string) --

                  Specifies the type of artifact.

                • location (string) --

                  The location of the artifact.

                • identifier (string) --

                  The identifier of the artifact.

          • priorBuildSummaryList (list) --

            An array of BuildSummary objects that contain summaries of previous build groups.

            • (dict) --

              Contains summary information about a batch build group.

              • arn (string) --

                The batch build ARN.

              • requestedOn (datetime) --

                When the build was started, expressed in Unix time format.

              • buildStatus (string) --

                The status of the build group.

                FAILED

                The build group failed.

                FAULT

                The build group faulted.

                IN_PROGRESS

                The build group is still in progress.

                STOPPED

                The build group stopped.

                SUCCEEDED

                The build group succeeded.

                TIMED_OUT

                The build group timed out.

              • primaryArtifact (dict) --

                A ResolvedArtifact object that represents the primary build artifacts for the build group.

                • type (string) --

                  Specifies the type of artifact.

                • location (string) --

                  The location of the artifact.

                • identifier (string) --

                  The identifier of the artifact.

              • secondaryArtifacts (list) --

                An array of ResolvedArtifact objects that represents the secondary build artifacts for the build group.

                • (dict) --

                  Represents a resolved build artifact. A resolve artifact is an artifact that is built and deployed to the destination, such as Amazon Simple Storage Service (Amazon S3).

                  • type (string) --

                    Specifies the type of artifact.

                  • location (string) --

                    The location of the artifact.

                  • identifier (string) --

                    The identifier of the artifact.

StartBuildBatch (new) Link ¶

Starts a batch build for a project.

See also: AWS API Documentation

Request Syntax

client.start_build_batch(
    projectName='string',
    secondarySourcesOverride=[
        {
            'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
            'location': 'string',
            'gitCloneDepth': 123,
            'gitSubmodulesConfig': {
                'fetchSubmodules': True|False
            },
            'buildspec': 'string',
            'auth': {
                'type': 'OAUTH',
                'resource': 'string'
            },
            'reportBuildStatus': True|False,
            'buildStatusConfig': {
                'context': 'string',
                'targetUrl': 'string'
            },
            'insecureSsl': True|False,
            'sourceIdentifier': 'string'
        },
    ],
    secondarySourcesVersionOverride=[
        {
            'sourceIdentifier': 'string',
            'sourceVersion': 'string'
        },
    ],
    sourceVersion='string',
    artifactsOverride={
        'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
        'location': 'string',
        'path': 'string',
        'namespaceType': 'NONE'|'BUILD_ID',
        'name': 'string',
        'packaging': 'NONE'|'ZIP',
        'overrideArtifactName': True|False,
        'encryptionDisabled': True|False,
        'artifactIdentifier': 'string'
    },
    secondaryArtifactsOverride=[
        {
            'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
            'location': 'string',
            'path': 'string',
            'namespaceType': 'NONE'|'BUILD_ID',
            'name': 'string',
            'packaging': 'NONE'|'ZIP',
            'overrideArtifactName': True|False,
            'encryptionDisabled': True|False,
            'artifactIdentifier': 'string'
        },
    ],
    environmentVariablesOverride=[
        {
            'name': 'string',
            'value': 'string',
            'type': 'PLAINTEXT'|'PARAMETER_STORE'|'SECRETS_MANAGER'
        },
    ],
    sourceTypeOverride='CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
    sourceLocationOverride='string',
    sourceAuthOverride={
        'type': 'OAUTH',
        'resource': 'string'
    },
    gitCloneDepthOverride=123,
    gitSubmodulesConfigOverride={
        'fetchSubmodules': True|False
    },
    buildspecOverride='string',
    insecureSslOverride=True|False,
    reportBuildBatchStatusOverride=True|False,
    environmentTypeOverride='WINDOWS_CONTAINER'|'LINUX_CONTAINER'|'LINUX_GPU_CONTAINER'|'ARM_CONTAINER'|'WINDOWS_SERVER_2019_CONTAINER',
    imageOverride='string',
    computeTypeOverride='BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE'|'BUILD_GENERAL1_2XLARGE',
    certificateOverride='string',
    cacheOverride={
        'type': 'NO_CACHE'|'S3'|'LOCAL',
        'location': 'string',
        'modes': [
            'LOCAL_DOCKER_LAYER_CACHE'|'LOCAL_SOURCE_CACHE'|'LOCAL_CUSTOM_CACHE',
        ]
    },
    serviceRoleOverride='string',
    privilegedModeOverride=True|False,
    buildTimeoutInMinutesOverride=123,
    queuedTimeoutInMinutesOverride=123,
    encryptionKeyOverride='string',
    idempotencyToken='string',
    logsConfigOverride={
        'cloudWatchLogs': {
            'status': 'ENABLED'|'DISABLED',
            'groupName': 'string',
            'streamName': 'string'
        },
        's3Logs': {
            'status': 'ENABLED'|'DISABLED',
            'location': 'string',
            'encryptionDisabled': True|False
        }
    },
    registryCredentialOverride={
        'credential': 'string',
        'credentialProvider': 'SECRETS_MANAGER'
    },
    imagePullCredentialsTypeOverride='CODEBUILD'|'SERVICE_ROLE',
    buildBatchConfigOverride={
        'serviceRole': 'string',
        'combineArtifacts': True|False,
        'restrictions': {
            'maximumBuildsAllowed': 123,
            'computeTypesAllowed': [
                'string',
            ]
        },
        'timeoutInMins': 123
    }
)
type projectName

string

param projectName

[REQUIRED]

The name of the project.

type secondarySourcesOverride

list

param secondarySourcesOverride

An array of ProjectSource objects that override the secondary sources defined in the batch build project.

  • (dict) --

    Information about the build input source code for the build project.

    • type (string) -- [REQUIRED]

      The type of repository that contains the source code to be built. Valid values include:

      • BITBUCKET : The source code is in a Bitbucket repository.

      • CODECOMMIT : The source code is in an AWS CodeCommit repository.

      • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

      • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

      • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

      • NO_SOURCE : The project does not have input source code.

      • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

    • location (string) --

      Information about the location of the source code to be built. Valid values include:

      • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

      • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

      • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

        • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

        • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

      • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

      • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

    • gitCloneDepth (integer) --

      Information about the Git clone depth for the build project.

    • gitSubmodulesConfig (dict) --

      Information about the Git submodules configuration for the build project.

      • fetchSubmodules (boolean) -- [REQUIRED]

        Set to true to fetch Git submodules for your AWS CodeBuild build project.

    • buildspec (string) --

      The buildspec file declaration to use for the builds in this build project.

      If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

    • auth (dict) --

      Information about the authorization settings for AWS CodeBuild to access the source code to be built.

      This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

      • type (string) -- [REQUIRED]

        Note

        This data type is deprecated and is no longer accurate or used.

        The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

      • resource (string) --

        The resource value that applies to the specified authorization type.

    • reportBuildStatus (boolean) --

      Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

      Note

      The status of a build triggered by a webhook is always reported to your source provider.

    • buildStatusConfig (dict) --

      Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

      • context (string) --

        Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

        Bitbucket

        This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

        GitHub/GitHub Enterprise Server

        This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

      • targetUrl (string) --

        Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

        Bitbucket

        This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

        GitHub/GitHub Enterprise Server

        This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

    • insecureSsl (boolean) --

      Enable this flag to ignore SSL warnings while connecting to the project source code.

    • sourceIdentifier (string) --

      An identifier for this project source.

type secondarySourcesVersionOverride

list

param secondarySourcesVersionOverride

An array of ProjectSourceVersion objects that override the secondary source versions in the batch build project.

  • (dict) --

    A source identifier and its corresponding version.

    • sourceIdentifier (string) -- [REQUIRED]

      An identifier for a source in the build project.

    • sourceVersion (string) -- [REQUIRED]

      The source version for the corresponding source identifier. If specified, must be one of:

      • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

      • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

      • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

      • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

      For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

type sourceVersion

string

param sourceVersion

The version of the batch build input to be built, for this build only. If not specified, the latest version is used. If specified, the contents depends on the source provider:

AWS CodeCommit

The commit ID, branch, or Git tag to use.

GitHub

The commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

Bitbucket

The commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

Amazon Simple Storage Service (Amazon S3)

The version ID of the object that represents the build input ZIP file to use.

If sourceVersion is specified at the project level, then this sourceVersion (at the build level) takes precedence.

For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

type artifactsOverride

dict

param artifactsOverride

An array of ProjectArtifacts objects that contains information about the build output artifact overrides for the build project.

  • type (string) -- [REQUIRED]

    The type of build output artifact. Valid values include:

    • CODEPIPELINE : The build project has build output generated through AWS CodePipeline.

    Note

    The CODEPIPELINE type is not supported for secondaryArtifacts .

    • NO_ARTIFACTS : The build project does not produce any build output.

    • S3 : The build project stores build output in Amazon Simple Storage Service (Amazon S3).

  • location (string) --

    Information about the build output artifact location:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , this is the name of the output bucket.

  • path (string) --

    Along with namespaceType and name , the pattern that AWS CodeBuild uses to name and store the output artifact:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , this is the path to the output artifact. If path is not specified, path is not used.

    For example, if path is set to MyArtifacts , namespaceType is set to NONE , and name is set to MyArtifact.zip , the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip .

  • namespaceType (string) --

    Along with path and name , the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , valid values include:

      • BUILD_ID : Include the build ID in the location of the build output artifact.

      • NONE : Do not include the build ID. This is the default if namespaceType is not specified.

    For example, if path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

  • name (string) --

    Along with path and namespaceType , the pattern that AWS CodeBuild uses to name and store the output artifact:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.

    For example:

    • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , then the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

    • If path is empty, namespaceType is set to NONE , and name is set to " / ", the output artifact is stored in the root of the output bucket.

    • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to " / ", the output artifact is stored in MyArtifacts/build-ID .

  • packaging (string) --

    The type of build output artifact to create:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , valid values include:

      • NONE : AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.

      • ZIP : AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.

  • overrideArtifactName (boolean) --

    If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

  • encryptionDisabled (boolean) --

    Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon Simple Storage Service (Amazon S3). If this is set with another artifacts type, an invalidInputException is thrown.

  • artifactIdentifier (string) --

    An identifier for this artifact definition.

type secondaryArtifactsOverride

list

param secondaryArtifactsOverride

An array of ProjectArtifacts objects that override the secondary artifacts defined in the batch build project.

  • (dict) --

    Information about the build output artifacts for the build project.

    • type (string) -- [REQUIRED]

      The type of build output artifact. Valid values include:

      • CODEPIPELINE : The build project has build output generated through AWS CodePipeline.

      Note

      The CODEPIPELINE type is not supported for secondaryArtifacts .

      • NO_ARTIFACTS : The build project does not produce any build output.

      • S3 : The build project stores build output in Amazon Simple Storage Service (Amazon S3).

    • location (string) --

      Information about the build output artifact location:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , this is the name of the output bucket.

    • path (string) --

      Along with namespaceType and name , the pattern that AWS CodeBuild uses to name and store the output artifact:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , this is the path to the output artifact. If path is not specified, path is not used.

      For example, if path is set to MyArtifacts , namespaceType is set to NONE , and name is set to MyArtifact.zip , the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip .

    • namespaceType (string) --

      Along with path and name , the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , valid values include:

        • BUILD_ID : Include the build ID in the location of the build output artifact.

        • NONE : Do not include the build ID. This is the default if namespaceType is not specified.

      For example, if path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

    • name (string) --

      Along with path and namespaceType , the pattern that AWS CodeBuild uses to name and store the output artifact:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.

      For example:

      • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , then the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

      • If path is empty, namespaceType is set to NONE , and name is set to " / ", the output artifact is stored in the root of the output bucket.

      • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to " / ", the output artifact is stored in MyArtifacts/build-ID .

    • packaging (string) --

      The type of build output artifact to create:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , valid values include:

        • NONE : AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.

        • ZIP : AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.

    • overrideArtifactName (boolean) --

      If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

    • encryptionDisabled (boolean) --

      Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon Simple Storage Service (Amazon S3). If this is set with another artifacts type, an invalidInputException is thrown.

    • artifactIdentifier (string) --

      An identifier for this artifact definition.

type environmentVariablesOverride

list

param environmentVariablesOverride

An array of EnvironmentVariable objects that override, or add to, the environment variables defined in the batch build project.

  • (dict) --

    Information about an environment variable for a build project or a build.

    • name (string) -- [REQUIRED]

      The name or key of the environment variable.

    • value (string) -- [REQUIRED]

      The value of the environment variable.

      Warning

      We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. PLAINTEXT environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI). For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE or SECRETS_MANAGER .

    • type (string) --

      The type of environment variable. Valid values include:

type sourceTypeOverride

string

param sourceTypeOverride

The source input type that overrides the source input defined in the batch build project.

type sourceLocationOverride

string

param sourceLocationOverride

A location that overrides, for this batch build, the source location defined in the batch build project.

type sourceAuthOverride

dict

param sourceAuthOverride

A SourceAuth object that overrides the one defined in the batch build project. This override applies only if the build project's source is BitBucket or GitHub.

  • type (string) -- [REQUIRED]

    Note

    This data type is deprecated and is no longer accurate or used.

    The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

  • resource (string) --

    The resource value that applies to the specified authorization type.

type gitCloneDepthOverride

integer

param gitCloneDepthOverride

The user-defined depth of history, with a minimum value of 0, that overrides, for this batch build only, any previous depth of history defined in the batch build project.

type gitSubmodulesConfigOverride

dict

param gitSubmodulesConfigOverride

A GitSubmodulesConfig object that overrides the Git submodules configuration for this batch build.

  • fetchSubmodules (boolean) -- [REQUIRED]

    Set to true to fetch Git submodules for your AWS CodeBuild build project.

type buildspecOverride

string

param buildspecOverride

A buildspec file declaration that overrides, for this build only, the latest one already defined in the build project.

If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

type insecureSslOverride

boolean

param insecureSslOverride

Enable this flag to override the insecure SSL setting that is specified in the batch build project. The insecure SSL setting determines whether to ignore SSL warnings while connecting to the project source code. This override applies only if the build's source is GitHub Enterprise.

type reportBuildBatchStatusOverride

boolean

param reportBuildBatchStatusOverride

Set to true to report to your source provider the status of a batch build's start and completion. If you use this option with a source provider other than GitHub, GitHub Enterprise, or Bitbucket, an invalidInputException is thrown.

Note

The status of a build triggered by a webhook is always reported to your source provider.

type environmentTypeOverride

string

param environmentTypeOverride

A container type for this batch build that overrides the one specified in the batch build project.

type imageOverride

string

param imageOverride

The name of an image for this batch build that overrides the one specified in the batch build project.

type computeTypeOverride

string

param computeTypeOverride

The name of a compute type for this batch build that overrides the one specified in the batch build project.

type certificateOverride

string

param certificateOverride

The name of a certificate for this batch build that overrides the one specified in the batch build project.

type cacheOverride

dict

param cacheOverride

A ProjectCache object that specifies cache overrides.

  • type (string) -- [REQUIRED]

    The type of cache used by the build project. Valid values include:

    • NO_CACHE : The build project does not use any cache.

    • S3 : The build project reads and writes from and to S3.

    • LOCAL : The build project stores a cache locally on a build host that is only available to that build host.

  • location (string) --

    Information about the cache location:

    • NO_CACHE or LOCAL : This value is ignored.

    • S3 : This is the S3 bucket name/prefix.

  • modes (list) --

    If you use a LOCAL cache, the local cache mode. You can use one or more local cache modes at the same time.

    • LOCAL_SOURCE_CACHE mode caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored.

    • LOCAL_DOCKER_LAYER_CACHE mode caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network.

    Note

    • You can use a Docker layer cache in the Linux environment only.

    • The privileged flag must be set so that your project has the required Docker permissions.

    • You should consider the security implications before you use a Docker layer cache.

    • LOCAL_CUSTOM_CACHE mode caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache:

      • Only directories can be specified for caching. You cannot specify individual files.

      • Symlinks are used to reference cached directories.

      • Cached directories are linked to your build before it downloads its project sources. Cached items are overridden if a source item has the same name. Directories are specified using cache paths in the buildspec file.

    • (string) --

type serviceRoleOverride

string

param serviceRoleOverride

The name of a service role for this batch build that overrides the one specified in the batch build project.

type privilegedModeOverride

boolean

param privilegedModeOverride

Enable this flag to override privileged mode in the batch build project.

type buildTimeoutInMinutesOverride

integer

param buildTimeoutInMinutesOverride

Overrides the build timeout specified in the batch build project.

type queuedTimeoutInMinutesOverride

integer

param queuedTimeoutInMinutesOverride

The number of minutes a batch build is allowed to be queued before it times out.

type encryptionKeyOverride

string

param encryptionKeyOverride

The AWS Key Management Service (AWS KMS) customer master key (CMK) that overrides the one specified in the batch build project. The CMK key encrypts the build output artifacts.

Note

You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/alias-name ).

type idempotencyToken

string

param idempotencyToken

A unique, case sensitive identifier you provide to ensure the idempotency of the StartBuildBatch request. The token is included in the StartBuildBatch request and is valid for five minutes. If you repeat the StartBuildBatch request with the same token, but change a parameter, AWS CodeBuild returns a parameter mismatch error.

type logsConfigOverride

dict

param logsConfigOverride

A LogsConfig object that override the log settings defined in the batch build project.

  • cloudWatchLogs (dict) --

    Information about Amazon CloudWatch Logs for a build project. Amazon CloudWatch Logs are enabled by default.

    • status (string) -- [REQUIRED]

      The current status of the logs in Amazon CloudWatch Logs for a build project. Valid values are:

      • ENABLED : Amazon CloudWatch Logs are enabled for this build project.

      • DISABLED : Amazon CloudWatch Logs are not enabled for this build project.

    • groupName (string) --

      The group name of the logs in Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

    • streamName (string) --

      The prefix of the stream name of the Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

  • s3Logs (dict) --

    Information about logs built to an S3 bucket for a build project. S3 logs are not enabled by default.

    • status (string) -- [REQUIRED]

      The current status of the S3 build logs. Valid values are:

      • ENABLED : S3 build logs are enabled for this build project.

      • DISABLED : S3 build logs are not enabled for this build project.

    • location (string) --

      The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket , and your path prefix is build-log , then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log .

    • encryptionDisabled (boolean) --

      Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.

type registryCredentialOverride

dict

param registryCredentialOverride

A RegistryCredential object that overrides credentials for access to a private registry.

  • credential (string) -- [REQUIRED]

    The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.

    Note

    The credential can use the name of the credentials only if they exist in your current AWS Region.

  • credentialProvider (string) -- [REQUIRED]

    The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager.

type imagePullCredentialsTypeOverride

string

param imagePullCredentialsTypeOverride

The type of credentials AWS CodeBuild uses to pull images in your batch build. There are two valid values:

CODEBUILD

Specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal.

SERVICE_ROLE

Specifies that AWS CodeBuild uses your build project's service role.

When using a cross-account or private registry image, you must use SERVICE_ROLE credentials. When using an AWS CodeBuild curated image, you must use CODEBUILD credentials.

type buildBatchConfigOverride

dict

param buildBatchConfigOverride

A BuildBatchConfigOverride object that contains batch build configuration overrides.

  • serviceRole (string) --

    Specifies the service role ARN for the batch build project.

  • combineArtifacts (boolean) --

    Specifies if the build artifacts for the batch build should be combined into a single artifact location.

  • restrictions (dict) --

    A BatchRestrictions object that specifies the restrictions for the batch build.

    • maximumBuildsAllowed (integer) --

      Specifies the maximum number of builds allowed.

    • computeTypesAllowed (list) --

      An array of strings that specify the compute types that are allowed for the batch build. See Build environment compute types in the AWS CodeBuild User Guide for these values.

      • (string) --

  • timeoutInMins (integer) --

    Specifies the maximum amount of time, in minutes, that the batch build must be completed in.

rtype

dict

returns

Response Syntax

{
    'buildBatch': {
        'id': 'string',
        'arn': 'string',
        'startTime': datetime(2015, 1, 1),
        'endTime': datetime(2015, 1, 1),
        'currentPhase': 'string',
        'buildBatchStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
        'sourceVersion': 'string',
        'resolvedSourceVersion': 'string',
        'projectName': 'string',
        'phases': [
            {
                'phaseType': 'SUBMITTED'|'DOWNLOAD_BATCHSPEC'|'IN_PROGRESS'|'COMBINE_ARTIFACTS'|'SUCCEEDED'|'FAILED'|'STOPPED',
                'phaseStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
                'startTime': datetime(2015, 1, 1),
                'endTime': datetime(2015, 1, 1),
                'durationInSeconds': 123,
                'contexts': [
                    {
                        'statusCode': 'string',
                        'message': 'string'
                    },
                ]
            },
        ],
        'source': {
            'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
            'location': 'string',
            'gitCloneDepth': 123,
            'gitSubmodulesConfig': {
                'fetchSubmodules': True|False
            },
            'buildspec': 'string',
            'auth': {
                'type': 'OAUTH',
                'resource': 'string'
            },
            'reportBuildStatus': True|False,
            'buildStatusConfig': {
                'context': 'string',
                'targetUrl': 'string'
            },
            'insecureSsl': True|False,
            'sourceIdentifier': 'string'
        },
        'secondarySources': [
            {
                'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
                'location': 'string',
                'gitCloneDepth': 123,
                'gitSubmodulesConfig': {
                    'fetchSubmodules': True|False
                },
                'buildspec': 'string',
                'auth': {
                    'type': 'OAUTH',
                    'resource': 'string'
                },
                'reportBuildStatus': True|False,
                'buildStatusConfig': {
                    'context': 'string',
                    'targetUrl': 'string'
                },
                'insecureSsl': True|False,
                'sourceIdentifier': 'string'
            },
        ],
        'secondarySourceVersions': [
            {
                'sourceIdentifier': 'string',
                'sourceVersion': 'string'
            },
        ],
        'artifacts': {
            'location': 'string',
            'sha256sum': 'string',
            'md5sum': 'string',
            'overrideArtifactName': True|False,
            'encryptionDisabled': True|False,
            'artifactIdentifier': 'string'
        },
        'secondaryArtifacts': [
            {
                'location': 'string',
                'sha256sum': 'string',
                'md5sum': 'string',
                'overrideArtifactName': True|False,
                'encryptionDisabled': True|False,
                'artifactIdentifier': 'string'
            },
        ],
        'cache': {
            'type': 'NO_CACHE'|'S3'|'LOCAL',
            'location': 'string',
            'modes': [
                'LOCAL_DOCKER_LAYER_CACHE'|'LOCAL_SOURCE_CACHE'|'LOCAL_CUSTOM_CACHE',
            ]
        },
        'environment': {
            'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER'|'LINUX_GPU_CONTAINER'|'ARM_CONTAINER'|'WINDOWS_SERVER_2019_CONTAINER',
            'image': 'string',
            'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE'|'BUILD_GENERAL1_2XLARGE',
            'environmentVariables': [
                {
                    'name': 'string',
                    'value': 'string',
                    'type': 'PLAINTEXT'|'PARAMETER_STORE'|'SECRETS_MANAGER'
                },
            ],
            'privilegedMode': True|False,
            'certificate': 'string',
            'registryCredential': {
                'credential': 'string',
                'credentialProvider': 'SECRETS_MANAGER'
            },
            'imagePullCredentialsType': 'CODEBUILD'|'SERVICE_ROLE'
        },
        'serviceRole': 'string',
        'logConfig': {
            'cloudWatchLogs': {
                'status': 'ENABLED'|'DISABLED',
                'groupName': 'string',
                'streamName': 'string'
            },
            's3Logs': {
                'status': 'ENABLED'|'DISABLED',
                'location': 'string',
                'encryptionDisabled': True|False
            }
        },
        'buildTimeoutInMinutes': 123,
        'queuedTimeoutInMinutes': 123,
        'complete': True|False,
        'initiator': 'string',
        'vpcConfig': {
            'vpcId': 'string',
            'subnets': [
                'string',
            ],
            'securityGroupIds': [
                'string',
            ]
        },
        'encryptionKey': 'string',
        'buildBatchNumber': 123,
        'fileSystemLocations': [
            {
                'type': 'EFS',
                'location': 'string',
                'mountPoint': 'string',
                'identifier': 'string',
                'mountOptions': 'string'
            },
        ],
        'buildBatchConfig': {
            'serviceRole': 'string',
            'combineArtifacts': True|False,
            'restrictions': {
                'maximumBuildsAllowed': 123,
                'computeTypesAllowed': [
                    'string',
                ]
            },
            'timeoutInMins': 123
        },
        'buildGroups': [
            {
                'identifier': 'string',
                'dependsOn': [
                    'string',
                ],
                'ignoreFailure': True|False,
                'currentBuildSummary': {
                    'arn': 'string',
                    'requestedOn': datetime(2015, 1, 1),
                    'buildStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
                    'primaryArtifact': {
                        'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                        'location': 'string',
                        'identifier': 'string'
                    },
                    'secondaryArtifacts': [
                        {
                            'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                            'location': 'string',
                            'identifier': 'string'
                        },
                    ]
                },
                'priorBuildSummaryList': [
                    {
                        'arn': 'string',
                        'requestedOn': datetime(2015, 1, 1),
                        'buildStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
                        'primaryArtifact': {
                            'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                            'location': 'string',
                            'identifier': 'string'
                        },
                        'secondaryArtifacts': [
                            {
                                'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                                'location': 'string',
                                'identifier': 'string'
                            },
                        ]
                    },
                ]
            },
        ]
    }
}

Response Structure

  • (dict) --

    • buildBatch (dict) --

      A BuildBatch object that contains information about the batch build.

      • id (string) --

        The identifier of the batch build.

      • arn (string) --

        The ARN of the batch build.

      • startTime (datetime) --

        The date and time that the batch build started.

      • endTime (datetime) --

        The date and time that the batch build ended.

      • currentPhase (string) --

        The current phase of the batch build.

      • buildBatchStatus (string) --

        The status of the batch build.

      • sourceVersion (string) --

        The identifier of the version of the source code to be built.

      • resolvedSourceVersion (string) --

        The identifier of the resolved version of this batch build's source code.

        • For AWS CodeCommit, GitHub, GitHub Enterprise, and BitBucket, the commit ID.

        • For AWS CodePipeline, the source revision provided by AWS CodePipeline.

        • For Amazon Simple Storage Service (Amazon S3), this does not apply.

      • projectName (string) --

        The name of the batch build project.

      • phases (list) --

        An array of BuildBatchPhase objects the specify the phases of the batch build.

        • (dict) --

          Contains information about a stage for a batch build.

          • phaseType (string) --

            The name of the batch build phase. Valid values include:

            COMBINE_ARTIFACTS

            Build output artifacts are being combined and uploaded to the output location.

            DOWNLOAD_BATCHSPEC

            The batch build specification is being downloaded.

            FAILED

            One or more of the builds failed.

            IN_PROGRESS

            The batch build is in progress.

            STOPPED

            The batch build was stopped.

            SUBMITTED

            The btach build has been submitted.

            SUCCEEDED

            The batch build succeeded.

          • phaseStatus (string) --

            The current status of the batch build phase. Valid values include:

            FAILED

            The build phase failed.

            FAULT

            The build phase faulted.

            IN_PROGRESS

            The build phase is still in progress.

            QUEUED

            The build has been submitted and is queued behind other submitted builds.

            STOPPED

            The build phase stopped.

            SUCCEEDED

            The build phase succeeded.

            TIMED_OUT

            The build phase timed out.

          • startTime (datetime) --

            When the batch build phase started, expressed in Unix time format.

          • endTime (datetime) --

            When the batch build phase ended, expressed in Unix time format.

          • durationInSeconds (integer) --

            How long, in seconds, between the starting and ending times of the batch build's phase.

          • contexts (list) --

            Additional information about the batch build phase. Especially to help troubleshoot a failed btach build.

            • (dict) --

              Additional information about a build phase that has an error. You can use this information for troubleshooting.

              • statusCode (string) --

                The status code for the context of the build phase.

              • message (string) --

                An explanation of the build phase's context. This might include a command ID and an exit code.

      • source (dict) --

        Information about the build input source code for the build project.

        • type (string) --

          The type of repository that contains the source code to be built. Valid values include:

          • BITBUCKET : The source code is in a Bitbucket repository.

          • CODECOMMIT : The source code is in an AWS CodeCommit repository.

          • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

          • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

          • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

          • NO_SOURCE : The project does not have input source code.

          • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

        • location (string) --

          Information about the location of the source code to be built. Valid values include:

          • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

          • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

          • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

            • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

            • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

          • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

        • gitCloneDepth (integer) --

          Information about the Git clone depth for the build project.

        • gitSubmodulesConfig (dict) --

          Information about the Git submodules configuration for the build project.

          • fetchSubmodules (boolean) --

            Set to true to fetch Git submodules for your AWS CodeBuild build project.

        • buildspec (string) --

          The buildspec file declaration to use for the builds in this build project.

          If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

        • auth (dict) --

          Information about the authorization settings for AWS CodeBuild to access the source code to be built.

          This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

          • type (string) --

            Note

            This data type is deprecated and is no longer accurate or used.

            The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

          • resource (string) --

            The resource value that applies to the specified authorization type.

        • reportBuildStatus (boolean) --

          Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

          Note

          The status of a build triggered by a webhook is always reported to your source provider.

        • buildStatusConfig (dict) --

          Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

          • context (string) --

            Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

            Bitbucket

            This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

            GitHub/GitHub Enterprise Server

            This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • targetUrl (string) --

            Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

            Bitbucket

            This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

            GitHub/GitHub Enterprise Server

            This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

        • insecureSsl (boolean) --

          Enable this flag to ignore SSL warnings while connecting to the project source code.

        • sourceIdentifier (string) --

          An identifier for this project source.

      • secondarySources (list) --

        An array of ProjectSource objects that define the sources for the batch build.

        • (dict) --

          Information about the build input source code for the build project.

          • type (string) --

            The type of repository that contains the source code to be built. Valid values include:

            • BITBUCKET : The source code is in a Bitbucket repository.

            • CODECOMMIT : The source code is in an AWS CodeCommit repository.

            • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

            • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

            • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

            • NO_SOURCE : The project does not have input source code.

            • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

          • location (string) --

            Information about the location of the source code to be built. Valid values include:

            • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

            • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

            • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

              • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

              • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

            • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

            • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • gitCloneDepth (integer) --

            Information about the Git clone depth for the build project.

          • gitSubmodulesConfig (dict) --

            Information about the Git submodules configuration for the build project.

            • fetchSubmodules (boolean) --

              Set to true to fetch Git submodules for your AWS CodeBuild build project.

          • buildspec (string) --

            The buildspec file declaration to use for the builds in this build project.

            If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

          • auth (dict) --

            Information about the authorization settings for AWS CodeBuild to access the source code to be built.

            This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

            • type (string) --

              Note

              This data type is deprecated and is no longer accurate or used.

              The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

            • resource (string) --

              The resource value that applies to the specified authorization type.

          • reportBuildStatus (boolean) --

            Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

            Note

            The status of a build triggered by a webhook is always reported to your source provider.

          • buildStatusConfig (dict) --

            Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

            • context (string) --

              Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

            • targetUrl (string) --

              Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • insecureSsl (boolean) --

            Enable this flag to ignore SSL warnings while connecting to the project source code.

          • sourceIdentifier (string) --

            An identifier for this project source.

      • secondarySourceVersions (list) --

        An array of ProjectSourceVersion objects. Each ProjectSourceVersion must be one of:

        • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

        • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

        • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

        • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

        • (dict) --

          A source identifier and its corresponding version.

          • sourceIdentifier (string) --

            An identifier for a source in the build project.

          • sourceVersion (string) --

            The source version for the corresponding source identifier. If specified, must be one of:

            • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

            • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

            • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

            • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

            For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

      • artifacts (dict) --

        A BuildArtifacts object the defines the build artifacts for this batch build.

        • location (string) --

          Information about the location of the build artifacts.

        • sha256sum (string) --

          The SHA-256 hash of the build artifact.

          You can use this hash along with a checksum tool to confirm file integrity and authenticity.

          Note

          This value is available only if the build project's packaging value is set to ZIP .

        • md5sum (string) --

          The MD5 hash of the build artifact.

          You can use this hash along with a checksum tool to confirm file integrity and authenticity.

          Note

          This value is available only if the build project's packaging value is set to ZIP .

        • overrideArtifactName (boolean) --

          If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

        • encryptionDisabled (boolean) --

          Information that tells you if encryption for build artifacts is disabled.

        • artifactIdentifier (string) --

          An identifier for this artifact definition.

      • secondaryArtifacts (list) --

        An array of BuildArtifacts objects the define the build artifacts for this batch build.

        • (dict) --

          Information about build output artifacts.

          • location (string) --

            Information about the location of the build artifacts.

          • sha256sum (string) --

            The SHA-256 hash of the build artifact.

            You can use this hash along with a checksum tool to confirm file integrity and authenticity.

            Note

            This value is available only if the build project's packaging value is set to ZIP .

          • md5sum (string) --

            The MD5 hash of the build artifact.

            You can use this hash along with a checksum tool to confirm file integrity and authenticity.

            Note

            This value is available only if the build project's packaging value is set to ZIP .

          • overrideArtifactName (boolean) --

            If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

          • encryptionDisabled (boolean) --

            Information that tells you if encryption for build artifacts is disabled.

          • artifactIdentifier (string) --

            An identifier for this artifact definition.

      • cache (dict) --

        Information about the cache for the build project.

        • type (string) --

          The type of cache used by the build project. Valid values include:

          • NO_CACHE : The build project does not use any cache.

          • S3 : The build project reads and writes from and to S3.

          • LOCAL : The build project stores a cache locally on a build host that is only available to that build host.

        • location (string) --

          Information about the cache location:

          • NO_CACHE or LOCAL : This value is ignored.

          • S3 : This is the S3 bucket name/prefix.

        • modes (list) --

          If you use a LOCAL cache, the local cache mode. You can use one or more local cache modes at the same time.

          • LOCAL_SOURCE_CACHE mode caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored.

          • LOCAL_DOCKER_LAYER_CACHE mode caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network.

          Note

          • You can use a Docker layer cache in the Linux environment only.

          • The privileged flag must be set so that your project has the required Docker permissions.

          • You should consider the security implications before you use a Docker layer cache.

          • LOCAL_CUSTOM_CACHE mode caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache:

            • Only directories can be specified for caching. You cannot specify individual files.

            • Symlinks are used to reference cached directories.

            • Cached directories are linked to your build before it downloads its project sources. Cached items are overridden if a source item has the same name. Directories are specified using cache paths in the buildspec file.

          • (string) --

      • environment (dict) --

        Information about the build environment of the build project.

        • type (string) --

          The type of build environment to use for related builds.

          • The environment type ARM_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Sydney), and EU (Frankfurt).

          • The environment type LINUX_CONTAINER with compute type build.general1.2xlarge is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and China (Ningxia).

          • The environment type LINUX_GPU_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney) , China (Beijing), and China (Ningxia).

        • image (string) --

          The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats:

          • For an image tag: registry/repository:tag . For example, to specify an image with the tag "latest," use registry/repository:latest .

          • For an image digest: registry/repository@digest . For example, to specify an image with the digest "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf," use registry/repository@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf .

        • computeType (string) --

          Information about the compute resources the build project uses. Available values include:

          • BUILD_GENERAL1_SMALL : Use up to 3 GB memory and 2 vCPUs for builds.

          • BUILD_GENERAL1_MEDIUM : Use up to 7 GB memory and 4 vCPUs for builds.

          • BUILD_GENERAL1_LARGE : Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type.

          • BUILD_GENERAL1_2XLARGE : Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed.

          If you use BUILD_GENERAL1_LARGE :

          • For environment type LINUX_CONTAINER , you can use up to 15 GB memory and 8 vCPUs for builds.

          • For environment type LINUX_GPU_CONTAINER , you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds.

          • For environment type ARM_CONTAINER , you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds.

          For more information, see Build Environment Compute Types in the AWS CodeBuild User Guide.

        • environmentVariables (list) --

          A set of environment variables to make available to builds for this build project.

          • (dict) --

            Information about an environment variable for a build project or a build.

            • name (string) --

              The name or key of the environment variable.

            • value (string) --

              The value of the environment variable.

              Warning

              We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. PLAINTEXT environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI). For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE or SECRETS_MANAGER .

            • type (string) --

              The type of environment variable. Valid values include:

        • privilegedMode (boolean) --

          Enables running the Docker daemon inside a Docker container. Set to true only if the build project is used to build Docker images. Otherwise, a build that attempts to interact with the Docker daemon fails. The default setting is false .

          You can initialize the Docker daemon during the install phase of your build by adding one of the following sets of commands to the install phase of your buildspec file:

          If the operating system's base image is Ubuntu Linux:

          - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

          - timeout 15 sh -c "until docker info; do echo .; sleep 1; done"

          If the operating system's base image is Alpine Linux and the previous command does not work, add the -t argument to timeout :

          - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

          - timeout -t 15 sh -c "until docker info; do echo .; sleep 1; done"

        • certificate (string) --

          The certificate to use with this build project.

        • registryCredential (dict) --

          The credentials for access to a private registry.

          • credential (string) --

            The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.

            Note

            The credential can use the name of the credentials only if they exist in your current AWS Region.

          • credentialProvider (string) --

            The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager.

        • imagePullCredentialsType (string) --

          The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values:

          • CODEBUILD specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal.

          • SERVICE_ROLE specifies that AWS CodeBuild uses your build project's service role.

          When you use a cross-account or private registry image, you must use SERVICE_ROLE credentials. When you use an AWS CodeBuild curated image, you must use CODEBUILD credentials.

      • serviceRole (string) --

        The name of a service role used for builds in the batch.

      • logConfig (dict) --

        Information about logs for a build project. These can be logs in Amazon CloudWatch Logs, built in a specified S3 bucket, or both.

        • cloudWatchLogs (dict) --

          Information about Amazon CloudWatch Logs for a build project. Amazon CloudWatch Logs are enabled by default.

          • status (string) --

            The current status of the logs in Amazon CloudWatch Logs for a build project. Valid values are:

            • ENABLED : Amazon CloudWatch Logs are enabled for this build project.

            • DISABLED : Amazon CloudWatch Logs are not enabled for this build project.

          • groupName (string) --

            The group name of the logs in Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

          • streamName (string) --

            The prefix of the stream name of the Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

        • s3Logs (dict) --

          Information about logs built to an S3 bucket for a build project. S3 logs are not enabled by default.

          • status (string) --

            The current status of the S3 build logs. Valid values are:

            • ENABLED : S3 build logs are enabled for this build project.

            • DISABLED : S3 build logs are not enabled for this build project.

          • location (string) --

            The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket , and your path prefix is build-log , then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log .

          • encryptionDisabled (boolean) --

            Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.

      • buildTimeoutInMinutes (integer) --

        Specifies the maximum amount of time, in minutes, that the build in a batch must be completed in.

      • queuedTimeoutInMinutes (integer) --

        Specifies the amount of time, in minutes, that the batch build is allowed to be queued before it times out.

      • complete (boolean) --

        Indicates if the batch build is complete.

      • initiator (string) --

        The entity that started the batch build. Valid values include:

        • If AWS CodePipeline started the build, the pipeline's name (for example, codepipeline/my-demo-pipeline ).

        • If an AWS Identity and Access Management (IAM) user started the build, the user's name.

        • If the Jenkins plugin for AWS CodeBuild started the build, the string CodeBuild-Jenkins-Plugin .

      • vpcConfig (dict) --

        Information about the VPC configuration that AWS CodeBuild accesses.

        • vpcId (string) --

          The ID of the Amazon VPC.

        • subnets (list) --

          A list of one or more subnet IDs in your Amazon VPC.

          • (string) --

        • securityGroupIds (list) --

          A list of one or more security groups IDs in your Amazon VPC.

          • (string) --

      • encryptionKey (string) --

        The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the batch build output artifacts.

        Note

        You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

        You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/alias-name ).

      • buildBatchNumber (integer) --

        The number of the batch build. For each project, the buildBatchNumber of its first batch build is 1 . The buildBatchNumber of each subsequent batch build is incremented by 1 . If a batch build is deleted, the buildBatchNumber of other batch builds does not change.

      • fileSystemLocations (list) --

        An array of ProjectFileSystemLocation objects for the batch build project. A ProjectFileSystemLocation object specifies the identifier , location , mountOptions , mountPoint , and type of a file system created using Amazon Elastic File System.

        • (dict) --

          Information about a file system created by Amazon Elastic File System (EFS). For more information, see What Is Amazon Elastic File System?

          • type (string) --

            The type of the file system. The one supported type is EFS .

          • location (string) --

            A string that specifies the location of the file system created by Amazon EFS. Its format is efs-dns-name:/directory-path . You can find the DNS name of file system when you view it in the AWS EFS console. The directory path is a path to a directory in the file system that CodeBuild mounts. For example, if the DNS name of a file system is fs-abcd1234.efs.us-west-2.amazonaws.com , and its mount directory is my-efs-mount-directory , then the location is fs-abcd1234.efs.us-west-2.amazonaws.com:/my-efs-mount-directory .

            The directory path in the format efs-dns-name:/directory-path is optional. If you do not specify a directory path, the location is only the DNS name and CodeBuild mounts the entire file system.

          • mountPoint (string) --

            The location in the container where you mount the file system.

          • identifier (string) --

            The name used to access a file system created by Amazon EFS. CodeBuild creates an environment variable by appending the identifier in all capital letters to CODEBUILD_ . For example, if you specify my-efs for identifier , a new environment variable is create named CODEBUILD_MY-EFS .

            The identifier is used to mount your file system.

          • mountOptions (string) --

            The mount options for a file system created by AWS EFS. The default mount options used by CodeBuild are nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 . For more information, see Recommended NFS Mount Options.

      • buildBatchConfig (dict) --

        Contains configuration information about a batch build project.

        • serviceRole (string) --

          Specifies the service role ARN for the batch build project.

        • combineArtifacts (boolean) --

          Specifies if the build artifacts for the batch build should be combined into a single artifact location.

        • restrictions (dict) --

          A BatchRestrictions object that specifies the restrictions for the batch build.

          • maximumBuildsAllowed (integer) --

            Specifies the maximum number of builds allowed.

          • computeTypesAllowed (list) --

            An array of strings that specify the compute types that are allowed for the batch build. See Build environment compute types in the AWS CodeBuild User Guide for these values.

            • (string) --

        • timeoutInMins (integer) --

          Specifies the maximum amount of time, in minutes, that the batch build must be completed in.

      • buildGroups (list) --

        An array of BuildGroup objects that define the build groups for the batch build.

        • (dict) --

          Contains information about a batch build build group. Build groups are used to combine builds that can run in parallel, while still being able to set dependencies on other build groups.

          • identifier (string) --

            Contains the identifier of the build group.

          • dependsOn (list) --

            An array of strings that contain the identifiers of the build groups that this build group depends on.

            • (string) --

          • ignoreFailure (boolean) --

            Specifies if failures in this build group can be ignored.

          • currentBuildSummary (dict) --

            A BuildSummary object that contains a summary of the current build group.

            • arn (string) --

              The batch build ARN.

            • requestedOn (datetime) --

              When the build was started, expressed in Unix time format.

            • buildStatus (string) --

              The status of the build group.

              FAILED

              The build group failed.

              FAULT

              The build group faulted.

              IN_PROGRESS

              The build group is still in progress.

              STOPPED

              The build group stopped.

              SUCCEEDED

              The build group succeeded.

              TIMED_OUT

              The build group timed out.

            • primaryArtifact (dict) --

              A ResolvedArtifact object that represents the primary build artifacts for the build group.

              • type (string) --

                Specifies the type of artifact.

              • location (string) --

                The location of the artifact.

              • identifier (string) --

                The identifier of the artifact.

            • secondaryArtifacts (list) --

              An array of ResolvedArtifact objects that represents the secondary build artifacts for the build group.

              • (dict) --

                Represents a resolved build artifact. A resolve artifact is an artifact that is built and deployed to the destination, such as Amazon Simple Storage Service (Amazon S3).

                • type (string) --

                  Specifies the type of artifact.

                • location (string) --

                  The location of the artifact.

                • identifier (string) --

                  The identifier of the artifact.

          • priorBuildSummaryList (list) --

            An array of BuildSummary objects that contain summaries of previous build groups.

            • (dict) --

              Contains summary information about a batch build group.

              • arn (string) --

                The batch build ARN.

              • requestedOn (datetime) --

                When the build was started, expressed in Unix time format.

              • buildStatus (string) --

                The status of the build group.

                FAILED

                The build group failed.

                FAULT

                The build group faulted.

                IN_PROGRESS

                The build group is still in progress.

                STOPPED

                The build group stopped.

                SUCCEEDED

                The build group succeeded.

                TIMED_OUT

                The build group timed out.

              • primaryArtifact (dict) --

                A ResolvedArtifact object that represents the primary build artifacts for the build group.

                • type (string) --

                  Specifies the type of artifact.

                • location (string) --

                  The location of the artifact.

                • identifier (string) --

                  The identifier of the artifact.

              • secondaryArtifacts (list) --

                An array of ResolvedArtifact objects that represents the secondary build artifacts for the build group.

                • (dict) --

                  Represents a resolved build artifact. A resolve artifact is an artifact that is built and deployed to the destination, such as Amazon Simple Storage Service (Amazon S3).

                  • type (string) --

                    Specifies the type of artifact.

                  • location (string) --

                    The location of the artifact.

                  • identifier (string) --

                    The identifier of the artifact.

RetryBuild (new) Link ¶

Restarts a build.

See also: AWS API Documentation

Request Syntax

client.retry_build(
    id='string',
    idempotencyToken='string'
)
type id

string

param id

Specifies the identifier of the build to restart.

type idempotencyToken

string

param idempotencyToken

A unique, case sensitive identifier you provide to ensure the idempotency of the RetryBuild request. The token is included in the RetryBuild request and is valid for five minutes. If you repeat the RetryBuild request with the same token, but change a parameter, AWS CodeBuild returns a parameter mismatch error.

rtype

dict

returns

Response Syntax

{
    'build': {
        'id': 'string',
        'arn': 'string',
        'buildNumber': 123,
        'startTime': datetime(2015, 1, 1),
        'endTime': datetime(2015, 1, 1),
        'currentPhase': 'string',
        'buildStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
        'sourceVersion': 'string',
        'resolvedSourceVersion': 'string',
        'projectName': 'string',
        'phases': [
            {
                'phaseType': 'SUBMITTED'|'QUEUED'|'PROVISIONING'|'DOWNLOAD_SOURCE'|'INSTALL'|'PRE_BUILD'|'BUILD'|'POST_BUILD'|'UPLOAD_ARTIFACTS'|'FINALIZING'|'COMPLETED',
                'phaseStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
                'startTime': datetime(2015, 1, 1),
                'endTime': datetime(2015, 1, 1),
                'durationInSeconds': 123,
                'contexts': [
                    {
                        'statusCode': 'string',
                        'message': 'string'
                    },
                ]
            },
        ],
        'source': {
            'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
            'location': 'string',
            'gitCloneDepth': 123,
            'gitSubmodulesConfig': {
                'fetchSubmodules': True|False
            },
            'buildspec': 'string',
            'auth': {
                'type': 'OAUTH',
                'resource': 'string'
            },
            'reportBuildStatus': True|False,
            'buildStatusConfig': {
                'context': 'string',
                'targetUrl': 'string'
            },
            'insecureSsl': True|False,
            'sourceIdentifier': 'string'
        },
        'secondarySources': [
            {
                'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
                'location': 'string',
                'gitCloneDepth': 123,
                'gitSubmodulesConfig': {
                    'fetchSubmodules': True|False
                },
                'buildspec': 'string',
                'auth': {
                    'type': 'OAUTH',
                    'resource': 'string'
                },
                'reportBuildStatus': True|False,
                'buildStatusConfig': {
                    'context': 'string',
                    'targetUrl': 'string'
                },
                'insecureSsl': True|False,
                'sourceIdentifier': 'string'
            },
        ],
        'secondarySourceVersions': [
            {
                'sourceIdentifier': 'string',
                'sourceVersion': 'string'
            },
        ],
        'artifacts': {
            'location': 'string',
            'sha256sum': 'string',
            'md5sum': 'string',
            'overrideArtifactName': True|False,
            'encryptionDisabled': True|False,
            'artifactIdentifier': 'string'
        },
        'secondaryArtifacts': [
            {
                'location': 'string',
                'sha256sum': 'string',
                'md5sum': 'string',
                'overrideArtifactName': True|False,
                'encryptionDisabled': True|False,
                'artifactIdentifier': 'string'
            },
        ],
        'cache': {
            'type': 'NO_CACHE'|'S3'|'LOCAL',
            'location': 'string',
            'modes': [
                'LOCAL_DOCKER_LAYER_CACHE'|'LOCAL_SOURCE_CACHE'|'LOCAL_CUSTOM_CACHE',
            ]
        },
        'environment': {
            'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER'|'LINUX_GPU_CONTAINER'|'ARM_CONTAINER'|'WINDOWS_SERVER_2019_CONTAINER',
            'image': 'string',
            'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE'|'BUILD_GENERAL1_2XLARGE',
            'environmentVariables': [
                {
                    'name': 'string',
                    'value': 'string',
                    'type': 'PLAINTEXT'|'PARAMETER_STORE'|'SECRETS_MANAGER'
                },
            ],
            'privilegedMode': True|False,
            'certificate': 'string',
            'registryCredential': {
                'credential': 'string',
                'credentialProvider': 'SECRETS_MANAGER'
            },
            'imagePullCredentialsType': 'CODEBUILD'|'SERVICE_ROLE'
        },
        'serviceRole': 'string',
        'logs': {
            'groupName': 'string',
            'streamName': 'string',
            'deepLink': 'string',
            's3DeepLink': 'string',
            'cloudWatchLogsArn': 'string',
            's3LogsArn': 'string',
            'cloudWatchLogs': {
                'status': 'ENABLED'|'DISABLED',
                'groupName': 'string',
                'streamName': 'string'
            },
            's3Logs': {
                'status': 'ENABLED'|'DISABLED',
                'location': 'string',
                'encryptionDisabled': True|False
            }
        },
        'timeoutInMinutes': 123,
        'queuedTimeoutInMinutes': 123,
        'buildComplete': True|False,
        'initiator': 'string',
        'vpcConfig': {
            'vpcId': 'string',
            'subnets': [
                'string',
            ],
            'securityGroupIds': [
                'string',
            ]
        },
        'networkInterface': {
            'subnetId': 'string',
            'networkInterfaceId': 'string'
        },
        'encryptionKey': 'string',
        'exportedEnvironmentVariables': [
            {
                'name': 'string',
                'value': 'string'
            },
        ],
        'reportArns': [
            'string',
        ],
        'fileSystemLocations': [
            {
                'type': 'EFS',
                'location': 'string',
                'mountPoint': 'string',
                'identifier': 'string',
                'mountOptions': 'string'
            },
        ],
        'debugSession': {
            'sessionEnabled': True|False,
            'sessionTarget': 'string'
        },
        'buildBatchArn': 'string'
    }
}

Response Structure

  • (dict) --

    • build (dict) --

      Information about a build.

      • id (string) --

        The unique ID for the build.

      • arn (string) --

        The Amazon Resource Name (ARN) of the build.

      • buildNumber (integer) --

        The number of the build. For each project, the buildNumber of its first build is 1 . The buildNumber of each subsequent build is incremented by 1 . If a build is deleted, the buildNumber of other builds does not change.

      • startTime (datetime) --

        When the build process started, expressed in Unix time format.

      • endTime (datetime) --

        When the build process ended, expressed in Unix time format.

      • currentPhase (string) --

        The current build phase.

      • buildStatus (string) --

        The current status of the build. Valid values include:

        • FAILED : The build failed.

        • FAULT : The build faulted.

        • IN_PROGRESS : The build is still in progress.

        • STOPPED : The build stopped.

        • SUCCEEDED : The build succeeded.

        • TIMED_OUT : The build timed out.

      • sourceVersion (string) --

        Any version identifier for the version of the source code to be built. If sourceVersion is specified at the project level, then this sourceVersion (at the build level) takes precedence.

        For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

      • resolvedSourceVersion (string) --

        An identifier for the version of this build's source code.

        • For AWS CodeCommit, GitHub, GitHub Enterprise, and BitBucket, the commit ID.

        • For AWS CodePipeline, the source revision provided by AWS CodePipeline.

        • For Amazon Simple Storage Service (Amazon S3), this does not apply.

      • projectName (string) --

        The name of the AWS CodeBuild project.

      • phases (list) --

        Information about all previous build phases that are complete and information about any current build phase that is not yet complete.

        • (dict) --

          Information about a stage for a build.

          • phaseType (string) --

            The name of the build phase. Valid values include:

            • BUILD : Core build activities typically occur in this build phase.

            • COMPLETED : The build has been completed.

            • DOWNLOAD_SOURCE : Source code is being downloaded in this build phase.

            • FINALIZING : The build process is completing in this build phase.

            • INSTALL : Installation activities typically occur in this build phase.

            • POST_BUILD : Post-build activities typically occur in this build phase.

            • PRE_BUILD : Pre-build activities typically occur in this build phase.

            • PROVISIONING : The build environment is being set up.

            • QUEUED : The build has been submitted and is queued behind other submitted builds.

            • SUBMITTED : The build has been submitted.

            • UPLOAD_ARTIFACTS : Build output artifacts are being uploaded to the output location.

          • phaseStatus (string) --

            The current status of the build phase. Valid values include:

            FAILED

            The build phase failed.

            FAULT

            The build phase faulted.

            IN_PROGRESS

            The build phase is still in progress.

            QUEUED

            The build has been submitted and is queued behind other submitted builds.

            STOPPED

            The build phase stopped.

            SUCCEEDED

            The build phase succeeded.

            TIMED_OUT

            The build phase timed out.

          • startTime (datetime) --

            When the build phase started, expressed in Unix time format.

          • endTime (datetime) --

            When the build phase ended, expressed in Unix time format.

          • durationInSeconds (integer) --

            How long, in seconds, between the starting and ending times of the build's phase.

          • contexts (list) --

            Additional information about a build phase, especially to help troubleshoot a failed build.

            • (dict) --

              Additional information about a build phase that has an error. You can use this information for troubleshooting.

              • statusCode (string) --

                The status code for the context of the build phase.

              • message (string) --

                An explanation of the build phase's context. This might include a command ID and an exit code.

      • source (dict) --

        Information about the source code to be built.

        • type (string) --

          The type of repository that contains the source code to be built. Valid values include:

          • BITBUCKET : The source code is in a Bitbucket repository.

          • CODECOMMIT : The source code is in an AWS CodeCommit repository.

          • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

          • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

          • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

          • NO_SOURCE : The project does not have input source code.

          • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

        • location (string) --

          Information about the location of the source code to be built. Valid values include:

          • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

          • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

          • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

            • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

            • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

          • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

        • gitCloneDepth (integer) --

          Information about the Git clone depth for the build project.

        • gitSubmodulesConfig (dict) --

          Information about the Git submodules configuration for the build project.

          • fetchSubmodules (boolean) --

            Set to true to fetch Git submodules for your AWS CodeBuild build project.

        • buildspec (string) --

          The buildspec file declaration to use for the builds in this build project.

          If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

        • auth (dict) --

          Information about the authorization settings for AWS CodeBuild to access the source code to be built.

          This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

          • type (string) --

            Note

            This data type is deprecated and is no longer accurate or used.

            The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

          • resource (string) --

            The resource value that applies to the specified authorization type.

        • reportBuildStatus (boolean) --

          Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

          Note

          The status of a build triggered by a webhook is always reported to your source provider.

        • buildStatusConfig (dict) --

          Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

          • context (string) --

            Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

            Bitbucket

            This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

            GitHub/GitHub Enterprise Server

            This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • targetUrl (string) --

            Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

            Bitbucket

            This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

            GitHub/GitHub Enterprise Server

            This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

        • insecureSsl (boolean) --

          Enable this flag to ignore SSL warnings while connecting to the project source code.

        • sourceIdentifier (string) --

          An identifier for this project source.

      • secondarySources (list) --

        An array of ProjectSource objects.

        • (dict) --

          Information about the build input source code for the build project.

          • type (string) --

            The type of repository that contains the source code to be built. Valid values include:

            • BITBUCKET : The source code is in a Bitbucket repository.

            • CODECOMMIT : The source code is in an AWS CodeCommit repository.

            • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

            • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

            • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

            • NO_SOURCE : The project does not have input source code.

            • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

          • location (string) --

            Information about the location of the source code to be built. Valid values include:

            • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

            • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

            • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

              • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

              • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

            • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

            • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • gitCloneDepth (integer) --

            Information about the Git clone depth for the build project.

          • gitSubmodulesConfig (dict) --

            Information about the Git submodules configuration for the build project.

            • fetchSubmodules (boolean) --

              Set to true to fetch Git submodules for your AWS CodeBuild build project.

          • buildspec (string) --

            The buildspec file declaration to use for the builds in this build project.

            If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

          • auth (dict) --

            Information about the authorization settings for AWS CodeBuild to access the source code to be built.

            This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

            • type (string) --

              Note

              This data type is deprecated and is no longer accurate or used.

              The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

            • resource (string) --

              The resource value that applies to the specified authorization type.

          • reportBuildStatus (boolean) --

            Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

            Note

            The status of a build triggered by a webhook is always reported to your source provider.

          • buildStatusConfig (dict) --

            Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

            • context (string) --

              Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

            • targetUrl (string) --

              Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • insecureSsl (boolean) --

            Enable this flag to ignore SSL warnings while connecting to the project source code.

          • sourceIdentifier (string) --

            An identifier for this project source.

      • secondarySourceVersions (list) --

        An array of ProjectSourceVersion objects. Each ProjectSourceVersion must be one of:

        • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

        • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

        • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

        • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

        • (dict) --

          A source identifier and its corresponding version.

          • sourceIdentifier (string) --

            An identifier for a source in the build project.

          • sourceVersion (string) --

            The source version for the corresponding source identifier. If specified, must be one of:

            • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

            • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

            • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

            • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

            For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

      • artifacts (dict) --

        Information about the output artifacts for the build.

        • location (string) --

          Information about the location of the build artifacts.

        • sha256sum (string) --

          The SHA-256 hash of the build artifact.

          You can use this hash along with a checksum tool to confirm file integrity and authenticity.

          Note

          This value is available only if the build project's packaging value is set to ZIP .

        • md5sum (string) --

          The MD5 hash of the build artifact.

          You can use this hash along with a checksum tool to confirm file integrity and authenticity.

          Note

          This value is available only if the build project's packaging value is set to ZIP .

        • overrideArtifactName (boolean) --

          If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

        • encryptionDisabled (boolean) --

          Information that tells you if encryption for build artifacts is disabled.

        • artifactIdentifier (string) --

          An identifier for this artifact definition.

      • secondaryArtifacts (list) --

        An array of ProjectArtifacts objects.

        • (dict) --

          Information about build output artifacts.

          • location (string) --

            Information about the location of the build artifacts.

          • sha256sum (string) --

            The SHA-256 hash of the build artifact.

            You can use this hash along with a checksum tool to confirm file integrity and authenticity.

            Note

            This value is available only if the build project's packaging value is set to ZIP .

          • md5sum (string) --

            The MD5 hash of the build artifact.

            You can use this hash along with a checksum tool to confirm file integrity and authenticity.

            Note

            This value is available only if the build project's packaging value is set to ZIP .

          • overrideArtifactName (boolean) --

            If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

          • encryptionDisabled (boolean) --

            Information that tells you if encryption for build artifacts is disabled.

          • artifactIdentifier (string) --

            An identifier for this artifact definition.

      • cache (dict) --

        Information about the cache for the build.

        • type (string) --

          The type of cache used by the build project. Valid values include:

          • NO_CACHE : The build project does not use any cache.

          • S3 : The build project reads and writes from and to S3.

          • LOCAL : The build project stores a cache locally on a build host that is only available to that build host.

        • location (string) --

          Information about the cache location:

          • NO_CACHE or LOCAL : This value is ignored.

          • S3 : This is the S3 bucket name/prefix.

        • modes (list) --

          If you use a LOCAL cache, the local cache mode. You can use one or more local cache modes at the same time.

          • LOCAL_SOURCE_CACHE mode caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored.

          • LOCAL_DOCKER_LAYER_CACHE mode caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network.

          Note

          • You can use a Docker layer cache in the Linux environment only.

          • The privileged flag must be set so that your project has the required Docker permissions.

          • You should consider the security implications before you use a Docker layer cache.

          • LOCAL_CUSTOM_CACHE mode caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache:

            • Only directories can be specified for caching. You cannot specify individual files.

            • Symlinks are used to reference cached directories.

            • Cached directories are linked to your build before it downloads its project sources. Cached items are overridden if a source item has the same name. Directories are specified using cache paths in the buildspec file.

          • (string) --

      • environment (dict) --

        Information about the build environment for this build.

        • type (string) --

          The type of build environment to use for related builds.

          • The environment type ARM_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Sydney), and EU (Frankfurt).

          • The environment type LINUX_CONTAINER with compute type build.general1.2xlarge is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and China (Ningxia).

          • The environment type LINUX_GPU_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney) , China (Beijing), and China (Ningxia).

        • image (string) --

          The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats:

          • For an image tag: registry/repository:tag . For example, to specify an image with the tag "latest," use registry/repository:latest .

          • For an image digest: registry/repository@digest . For example, to specify an image with the digest "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf," use registry/repository@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf .

        • computeType (string) --

          Information about the compute resources the build project uses. Available values include:

          • BUILD_GENERAL1_SMALL : Use up to 3 GB memory and 2 vCPUs for builds.

          • BUILD_GENERAL1_MEDIUM : Use up to 7 GB memory and 4 vCPUs for builds.

          • BUILD_GENERAL1_LARGE : Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type.

          • BUILD_GENERAL1_2XLARGE : Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed.

          If you use BUILD_GENERAL1_LARGE :

          • For environment type LINUX_CONTAINER , you can use up to 15 GB memory and 8 vCPUs for builds.

          • For environment type LINUX_GPU_CONTAINER , you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds.

          • For environment type ARM_CONTAINER , you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds.

          For more information, see Build Environment Compute Types in the AWS CodeBuild User Guide.

        • environmentVariables (list) --

          A set of environment variables to make available to builds for this build project.

          • (dict) --

            Information about an environment variable for a build project or a build.

            • name (string) --

              The name or key of the environment variable.

            • value (string) --

              The value of the environment variable.

              Warning

              We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. PLAINTEXT environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI). For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE or SECRETS_MANAGER .

            • type (string) --

              The type of environment variable. Valid values include:

        • privilegedMode (boolean) --

          Enables running the Docker daemon inside a Docker container. Set to true only if the build project is used to build Docker images. Otherwise, a build that attempts to interact with the Docker daemon fails. The default setting is false .

          You can initialize the Docker daemon during the install phase of your build by adding one of the following sets of commands to the install phase of your buildspec file:

          If the operating system's base image is Ubuntu Linux:

          - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

          - timeout 15 sh -c "until docker info; do echo .; sleep 1; done"

          If the operating system's base image is Alpine Linux and the previous command does not work, add the -t argument to timeout :

          - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

          - timeout -t 15 sh -c "until docker info; do echo .; sleep 1; done"

        • certificate (string) --

          The certificate to use with this build project.

        • registryCredential (dict) --

          The credentials for access to a private registry.

          • credential (string) --

            The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.

            Note

            The credential can use the name of the credentials only if they exist in your current AWS Region.

          • credentialProvider (string) --

            The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager.

        • imagePullCredentialsType (string) --

          The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values:

          • CODEBUILD specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal.

          • SERVICE_ROLE specifies that AWS CodeBuild uses your build project's service role.

          When you use a cross-account or private registry image, you must use SERVICE_ROLE credentials. When you use an AWS CodeBuild curated image, you must use CODEBUILD credentials.

      • serviceRole (string) --

        The name of a service role used for this build.

      • logs (dict) --

        Information about the build's logs in Amazon CloudWatch Logs.

        • groupName (string) --

          The name of the Amazon CloudWatch Logs group for the build logs.

        • streamName (string) --

          The name of the Amazon CloudWatch Logs stream for the build logs.

        • deepLink (string) --

          The URL to an individual build log in Amazon CloudWatch Logs.

        • s3DeepLink (string) --

          The URL to a build log in an S3 bucket.

        • cloudWatchLogsArn (string) --

          The ARN of Amazon CloudWatch Logs for a build project. Its format is arn:${Partition}:logs:${Region}:${Account}:log-group:${LogGroupName}:log-stream:${LogStreamName} . For more information, see Resources Defined by Amazon CloudWatch Logs.

        • s3LogsArn (string) --

          The ARN of S3 logs for a build project. Its format is arn:${Partition}:s3:::${BucketName}/${ObjectName} . For more information, see Resources Defined by Amazon S3.

        • cloudWatchLogs (dict) --

          Information about Amazon CloudWatch Logs for a build project.

          • status (string) --

            The current status of the logs in Amazon CloudWatch Logs for a build project. Valid values are:

            • ENABLED : Amazon CloudWatch Logs are enabled for this build project.

            • DISABLED : Amazon CloudWatch Logs are not enabled for this build project.

          • groupName (string) --

            The group name of the logs in Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

          • streamName (string) --

            The prefix of the stream name of the Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

        • s3Logs (dict) --

          Information about S3 logs for a build project.

          • status (string) --

            The current status of the S3 build logs. Valid values are:

            • ENABLED : S3 build logs are enabled for this build project.

            • DISABLED : S3 build logs are not enabled for this build project.

          • location (string) --

            The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket , and your path prefix is build-log , then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log .

          • encryptionDisabled (boolean) --

            Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.

      • timeoutInMinutes (integer) --

        How long, in minutes, for AWS CodeBuild to wait before timing out this build if it does not get marked as completed.

      • queuedTimeoutInMinutes (integer) --

        The number of minutes a build is allowed to be queued before it times out.

      • buildComplete (boolean) --

        Whether the build is complete. True if complete; otherwise, false.

      • initiator (string) --

        The entity that started the build. Valid values include:

        • If AWS CodePipeline started the build, the pipeline's name (for example, codepipeline/my-demo-pipeline ).

        • If an AWS Identity and Access Management (IAM) user started the build, the user's name (for example, MyUserName ).

        • If the Jenkins plugin for AWS CodeBuild started the build, the string CodeBuild-Jenkins-Plugin .

      • vpcConfig (dict) --

        If your AWS CodeBuild project accesses resources in an Amazon VPC, you provide this parameter that identifies the VPC ID and the list of security group IDs and subnet IDs. The security groups and subnets must belong to the same VPC. You must provide at least one security group and one subnet ID.

        • vpcId (string) --

          The ID of the Amazon VPC.

        • subnets (list) --

          A list of one or more subnet IDs in your Amazon VPC.

          • (string) --

        • securityGroupIds (list) --

          A list of one or more security groups IDs in your Amazon VPC.

          • (string) --

      • networkInterface (dict) --

        Describes a network interface.

        • subnetId (string) --

          The ID of the subnet.

        • networkInterfaceId (string) --

          The ID of the network interface.

      • encryptionKey (string) --

        The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts.

        Note

        You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

        You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/alias-name ).

      • exportedEnvironmentVariables (list) --

        A list of exported environment variables for this build.

        • (dict) --

          Information about an exported environment variable.

          • name (string) --

            The name of this exported environment variable.

          • value (string) --

            The value assigned to this exported environment variable.

            Note

            During a build, the value of a variable is available starting with the install phase. It can be updated between the start of the install phase and the end of the post_build phase. After the post_build phase ends, the value of exported variables cannot change.

      • reportArns (list) --

        An array of the ARNs associated with this build's reports.

        • (string) --

      • fileSystemLocations (list) --

        An array of ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier , location , mountOptions , mountPoint , and type of a file system created using Amazon Elastic File System.

        • (dict) --

          Information about a file system created by Amazon Elastic File System (EFS). For more information, see What Is Amazon Elastic File System?

          • type (string) --

            The type of the file system. The one supported type is EFS .

          • location (string) --

            A string that specifies the location of the file system created by Amazon EFS. Its format is efs-dns-name:/directory-path . You can find the DNS name of file system when you view it in the AWS EFS console. The directory path is a path to a directory in the file system that CodeBuild mounts. For example, if the DNS name of a file system is fs-abcd1234.efs.us-west-2.amazonaws.com , and its mount directory is my-efs-mount-directory , then the location is fs-abcd1234.efs.us-west-2.amazonaws.com:/my-efs-mount-directory .

            The directory path in the format efs-dns-name:/directory-path is optional. If you do not specify a directory path, the location is only the DNS name and CodeBuild mounts the entire file system.

          • mountPoint (string) --

            The location in the container where you mount the file system.

          • identifier (string) --

            The name used to access a file system created by Amazon EFS. CodeBuild creates an environment variable by appending the identifier in all capital letters to CODEBUILD_ . For example, if you specify my-efs for identifier , a new environment variable is create named CODEBUILD_MY-EFS .

            The identifier is used to mount your file system.

          • mountOptions (string) --

            The mount options for a file system created by AWS EFS. The default mount options used by CodeBuild are nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 . For more information, see Recommended NFS Mount Options.

      • debugSession (dict) --

        Contains information about the debug session for this build.

        • sessionEnabled (boolean) --

          Specifies if session debugging is enabled for this build.

        • sessionTarget (string) --

          Contains the identifier of the Session Manager session used for the build. To work with the paused build, you open this session to examine, control, and resume the build.

      • buildBatchArn (string) --

        The ARN of the batch build that this build is a member of, if applicable.

BatchGetBuilds (updated) Link ¶
Changes (response)
{'builds': {'buildBatchArn': 'string'}}

Gets information about one or more builds.

See also: AWS API Documentation

Request Syntax

client.batch_get_builds(
    ids=[
        'string',
    ]
)
type ids

list

param ids

[REQUIRED]

The IDs of the builds.

  • (string) --

rtype

dict

returns

Response Syntax

{
    'builds': [
        {
            'id': 'string',
            'arn': 'string',
            'buildNumber': 123,
            'startTime': datetime(2015, 1, 1),
            'endTime': datetime(2015, 1, 1),
            'currentPhase': 'string',
            'buildStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
            'sourceVersion': 'string',
            'resolvedSourceVersion': 'string',
            'projectName': 'string',
            'phases': [
                {
                    'phaseType': 'SUBMITTED'|'QUEUED'|'PROVISIONING'|'DOWNLOAD_SOURCE'|'INSTALL'|'PRE_BUILD'|'BUILD'|'POST_BUILD'|'UPLOAD_ARTIFACTS'|'FINALIZING'|'COMPLETED',
                    'phaseStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
                    'startTime': datetime(2015, 1, 1),
                    'endTime': datetime(2015, 1, 1),
                    'durationInSeconds': 123,
                    'contexts': [
                        {
                            'statusCode': 'string',
                            'message': 'string'
                        },
                    ]
                },
            ],
            'source': {
                'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
                'location': 'string',
                'gitCloneDepth': 123,
                'gitSubmodulesConfig': {
                    'fetchSubmodules': True|False
                },
                'buildspec': 'string',
                'auth': {
                    'type': 'OAUTH',
                    'resource': 'string'
                },
                'reportBuildStatus': True|False,
                'buildStatusConfig': {
                    'context': 'string',
                    'targetUrl': 'string'
                },
                'insecureSsl': True|False,
                'sourceIdentifier': 'string'
            },
            'secondarySources': [
                {
                    'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
                    'location': 'string',
                    'gitCloneDepth': 123,
                    'gitSubmodulesConfig': {
                        'fetchSubmodules': True|False
                    },
                    'buildspec': 'string',
                    'auth': {
                        'type': 'OAUTH',
                        'resource': 'string'
                    },
                    'reportBuildStatus': True|False,
                    'buildStatusConfig': {
                        'context': 'string',
                        'targetUrl': 'string'
                    },
                    'insecureSsl': True|False,
                    'sourceIdentifier': 'string'
                },
            ],
            'secondarySourceVersions': [
                {
                    'sourceIdentifier': 'string',
                    'sourceVersion': 'string'
                },
            ],
            'artifacts': {
                'location': 'string',
                'sha256sum': 'string',
                'md5sum': 'string',
                'overrideArtifactName': True|False,
                'encryptionDisabled': True|False,
                'artifactIdentifier': 'string'
            },
            'secondaryArtifacts': [
                {
                    'location': 'string',
                    'sha256sum': 'string',
                    'md5sum': 'string',
                    'overrideArtifactName': True|False,
                    'encryptionDisabled': True|False,
                    'artifactIdentifier': 'string'
                },
            ],
            'cache': {
                'type': 'NO_CACHE'|'S3'|'LOCAL',
                'location': 'string',
                'modes': [
                    'LOCAL_DOCKER_LAYER_CACHE'|'LOCAL_SOURCE_CACHE'|'LOCAL_CUSTOM_CACHE',
                ]
            },
            'environment': {
                'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER'|'LINUX_GPU_CONTAINER'|'ARM_CONTAINER'|'WINDOWS_SERVER_2019_CONTAINER',
                'image': 'string',
                'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE'|'BUILD_GENERAL1_2XLARGE',
                'environmentVariables': [
                    {
                        'name': 'string',
                        'value': 'string',
                        'type': 'PLAINTEXT'|'PARAMETER_STORE'|'SECRETS_MANAGER'
                    },
                ],
                'privilegedMode': True|False,
                'certificate': 'string',
                'registryCredential': {
                    'credential': 'string',
                    'credentialProvider': 'SECRETS_MANAGER'
                },
                'imagePullCredentialsType': 'CODEBUILD'|'SERVICE_ROLE'
            },
            'serviceRole': 'string',
            'logs': {
                'groupName': 'string',
                'streamName': 'string',
                'deepLink': 'string',
                's3DeepLink': 'string',
                'cloudWatchLogsArn': 'string',
                's3LogsArn': 'string',
                'cloudWatchLogs': {
                    'status': 'ENABLED'|'DISABLED',
                    'groupName': 'string',
                    'streamName': 'string'
                },
                's3Logs': {
                    'status': 'ENABLED'|'DISABLED',
                    'location': 'string',
                    'encryptionDisabled': True|False
                }
            },
            'timeoutInMinutes': 123,
            'queuedTimeoutInMinutes': 123,
            'buildComplete': True|False,
            'initiator': 'string',
            'vpcConfig': {
                'vpcId': 'string',
                'subnets': [
                    'string',
                ],
                'securityGroupIds': [
                    'string',
                ]
            },
            'networkInterface': {
                'subnetId': 'string',
                'networkInterfaceId': 'string'
            },
            'encryptionKey': 'string',
            'exportedEnvironmentVariables': [
                {
                    'name': 'string',
                    'value': 'string'
                },
            ],
            'reportArns': [
                'string',
            ],
            'fileSystemLocations': [
                {
                    'type': 'EFS',
                    'location': 'string',
                    'mountPoint': 'string',
                    'identifier': 'string',
                    'mountOptions': 'string'
                },
            ],
            'debugSession': {
                'sessionEnabled': True|False,
                'sessionTarget': 'string'
            },
            'buildBatchArn': 'string'
        },
    ],
    'buildsNotFound': [
        'string',
    ]
}

Response Structure

  • (dict) --

    • builds (list) --

      Information about the requested builds.

      • (dict) --

        Information about a build.

        • id (string) --

          The unique ID for the build.

        • arn (string) --

          The Amazon Resource Name (ARN) of the build.

        • buildNumber (integer) --

          The number of the build. For each project, the buildNumber of its first build is 1 . The buildNumber of each subsequent build is incremented by 1 . If a build is deleted, the buildNumber of other builds does not change.

        • startTime (datetime) --

          When the build process started, expressed in Unix time format.

        • endTime (datetime) --

          When the build process ended, expressed in Unix time format.

        • currentPhase (string) --

          The current build phase.

        • buildStatus (string) --

          The current status of the build. Valid values include:

          • FAILED : The build failed.

          • FAULT : The build faulted.

          • IN_PROGRESS : The build is still in progress.

          • STOPPED : The build stopped.

          • SUCCEEDED : The build succeeded.

          • TIMED_OUT : The build timed out.

        • sourceVersion (string) --

          Any version identifier for the version of the source code to be built. If sourceVersion is specified at the project level, then this sourceVersion (at the build level) takes precedence.

          For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

        • resolvedSourceVersion (string) --

          An identifier for the version of this build's source code.

          • For AWS CodeCommit, GitHub, GitHub Enterprise, and BitBucket, the commit ID.

          • For AWS CodePipeline, the source revision provided by AWS CodePipeline.

          • For Amazon Simple Storage Service (Amazon S3), this does not apply.

        • projectName (string) --

          The name of the AWS CodeBuild project.

        • phases (list) --

          Information about all previous build phases that are complete and information about any current build phase that is not yet complete.

          • (dict) --

            Information about a stage for a build.

            • phaseType (string) --

              The name of the build phase. Valid values include:

              • BUILD : Core build activities typically occur in this build phase.

              • COMPLETED : The build has been completed.

              • DOWNLOAD_SOURCE : Source code is being downloaded in this build phase.

              • FINALIZING : The build process is completing in this build phase.

              • INSTALL : Installation activities typically occur in this build phase.

              • POST_BUILD : Post-build activities typically occur in this build phase.

              • PRE_BUILD : Pre-build activities typically occur in this build phase.

              • PROVISIONING : The build environment is being set up.

              • QUEUED : The build has been submitted and is queued behind other submitted builds.

              • SUBMITTED : The build has been submitted.

              • UPLOAD_ARTIFACTS : Build output artifacts are being uploaded to the output location.

            • phaseStatus (string) --

              The current status of the build phase. Valid values include:

              FAILED

              The build phase failed.

              FAULT

              The build phase faulted.

              IN_PROGRESS

              The build phase is still in progress.

              QUEUED

              The build has been submitted and is queued behind other submitted builds.

              STOPPED

              The build phase stopped.

              SUCCEEDED

              The build phase succeeded.

              TIMED_OUT

              The build phase timed out.

            • startTime (datetime) --

              When the build phase started, expressed in Unix time format.

            • endTime (datetime) --

              When the build phase ended, expressed in Unix time format.

            • durationInSeconds (integer) --

              How long, in seconds, between the starting and ending times of the build's phase.

            • contexts (list) --

              Additional information about a build phase, especially to help troubleshoot a failed build.

              • (dict) --

                Additional information about a build phase that has an error. You can use this information for troubleshooting.

                • statusCode (string) --

                  The status code for the context of the build phase.

                • message (string) --

                  An explanation of the build phase's context. This might include a command ID and an exit code.

        • source (dict) --

          Information about the source code to be built.

          • type (string) --

            The type of repository that contains the source code to be built. Valid values include:

            • BITBUCKET : The source code is in a Bitbucket repository.

            • CODECOMMIT : The source code is in an AWS CodeCommit repository.

            • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

            • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

            • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

            • NO_SOURCE : The project does not have input source code.

            • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

          • location (string) --

            Information about the location of the source code to be built. Valid values include:

            • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

            • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

            • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

              • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

              • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

            • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

            • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • gitCloneDepth (integer) --

            Information about the Git clone depth for the build project.

          • gitSubmodulesConfig (dict) --

            Information about the Git submodules configuration for the build project.

            • fetchSubmodules (boolean) --

              Set to true to fetch Git submodules for your AWS CodeBuild build project.

          • buildspec (string) --

            The buildspec file declaration to use for the builds in this build project.

            If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

          • auth (dict) --

            Information about the authorization settings for AWS CodeBuild to access the source code to be built.

            This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

            • type (string) --

              Note

              This data type is deprecated and is no longer accurate or used.

              The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

            • resource (string) --

              The resource value that applies to the specified authorization type.

          • reportBuildStatus (boolean) --

            Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

            Note

            The status of a build triggered by a webhook is always reported to your source provider.

          • buildStatusConfig (dict) --

            Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

            • context (string) --

              Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

            • targetUrl (string) --

              Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • insecureSsl (boolean) --

            Enable this flag to ignore SSL warnings while connecting to the project source code.

          • sourceIdentifier (string) --

            An identifier for this project source.

        • secondarySources (list) --

          An array of ProjectSource objects.

          • (dict) --

            Information about the build input source code for the build project.

            • type (string) --

              The type of repository that contains the source code to be built. Valid values include:

              • BITBUCKET : The source code is in a Bitbucket repository.

              • CODECOMMIT : The source code is in an AWS CodeCommit repository.

              • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

              • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

              • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

              • NO_SOURCE : The project does not have input source code.

              • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

            • location (string) --

              Information about the location of the source code to be built. Valid values include:

              • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

              • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

              • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

                • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

                • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

              • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

              • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

            • gitCloneDepth (integer) --

              Information about the Git clone depth for the build project.

            • gitSubmodulesConfig (dict) --

              Information about the Git submodules configuration for the build project.

              • fetchSubmodules (boolean) --

                Set to true to fetch Git submodules for your AWS CodeBuild build project.

            • buildspec (string) --

              The buildspec file declaration to use for the builds in this build project.

              If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

            • auth (dict) --

              Information about the authorization settings for AWS CodeBuild to access the source code to be built.

              This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

              • type (string) --

                Note

                This data type is deprecated and is no longer accurate or used.

                The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

              • resource (string) --

                The resource value that applies to the specified authorization type.

            • reportBuildStatus (boolean) --

              Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

              Note

              The status of a build triggered by a webhook is always reported to your source provider.

            • buildStatusConfig (dict) --

              Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

              • context (string) --

                Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

                Bitbucket

                This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

                GitHub/GitHub Enterprise Server

                This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

              • targetUrl (string) --

                Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

                Bitbucket

                This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

                GitHub/GitHub Enterprise Server

                This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

            • insecureSsl (boolean) --

              Enable this flag to ignore SSL warnings while connecting to the project source code.

            • sourceIdentifier (string) --

              An identifier for this project source.

        • secondarySourceVersions (list) --

          An array of ProjectSourceVersion objects. Each ProjectSourceVersion must be one of:

          • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

          • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

          • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

          • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

          • (dict) --

            A source identifier and its corresponding version.

            • sourceIdentifier (string) --

              An identifier for a source in the build project.

            • sourceVersion (string) --

              The source version for the corresponding source identifier. If specified, must be one of:

              • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

              • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

              • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

              • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

              For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

        • artifacts (dict) --

          Information about the output artifacts for the build.

          • location (string) --

            Information about the location of the build artifacts.

          • sha256sum (string) --

            The SHA-256 hash of the build artifact.

            You can use this hash along with a checksum tool to confirm file integrity and authenticity.

            Note

            This value is available only if the build project's packaging value is set to ZIP .

          • md5sum (string) --

            The MD5 hash of the build artifact.

            You can use this hash along with a checksum tool to confirm file integrity and authenticity.

            Note

            This value is available only if the build project's packaging value is set to ZIP .

          • overrideArtifactName (boolean) --

            If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

          • encryptionDisabled (boolean) --

            Information that tells you if encryption for build artifacts is disabled.

          • artifactIdentifier (string) --

            An identifier for this artifact definition.

        • secondaryArtifacts (list) --

          An array of ProjectArtifacts objects.

          • (dict) --

            Information about build output artifacts.

            • location (string) --

              Information about the location of the build artifacts.

            • sha256sum (string) --

              The SHA-256 hash of the build artifact.

              You can use this hash along with a checksum tool to confirm file integrity and authenticity.

              Note

              This value is available only if the build project's packaging value is set to ZIP .

            • md5sum (string) --

              The MD5 hash of the build artifact.

              You can use this hash along with a checksum tool to confirm file integrity and authenticity.

              Note

              This value is available only if the build project's packaging value is set to ZIP .

            • overrideArtifactName (boolean) --

              If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

            • encryptionDisabled (boolean) --

              Information that tells you if encryption for build artifacts is disabled.

            • artifactIdentifier (string) --

              An identifier for this artifact definition.

        • cache (dict) --

          Information about the cache for the build.

          • type (string) --

            The type of cache used by the build project. Valid values include:

            • NO_CACHE : The build project does not use any cache.

            • S3 : The build project reads and writes from and to S3.

            • LOCAL : The build project stores a cache locally on a build host that is only available to that build host.

          • location (string) --

            Information about the cache location:

            • NO_CACHE or LOCAL : This value is ignored.

            • S3 : This is the S3 bucket name/prefix.

          • modes (list) --

            If you use a LOCAL cache, the local cache mode. You can use one or more local cache modes at the same time.

            • LOCAL_SOURCE_CACHE mode caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored.

            • LOCAL_DOCKER_LAYER_CACHE mode caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network.

            Note

            • You can use a Docker layer cache in the Linux environment only.

            • The privileged flag must be set so that your project has the required Docker permissions.

            • You should consider the security implications before you use a Docker layer cache.

            • LOCAL_CUSTOM_CACHE mode caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache:

              • Only directories can be specified for caching. You cannot specify individual files.

              • Symlinks are used to reference cached directories.

              • Cached directories are linked to your build before it downloads its project sources. Cached items are overridden if a source item has the same name. Directories are specified using cache paths in the buildspec file.

            • (string) --

        • environment (dict) --

          Information about the build environment for this build.

          • type (string) --

            The type of build environment to use for related builds.

            • The environment type ARM_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Sydney), and EU (Frankfurt).

            • The environment type LINUX_CONTAINER with compute type build.general1.2xlarge is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and China (Ningxia).

            • The environment type LINUX_GPU_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney) , China (Beijing), and China (Ningxia).

          • image (string) --

            The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats:

            • For an image tag: registry/repository:tag . For example, to specify an image with the tag "latest," use registry/repository:latest .

            • For an image digest: registry/repository@digest . For example, to specify an image with the digest "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf," use registry/repository@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf .

          • computeType (string) --

            Information about the compute resources the build project uses. Available values include:

            • BUILD_GENERAL1_SMALL : Use up to 3 GB memory and 2 vCPUs for builds.

            • BUILD_GENERAL1_MEDIUM : Use up to 7 GB memory and 4 vCPUs for builds.

            • BUILD_GENERAL1_LARGE : Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type.

            • BUILD_GENERAL1_2XLARGE : Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed.

            If you use BUILD_GENERAL1_LARGE :

            • For environment type LINUX_CONTAINER , you can use up to 15 GB memory and 8 vCPUs for builds.

            • For environment type LINUX_GPU_CONTAINER , you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds.

            • For environment type ARM_CONTAINER , you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds.

            For more information, see Build Environment Compute Types in the AWS CodeBuild User Guide.

          • environmentVariables (list) --

            A set of environment variables to make available to builds for this build project.

            • (dict) --

              Information about an environment variable for a build project or a build.

              • name (string) --

                The name or key of the environment variable.

              • value (string) --

                The value of the environment variable.

                Warning

                We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. PLAINTEXT environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI). For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE or SECRETS_MANAGER .

              • type (string) --

                The type of environment variable. Valid values include:

          • privilegedMode (boolean) --

            Enables running the Docker daemon inside a Docker container. Set to true only if the build project is used to build Docker images. Otherwise, a build that attempts to interact with the Docker daemon fails. The default setting is false .

            You can initialize the Docker daemon during the install phase of your build by adding one of the following sets of commands to the install phase of your buildspec file:

            If the operating system's base image is Ubuntu Linux:

            - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

            - timeout 15 sh -c "until docker info; do echo .; sleep 1; done"

            If the operating system's base image is Alpine Linux and the previous command does not work, add the -t argument to timeout :

            - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

            - timeout -t 15 sh -c "until docker info; do echo .; sleep 1; done"

          • certificate (string) --

            The certificate to use with this build project.

          • registryCredential (dict) --

            The credentials for access to a private registry.

            • credential (string) --

              The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.

              Note

              The credential can use the name of the credentials only if they exist in your current AWS Region.

            • credentialProvider (string) --

              The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager.

          • imagePullCredentialsType (string) --

            The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values:

            • CODEBUILD specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal.

            • SERVICE_ROLE specifies that AWS CodeBuild uses your build project's service role.

            When you use a cross-account or private registry image, you must use SERVICE_ROLE credentials. When you use an AWS CodeBuild curated image, you must use CODEBUILD credentials.

        • serviceRole (string) --

          The name of a service role used for this build.

        • logs (dict) --

          Information about the build's logs in Amazon CloudWatch Logs.

          • groupName (string) --

            The name of the Amazon CloudWatch Logs group for the build logs.

          • streamName (string) --

            The name of the Amazon CloudWatch Logs stream for the build logs.

          • deepLink (string) --

            The URL to an individual build log in Amazon CloudWatch Logs.

          • s3DeepLink (string) --

            The URL to a build log in an S3 bucket.

          • cloudWatchLogsArn (string) --

            The ARN of Amazon CloudWatch Logs for a build project. Its format is arn:${Partition}:logs:${Region}:${Account}:log-group:${LogGroupName}:log-stream:${LogStreamName} . For more information, see Resources Defined by Amazon CloudWatch Logs.

          • s3LogsArn (string) --

            The ARN of S3 logs for a build project. Its format is arn:${Partition}:s3:::${BucketName}/${ObjectName} . For more information, see Resources Defined by Amazon S3.

          • cloudWatchLogs (dict) --

            Information about Amazon CloudWatch Logs for a build project.

            • status (string) --

              The current status of the logs in Amazon CloudWatch Logs for a build project. Valid values are:

              • ENABLED : Amazon CloudWatch Logs are enabled for this build project.

              • DISABLED : Amazon CloudWatch Logs are not enabled for this build project.

            • groupName (string) --

              The group name of the logs in Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

            • streamName (string) --

              The prefix of the stream name of the Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

          • s3Logs (dict) --

            Information about S3 logs for a build project.

            • status (string) --

              The current status of the S3 build logs. Valid values are:

              • ENABLED : S3 build logs are enabled for this build project.

              • DISABLED : S3 build logs are not enabled for this build project.

            • location (string) --

              The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket , and your path prefix is build-log , then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log .

            • encryptionDisabled (boolean) --

              Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.

        • timeoutInMinutes (integer) --

          How long, in minutes, for AWS CodeBuild to wait before timing out this build if it does not get marked as completed.

        • queuedTimeoutInMinutes (integer) --

          The number of minutes a build is allowed to be queued before it times out.

        • buildComplete (boolean) --

          Whether the build is complete. True if complete; otherwise, false.

        • initiator (string) --

          The entity that started the build. Valid values include:

          • If AWS CodePipeline started the build, the pipeline's name (for example, codepipeline/my-demo-pipeline ).

          • If an AWS Identity and Access Management (IAM) user started the build, the user's name (for example, MyUserName ).

          • If the Jenkins plugin for AWS CodeBuild started the build, the string CodeBuild-Jenkins-Plugin .

        • vpcConfig (dict) --

          If your AWS CodeBuild project accesses resources in an Amazon VPC, you provide this parameter that identifies the VPC ID and the list of security group IDs and subnet IDs. The security groups and subnets must belong to the same VPC. You must provide at least one security group and one subnet ID.

          • vpcId (string) --

            The ID of the Amazon VPC.

          • subnets (list) --

            A list of one or more subnet IDs in your Amazon VPC.

            • (string) --

          • securityGroupIds (list) --

            A list of one or more security groups IDs in your Amazon VPC.

            • (string) --

        • networkInterface (dict) --

          Describes a network interface.

          • subnetId (string) --

            The ID of the subnet.

          • networkInterfaceId (string) --

            The ID of the network interface.

        • encryptionKey (string) --

          The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts.

          Note

          You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

          You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/alias-name ).

        • exportedEnvironmentVariables (list) --

          A list of exported environment variables for this build.

          • (dict) --

            Information about an exported environment variable.

            • name (string) --

              The name of this exported environment variable.

            • value (string) --

              The value assigned to this exported environment variable.

              Note

              During a build, the value of a variable is available starting with the install phase. It can be updated between the start of the install phase and the end of the post_build phase. After the post_build phase ends, the value of exported variables cannot change.

        • reportArns (list) --

          An array of the ARNs associated with this build's reports.

          • (string) --

        • fileSystemLocations (list) --

          An array of ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier , location , mountOptions , mountPoint , and type of a file system created using Amazon Elastic File System.

          • (dict) --

            Information about a file system created by Amazon Elastic File System (EFS). For more information, see What Is Amazon Elastic File System?

            • type (string) --

              The type of the file system. The one supported type is EFS .

            • location (string) --

              A string that specifies the location of the file system created by Amazon EFS. Its format is efs-dns-name:/directory-path . You can find the DNS name of file system when you view it in the AWS EFS console. The directory path is a path to a directory in the file system that CodeBuild mounts. For example, if the DNS name of a file system is fs-abcd1234.efs.us-west-2.amazonaws.com , and its mount directory is my-efs-mount-directory , then the location is fs-abcd1234.efs.us-west-2.amazonaws.com:/my-efs-mount-directory .

              The directory path in the format efs-dns-name:/directory-path is optional. If you do not specify a directory path, the location is only the DNS name and CodeBuild mounts the entire file system.

            • mountPoint (string) --

              The location in the container where you mount the file system.

            • identifier (string) --

              The name used to access a file system created by Amazon EFS. CodeBuild creates an environment variable by appending the identifier in all capital letters to CODEBUILD_ . For example, if you specify my-efs for identifier , a new environment variable is create named CODEBUILD_MY-EFS .

              The identifier is used to mount your file system.

            • mountOptions (string) --

              The mount options for a file system created by AWS EFS. The default mount options used by CodeBuild are nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 . For more information, see Recommended NFS Mount Options.

        • debugSession (dict) --

          Contains information about the debug session for this build.

          • sessionEnabled (boolean) --

            Specifies if session debugging is enabled for this build.

          • sessionTarget (string) --

            Contains the identifier of the Session Manager session used for the build. To work with the paused build, you open this session to examine, control, and resume the build.

        • buildBatchArn (string) --

          The ARN of the batch build that this build is a member of, if applicable.

    • buildsNotFound (list) --

      The IDs of builds for which information could not be found.

      • (string) --

BatchGetProjects (updated) Link ¶
Changes (response)
{'projects': {'buildBatchConfig': {'combineArtifacts': 'boolean',
                                   'restrictions': {'computeTypesAllowed': ['string'],
                                                    'maximumBuildsAllowed': 'integer'},
                                   'serviceRole': 'string',
                                   'timeoutInMins': 'integer'},
              'webhook': {'buildType': 'BUILD | BUILD_BATCH'}}}

Gets information about one or more build projects.

See also: AWS API Documentation

Request Syntax

client.batch_get_projects(
    names=[
        'string',
    ]
)
type names

list

param names

[REQUIRED]

The names or ARNs of the build projects. To get information about a project shared with your AWS account, its ARN must be specified. You cannot specify a shared project using its name.

  • (string) --

rtype

dict

returns

Response Syntax

{
    'projects': [
        {
            'name': 'string',
            'arn': 'string',
            'description': 'string',
            'source': {
                'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
                'location': 'string',
                'gitCloneDepth': 123,
                'gitSubmodulesConfig': {
                    'fetchSubmodules': True|False
                },
                'buildspec': 'string',
                'auth': {
                    'type': 'OAUTH',
                    'resource': 'string'
                },
                'reportBuildStatus': True|False,
                'buildStatusConfig': {
                    'context': 'string',
                    'targetUrl': 'string'
                },
                'insecureSsl': True|False,
                'sourceIdentifier': 'string'
            },
            'secondarySources': [
                {
                    'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
                    'location': 'string',
                    'gitCloneDepth': 123,
                    'gitSubmodulesConfig': {
                        'fetchSubmodules': True|False
                    },
                    'buildspec': 'string',
                    'auth': {
                        'type': 'OAUTH',
                        'resource': 'string'
                    },
                    'reportBuildStatus': True|False,
                    'buildStatusConfig': {
                        'context': 'string',
                        'targetUrl': 'string'
                    },
                    'insecureSsl': True|False,
                    'sourceIdentifier': 'string'
                },
            ],
            'sourceVersion': 'string',
            'secondarySourceVersions': [
                {
                    'sourceIdentifier': 'string',
                    'sourceVersion': 'string'
                },
            ],
            'artifacts': {
                'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                'location': 'string',
                'path': 'string',
                'namespaceType': 'NONE'|'BUILD_ID',
                'name': 'string',
                'packaging': 'NONE'|'ZIP',
                'overrideArtifactName': True|False,
                'encryptionDisabled': True|False,
                'artifactIdentifier': 'string'
            },
            'secondaryArtifacts': [
                {
                    'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                    'location': 'string',
                    'path': 'string',
                    'namespaceType': 'NONE'|'BUILD_ID',
                    'name': 'string',
                    'packaging': 'NONE'|'ZIP',
                    'overrideArtifactName': True|False,
                    'encryptionDisabled': True|False,
                    'artifactIdentifier': 'string'
                },
            ],
            'cache': {
                'type': 'NO_CACHE'|'S3'|'LOCAL',
                'location': 'string',
                'modes': [
                    'LOCAL_DOCKER_LAYER_CACHE'|'LOCAL_SOURCE_CACHE'|'LOCAL_CUSTOM_CACHE',
                ]
            },
            'environment': {
                'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER'|'LINUX_GPU_CONTAINER'|'ARM_CONTAINER'|'WINDOWS_SERVER_2019_CONTAINER',
                'image': 'string',
                'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE'|'BUILD_GENERAL1_2XLARGE',
                'environmentVariables': [
                    {
                        'name': 'string',
                        'value': 'string',
                        'type': 'PLAINTEXT'|'PARAMETER_STORE'|'SECRETS_MANAGER'
                    },
                ],
                'privilegedMode': True|False,
                'certificate': 'string',
                'registryCredential': {
                    'credential': 'string',
                    'credentialProvider': 'SECRETS_MANAGER'
                },
                'imagePullCredentialsType': 'CODEBUILD'|'SERVICE_ROLE'
            },
            'serviceRole': 'string',
            'timeoutInMinutes': 123,
            'queuedTimeoutInMinutes': 123,
            'encryptionKey': 'string',
            'tags': [
                {
                    'key': 'string',
                    'value': 'string'
                },
            ],
            'created': datetime(2015, 1, 1),
            'lastModified': datetime(2015, 1, 1),
            'webhook': {
                'url': 'string',
                'payloadUrl': 'string',
                'secret': 'string',
                'branchFilter': 'string',
                'filterGroups': [
                    [
                        {
                            'type': 'EVENT'|'BASE_REF'|'HEAD_REF'|'ACTOR_ACCOUNT_ID'|'FILE_PATH'|'COMMIT_MESSAGE',
                            'pattern': 'string',
                            'excludeMatchedPattern': True|False
                        },
                    ],
                ],
                'buildType': 'BUILD'|'BUILD_BATCH',
                'lastModifiedSecret': datetime(2015, 1, 1)
            },
            'vpcConfig': {
                'vpcId': 'string',
                'subnets': [
                    'string',
                ],
                'securityGroupIds': [
                    'string',
                ]
            },
            'badge': {
                'badgeEnabled': True|False,
                'badgeRequestUrl': 'string'
            },
            'logsConfig': {
                'cloudWatchLogs': {
                    'status': 'ENABLED'|'DISABLED',
                    'groupName': 'string',
                    'streamName': 'string'
                },
                's3Logs': {
                    'status': 'ENABLED'|'DISABLED',
                    'location': 'string',
                    'encryptionDisabled': True|False
                }
            },
            'fileSystemLocations': [
                {
                    'type': 'EFS',
                    'location': 'string',
                    'mountPoint': 'string',
                    'identifier': 'string',
                    'mountOptions': 'string'
                },
            ],
            'buildBatchConfig': {
                'serviceRole': 'string',
                'combineArtifacts': True|False,
                'restrictions': {
                    'maximumBuildsAllowed': 123,
                    'computeTypesAllowed': [
                        'string',
                    ]
                },
                'timeoutInMins': 123
            }
        },
    ],
    'projectsNotFound': [
        'string',
    ]
}

Response Structure

  • (dict) --

    • projects (list) --

      Information about the requested build projects.

      • (dict) --

        Information about a build project.

        • name (string) --

          The name of the build project.

        • arn (string) --

          The Amazon Resource Name (ARN) of the build project.

        • description (string) --

          A description that makes the build project easy to identify.

        • source (dict) --

          Information about the build input source code for this build project.

          • type (string) --

            The type of repository that contains the source code to be built. Valid values include:

            • BITBUCKET : The source code is in a Bitbucket repository.

            • CODECOMMIT : The source code is in an AWS CodeCommit repository.

            • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

            • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

            • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

            • NO_SOURCE : The project does not have input source code.

            • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

          • location (string) --

            Information about the location of the source code to be built. Valid values include:

            • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

            • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

            • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

              • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

              • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

            • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

            • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • gitCloneDepth (integer) --

            Information about the Git clone depth for the build project.

          • gitSubmodulesConfig (dict) --

            Information about the Git submodules configuration for the build project.

            • fetchSubmodules (boolean) --

              Set to true to fetch Git submodules for your AWS CodeBuild build project.

          • buildspec (string) --

            The buildspec file declaration to use for the builds in this build project.

            If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

          • auth (dict) --

            Information about the authorization settings for AWS CodeBuild to access the source code to be built.

            This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

            • type (string) --

              Note

              This data type is deprecated and is no longer accurate or used.

              The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

            • resource (string) --

              The resource value that applies to the specified authorization type.

          • reportBuildStatus (boolean) --

            Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

            Note

            The status of a build triggered by a webhook is always reported to your source provider.

          • buildStatusConfig (dict) --

            Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

            • context (string) --

              Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

            • targetUrl (string) --

              Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • insecureSsl (boolean) --

            Enable this flag to ignore SSL warnings while connecting to the project source code.

          • sourceIdentifier (string) --

            An identifier for this project source.

        • secondarySources (list) --

          An array of ProjectSource objects.

          • (dict) --

            Information about the build input source code for the build project.

            • type (string) --

              The type of repository that contains the source code to be built. Valid values include:

              • BITBUCKET : The source code is in a Bitbucket repository.

              • CODECOMMIT : The source code is in an AWS CodeCommit repository.

              • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

              • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

              • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

              • NO_SOURCE : The project does not have input source code.

              • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

            • location (string) --

              Information about the location of the source code to be built. Valid values include:

              • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

              • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

              • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

                • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

                • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

              • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

              • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

            • gitCloneDepth (integer) --

              Information about the Git clone depth for the build project.

            • gitSubmodulesConfig (dict) --

              Information about the Git submodules configuration for the build project.

              • fetchSubmodules (boolean) --

                Set to true to fetch Git submodules for your AWS CodeBuild build project.

            • buildspec (string) --

              The buildspec file declaration to use for the builds in this build project.

              If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

            • auth (dict) --

              Information about the authorization settings for AWS CodeBuild to access the source code to be built.

              This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

              • type (string) --

                Note

                This data type is deprecated and is no longer accurate or used.

                The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

              • resource (string) --

                The resource value that applies to the specified authorization type.

            • reportBuildStatus (boolean) --

              Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

              Note

              The status of a build triggered by a webhook is always reported to your source provider.

            • buildStatusConfig (dict) --

              Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

              • context (string) --

                Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

                Bitbucket

                This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

                GitHub/GitHub Enterprise Server

                This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

              • targetUrl (string) --

                Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

                Bitbucket

                This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

                GitHub/GitHub Enterprise Server

                This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

            • insecureSsl (boolean) --

              Enable this flag to ignore SSL warnings while connecting to the project source code.

            • sourceIdentifier (string) --

              An identifier for this project source.

        • sourceVersion (string) --

          A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of:

          • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

          • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

          • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

          • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

          If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level).

          For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

        • secondarySourceVersions (list) --

          An array of ProjectSourceVersion objects. If secondarySourceVersions is specified at the build level, then they take over these secondarySourceVersions (at the project level).

          • (dict) --

            A source identifier and its corresponding version.

            • sourceIdentifier (string) --

              An identifier for a source in the build project.

            • sourceVersion (string) --

              The source version for the corresponding source identifier. If specified, must be one of:

              • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

              • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

              • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

              • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

              For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

        • artifacts (dict) --

          Information about the build output artifacts for the build project.

          • type (string) --

            The type of build output artifact. Valid values include:

            • CODEPIPELINE : The build project has build output generated through AWS CodePipeline.

            Note

            The CODEPIPELINE type is not supported for secondaryArtifacts .

            • NO_ARTIFACTS : The build project does not produce any build output.

            • S3 : The build project stores build output in Amazon Simple Storage Service (Amazon S3).

          • location (string) --

            Information about the build output artifact location:

            • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.

            • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

            • If type is set to S3 , this is the name of the output bucket.

          • path (string) --

            Along with namespaceType and name , the pattern that AWS CodeBuild uses to name and store the output artifact:

            • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

            • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

            • If type is set to S3 , this is the path to the output artifact. If path is not specified, path is not used.

            For example, if path is set to MyArtifacts , namespaceType is set to NONE , and name is set to MyArtifact.zip , the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip .

          • namespaceType (string) --

            Along with path and name , the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact:

            • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

            • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

            • If type is set to S3 , valid values include:

              • BUILD_ID : Include the build ID in the location of the build output artifact.

              • NONE : Do not include the build ID. This is the default if namespaceType is not specified.

            For example, if path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

          • name (string) --

            Along with path and namespaceType , the pattern that AWS CodeBuild uses to name and store the output artifact:

            • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

            • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

            • If type is set to S3 , this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.

            For example:

            • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , then the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

            • If path is empty, namespaceType is set to NONE , and name is set to " / ", the output artifact is stored in the root of the output bucket.

            • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to " / ", the output artifact is stored in MyArtifacts/build-ID .

          • packaging (string) --

            The type of build output artifact to create:

            • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.

            • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

            • If type is set to S3 , valid values include:

              • NONE : AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.

              • ZIP : AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.

          • overrideArtifactName (boolean) --

            If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

          • encryptionDisabled (boolean) --

            Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon Simple Storage Service (Amazon S3). If this is set with another artifacts type, an invalidInputException is thrown.

          • artifactIdentifier (string) --

            An identifier for this artifact definition.

        • secondaryArtifacts (list) --

          An array of ProjectArtifacts objects.

          • (dict) --

            Information about the build output artifacts for the build project.

            • type (string) --

              The type of build output artifact. Valid values include:

              • CODEPIPELINE : The build project has build output generated through AWS CodePipeline.

              Note

              The CODEPIPELINE type is not supported for secondaryArtifacts .

              • NO_ARTIFACTS : The build project does not produce any build output.

              • S3 : The build project stores build output in Amazon Simple Storage Service (Amazon S3).

            • location (string) --

              Information about the build output artifact location:

              • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.

              • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

              • If type is set to S3 , this is the name of the output bucket.

            • path (string) --

              Along with namespaceType and name , the pattern that AWS CodeBuild uses to name and store the output artifact:

              • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

              • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

              • If type is set to S3 , this is the path to the output artifact. If path is not specified, path is not used.

              For example, if path is set to MyArtifacts , namespaceType is set to NONE , and name is set to MyArtifact.zip , the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip .

            • namespaceType (string) --

              Along with path and name , the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact:

              • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

              • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

              • If type is set to S3 , valid values include:

                • BUILD_ID : Include the build ID in the location of the build output artifact.

                • NONE : Do not include the build ID. This is the default if namespaceType is not specified.

              For example, if path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

            • name (string) --

              Along with path and namespaceType , the pattern that AWS CodeBuild uses to name and store the output artifact:

              • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

              • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

              • If type is set to S3 , this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.

              For example:

              • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , then the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

              • If path is empty, namespaceType is set to NONE , and name is set to " / ", the output artifact is stored in the root of the output bucket.

              • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to " / ", the output artifact is stored in MyArtifacts/build-ID .

            • packaging (string) --

              The type of build output artifact to create:

              • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.

              • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

              • If type is set to S3 , valid values include:

                • NONE : AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.

                • ZIP : AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.

            • overrideArtifactName (boolean) --

              If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

            • encryptionDisabled (boolean) --

              Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon Simple Storage Service (Amazon S3). If this is set with another artifacts type, an invalidInputException is thrown.

            • artifactIdentifier (string) --

              An identifier for this artifact definition.

        • cache (dict) --

          Information about the cache for the build project.

          • type (string) --

            The type of cache used by the build project. Valid values include:

            • NO_CACHE : The build project does not use any cache.

            • S3 : The build project reads and writes from and to S3.

            • LOCAL : The build project stores a cache locally on a build host that is only available to that build host.

          • location (string) --

            Information about the cache location:

            • NO_CACHE or LOCAL : This value is ignored.

            • S3 : This is the S3 bucket name/prefix.

          • modes (list) --

            If you use a LOCAL cache, the local cache mode. You can use one or more local cache modes at the same time.

            • LOCAL_SOURCE_CACHE mode caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored.

            • LOCAL_DOCKER_LAYER_CACHE mode caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network.

            Note

            • You can use a Docker layer cache in the Linux environment only.

            • The privileged flag must be set so that your project has the required Docker permissions.

            • You should consider the security implications before you use a Docker layer cache.

            • LOCAL_CUSTOM_CACHE mode caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache:

              • Only directories can be specified for caching. You cannot specify individual files.

              • Symlinks are used to reference cached directories.

              • Cached directories are linked to your build before it downloads its project sources. Cached items are overridden if a source item has the same name. Directories are specified using cache paths in the buildspec file.

            • (string) --

        • environment (dict) --

          Information about the build environment for this build project.

          • type (string) --

            The type of build environment to use for related builds.

            • The environment type ARM_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Sydney), and EU (Frankfurt).

            • The environment type LINUX_CONTAINER with compute type build.general1.2xlarge is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and China (Ningxia).

            • The environment type LINUX_GPU_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney) , China (Beijing), and China (Ningxia).

          • image (string) --

            The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats:

            • For an image tag: registry/repository:tag . For example, to specify an image with the tag "latest," use registry/repository:latest .

            • For an image digest: registry/repository@digest . For example, to specify an image with the digest "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf," use registry/repository@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf .

          • computeType (string) --

            Information about the compute resources the build project uses. Available values include:

            • BUILD_GENERAL1_SMALL : Use up to 3 GB memory and 2 vCPUs for builds.

            • BUILD_GENERAL1_MEDIUM : Use up to 7 GB memory and 4 vCPUs for builds.

            • BUILD_GENERAL1_LARGE : Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type.

            • BUILD_GENERAL1_2XLARGE : Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed.

            If you use BUILD_GENERAL1_LARGE :

            • For environment type LINUX_CONTAINER , you can use up to 15 GB memory and 8 vCPUs for builds.

            • For environment type LINUX_GPU_CONTAINER , you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds.

            • For environment type ARM_CONTAINER , you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds.

            For more information, see Build Environment Compute Types in the AWS CodeBuild User Guide.

          • environmentVariables (list) --

            A set of environment variables to make available to builds for this build project.

            • (dict) --

              Information about an environment variable for a build project or a build.

              • name (string) --

                The name or key of the environment variable.

              • value (string) --

                The value of the environment variable.

                Warning

                We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. PLAINTEXT environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI). For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE or SECRETS_MANAGER .

              • type (string) --

                The type of environment variable. Valid values include:

          • privilegedMode (boolean) --

            Enables running the Docker daemon inside a Docker container. Set to true only if the build project is used to build Docker images. Otherwise, a build that attempts to interact with the Docker daemon fails. The default setting is false .

            You can initialize the Docker daemon during the install phase of your build by adding one of the following sets of commands to the install phase of your buildspec file:

            If the operating system's base image is Ubuntu Linux:

            - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

            - timeout 15 sh -c "until docker info; do echo .; sleep 1; done"

            If the operating system's base image is Alpine Linux and the previous command does not work, add the -t argument to timeout :

            - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

            - timeout -t 15 sh -c "until docker info; do echo .; sleep 1; done"

          • certificate (string) --

            The certificate to use with this build project.

          • registryCredential (dict) --

            The credentials for access to a private registry.

            • credential (string) --

              The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.

              Note

              The credential can use the name of the credentials only if they exist in your current AWS Region.

            • credentialProvider (string) --

              The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager.

          • imagePullCredentialsType (string) --

            The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values:

            • CODEBUILD specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal.

            • SERVICE_ROLE specifies that AWS CodeBuild uses your build project's service role.

            When you use a cross-account or private registry image, you must use SERVICE_ROLE credentials. When you use an AWS CodeBuild curated image, you must use CODEBUILD credentials.

        • serviceRole (string) --

          The ARN of the AWS Identity and Access Management (IAM) role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.

        • timeoutInMinutes (integer) --

          How long, in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait before timing out any related build that did not get marked as completed. The default is 60 minutes.

        • queuedTimeoutInMinutes (integer) --

          The number of minutes a build is allowed to be queued before it times out.

        • encryptionKey (string) --

          The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts.

          Note

          You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

          You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/alias-name ).

        • tags (list) --

          A list of tag key and value pairs associated with this build project.

          These tags are available for use by AWS services that support AWS CodeBuild build project tags.

          • (dict) --

            A tag, consisting of a key and a value.

            This tag is available for use by AWS services that support tags in AWS CodeBuild.

            • key (string) --

              The tag's key.

            • value (string) --

              The tag's value.

        • created (datetime) --

          When the build project was created, expressed in Unix time format.

        • lastModified (datetime) --

          When the build project's settings were last modified, expressed in Unix time format.

        • webhook (dict) --

          Information about a webhook that connects repository events to a build project in AWS CodeBuild.

          • url (string) --

            The URL to the webhook.

          • payloadUrl (string) --

            The AWS CodeBuild endpoint where webhook events are sent.

          • secret (string) --

            The secret token of the associated repository.

            Note

            A Bitbucket webhook does not support secret .

          • branchFilter (string) --

            A regular expression used to determine which repository branches are built when a webhook is triggered. If the name of a branch matches the regular expression, then it is built. If branchFilter is empty, then all branches are built.

            Note

            It is recommended that you use filterGroups instead of branchFilter .

          • filterGroups (list) --

            An array of arrays of WebhookFilter objects used to determine which webhooks are triggered. At least one WebhookFilter in the array must specify EVENT as its type .

            For a build to be triggered, at least one filter group in the filterGroups array must pass. For a filter group to pass, each of its filters must pass.

            • (list) --

              • (dict) --

                A filter used to determine which webhooks trigger a build.

                • type (string) --

                  The type of webhook filter. There are six webhook filter types: EVENT , ACTOR_ACCOUNT_ID , HEAD_REF , BASE_REF , FILE_PATH , and COMMIT_MESSAGE .

                  EVENT

                  A webhook event triggers a build when the provided pattern matches one of five event types: PUSH , PULL_REQUEST_CREATED , PULL_REQUEST_UPDATED , PULL_REQUEST_REOPENED , and PULL_REQUEST_MERGED . The EVENT patterns are specified as a comma-separated string. For example, PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED filters all push, pull request created, and pull request updated events.

                  Note

                  The PULL_REQUEST_REOPENED works with GitHub and GitHub Enterprise only.

                  ACTOR_ACCOUNT_ID

                  A webhook event triggers a build when a GitHub, GitHub Enterprise, or Bitbucket account ID matches the regular expression pattern .

                  HEAD_REF

                  A webhook event triggers a build when the head reference matches the regular expression pattern . For example, refs/heads/branch-name and refs/tags/tag-name .

                  Works with GitHub and GitHub Enterprise push, GitHub and GitHub Enterprise pull request, Bitbucket push, and Bitbucket pull request events.

                  BASE_REF

                  A webhook event triggers a build when the base reference matches the regular expression pattern . For example, refs/heads/branch-name .

                  Note

                  Works with pull request events only.

                  FILE_PATH

                  A webhook triggers a build when the path of a changed file matches the regular expression pattern .

                  Note

                  Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.

                  COMMIT_MESSAGE

                  A webhook triggers a build when the head commit message matches the regular expression pattern .

                  Note

                  Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.

                • pattern (string) --

                  For a WebHookFilter that uses EVENT type, a comma-separated string that specifies one or more events. For example, the webhook filter PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED allows all push, pull request created, and pull request updated events to trigger a build.

                  For a WebHookFilter that uses any of the other filter types, a regular expression pattern. For example, a WebHookFilter that uses HEAD_REF for its type and the pattern ^refs/heads/ triggers a build when the head reference is a branch with a reference name refs/heads/branch-name .

                • excludeMatchedPattern (boolean) --

                  Used to indicate that the pattern determines which webhook events do not trigger a build. If true, then a webhook event that does not match the pattern triggers a build. If false, then a webhook event that matches the pattern triggers a build.

          • buildType (string) --

            Specifies the type of build this webhook will trigger.

          • lastModifiedSecret (datetime) --

            A timestamp that indicates the last time a repository's secret token was modified.

        • vpcConfig (dict) --

          Information about the VPC configuration that AWS CodeBuild accesses.

          • vpcId (string) --

            The ID of the Amazon VPC.

          • subnets (list) --

            A list of one or more subnet IDs in your Amazon VPC.

            • (string) --

          • securityGroupIds (list) --

            A list of one or more security groups IDs in your Amazon VPC.

            • (string) --

        • badge (dict) --

          Information about the build badge for the build project.

          • badgeEnabled (boolean) --

            Set this to true to generate a publicly accessible URL for your project's build badge.

          • badgeRequestUrl (string) --

            The publicly-accessible URL through which you can access the build badge for your project.

            The publicly accessible URL through which you can access the build badge for your project.

        • logsConfig (dict) --

          Information about logs for the build project. A project can create logs in Amazon CloudWatch Logs, an S3 bucket, or both.

          • cloudWatchLogs (dict) --

            Information about Amazon CloudWatch Logs for a build project. Amazon CloudWatch Logs are enabled by default.

            • status (string) --

              The current status of the logs in Amazon CloudWatch Logs for a build project. Valid values are:

              • ENABLED : Amazon CloudWatch Logs are enabled for this build project.

              • DISABLED : Amazon CloudWatch Logs are not enabled for this build project.

            • groupName (string) --

              The group name of the logs in Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

            • streamName (string) --

              The prefix of the stream name of the Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

          • s3Logs (dict) --

            Information about logs built to an S3 bucket for a build project. S3 logs are not enabled by default.

            • status (string) --

              The current status of the S3 build logs. Valid values are:

              • ENABLED : S3 build logs are enabled for this build project.

              • DISABLED : S3 build logs are not enabled for this build project.

            • location (string) --

              The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket , and your path prefix is build-log , then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log .

            • encryptionDisabled (boolean) --

              Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.

        • fileSystemLocations (list) --

          An array of ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier , location , mountOptions , mountPoint , and type of a file system created using Amazon Elastic File System.

          • (dict) --

            Information about a file system created by Amazon Elastic File System (EFS). For more information, see What Is Amazon Elastic File System?

            • type (string) --

              The type of the file system. The one supported type is EFS .

            • location (string) --

              A string that specifies the location of the file system created by Amazon EFS. Its format is efs-dns-name:/directory-path . You can find the DNS name of file system when you view it in the AWS EFS console. The directory path is a path to a directory in the file system that CodeBuild mounts. For example, if the DNS name of a file system is fs-abcd1234.efs.us-west-2.amazonaws.com , and its mount directory is my-efs-mount-directory , then the location is fs-abcd1234.efs.us-west-2.amazonaws.com:/my-efs-mount-directory .

              The directory path in the format efs-dns-name:/directory-path is optional. If you do not specify a directory path, the location is only the DNS name and CodeBuild mounts the entire file system.

            • mountPoint (string) --

              The location in the container where you mount the file system.

            • identifier (string) --

              The name used to access a file system created by Amazon EFS. CodeBuild creates an environment variable by appending the identifier in all capital letters to CODEBUILD_ . For example, if you specify my-efs for identifier , a new environment variable is create named CODEBUILD_MY-EFS .

              The identifier is used to mount your file system.

            • mountOptions (string) --

              The mount options for a file system created by AWS EFS. The default mount options used by CodeBuild are nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 . For more information, see Recommended NFS Mount Options.

        • buildBatchConfig (dict) --

          A ProjectBuildBatchConfig object that defines the batch build options for the project.

          • serviceRole (string) --

            Specifies the service role ARN for the batch build project.

          • combineArtifacts (boolean) --

            Specifies if the build artifacts for the batch build should be combined into a single artifact location.

          • restrictions (dict) --

            A BatchRestrictions object that specifies the restrictions for the batch build.

            • maximumBuildsAllowed (integer) --

              Specifies the maximum number of builds allowed.

            • computeTypesAllowed (list) --

              An array of strings that specify the compute types that are allowed for the batch build. See Build environment compute types in the AWS CodeBuild User Guide for these values.

              • (string) --

          • timeoutInMins (integer) --

            Specifies the maximum amount of time, in minutes, that the batch build must be completed in.

    • projectsNotFound (list) --

      The names of build projects for which information could not be found.

      • (string) --

BatchGetReportGroups (updated) Link ¶
Changes (response)
{'reportGroups': {'type': {'CODE_COVERAGE'}}}

Returns an array of report groups.

See also: AWS API Documentation

Request Syntax

client.batch_get_report_groups(
    reportGroupArns=[
        'string',
    ]
)
type reportGroupArns

list

param reportGroupArns

[REQUIRED]

An array of report group ARNs that identify the report groups to return.

  • (string) --

rtype

dict

returns

Response Syntax

{
    'reportGroups': [
        {
            'arn': 'string',
            'name': 'string',
            'type': 'TEST'|'CODE_COVERAGE',
            'exportConfig': {
                'exportConfigType': 'S3'|'NO_EXPORT',
                's3Destination': {
                    'bucket': 'string',
                    'path': 'string',
                    'packaging': 'ZIP'|'NONE',
                    'encryptionKey': 'string',
                    'encryptionDisabled': True|False
                }
            },
            'created': datetime(2015, 1, 1),
            'lastModified': datetime(2015, 1, 1),
            'tags': [
                {
                    'key': 'string',
                    'value': 'string'
                },
            ]
        },
    ],
    'reportGroupsNotFound': [
        'string',
    ]
}

Response Structure

  • (dict) --

    • reportGroups (list) --

      The array of report groups returned by BatchGetReportGroups .

      • (dict) --

        A series of reports. Each report contains information about the results from running a series of test cases. You specify the test cases for a report group in the buildspec for a build project using one or more paths to the test case files.

        • arn (string) --

          The ARN of a ReportGroup .

        • name (string) --

          The name of a ReportGroup .

        • type (string) --

          The type of the ReportGroup . The one valid value is TEST .

        • exportConfig (dict) --

          Information about the destination where the raw data of this ReportGroup is exported.

          • exportConfigType (string) --

            The export configuration type. Valid values are:

            • S3 : The report results are exported to an S3 bucket.

            • NO_EXPORT : The report results are not exported.

          • s3Destination (dict) --

            A S3ReportExportConfig object that contains information about the S3 bucket where the run of a report is exported.

            • bucket (string) --

              The name of the S3 bucket where the raw data of a report are exported.

            • path (string) --

              The path to the exported report's raw data results.

            • packaging (string) --

              The type of build output artifact to create. Valid values include:

              • NONE : AWS CodeBuild creates the raw data in the output bucket. This is the default if packaging is not specified.

              • ZIP : AWS CodeBuild creates a ZIP file with the raw data in the output bucket.

            • encryptionKey (string) --

              The encryption key for the report's encrypted raw data.

            • encryptionDisabled (boolean) --

              A boolean value that specifies if the results of a report are encrypted.

        • created (datetime) --

          The date and time this ReportGroup was created.

        • lastModified (datetime) --

          The date and time this ReportGroup was last modified.

        • tags (list) --

          A list of tag key and value pairs associated with this report group.

          These tags are available for use by AWS services that support AWS CodeBuild report group tags.

          • (dict) --

            A tag, consisting of a key and a value.

            This tag is available for use by AWS services that support tags in AWS CodeBuild.

            • key (string) --

              The tag's key.

            • value (string) --

              The tag's value.

    • reportGroupsNotFound (list) --

      An array of ARNs passed to BatchGetReportGroups that are not associated with a ReportGroup .

      • (string) --

BatchGetReports (updated) Link ¶
Changes (response)
{'reports': {'codeCoverageSummary': {'branchCoveragePercentage': 'double',
                                     'branchesCovered': 'integer',
                                     'branchesMissed': 'integer',
                                     'lineCoveragePercentage': 'double',
                                     'linesCovered': 'integer',
                                     'linesMissed': 'integer'},
             'type': {'CODE_COVERAGE'}}}

Returns an array of reports.

See also: AWS API Documentation

Request Syntax

client.batch_get_reports(
    reportArns=[
        'string',
    ]
)
type reportArns

list

param reportArns

[REQUIRED]

An array of ARNs that identify the Report objects to return.

  • (string) --

rtype

dict

returns

Response Syntax

{
    'reports': [
        {
            'arn': 'string',
            'type': 'TEST'|'CODE_COVERAGE',
            'name': 'string',
            'reportGroupArn': 'string',
            'executionId': 'string',
            'status': 'GENERATING'|'SUCCEEDED'|'FAILED'|'INCOMPLETE'|'DELETING',
            'created': datetime(2015, 1, 1),
            'expired': datetime(2015, 1, 1),
            'exportConfig': {
                'exportConfigType': 'S3'|'NO_EXPORT',
                's3Destination': {
                    'bucket': 'string',
                    'path': 'string',
                    'packaging': 'ZIP'|'NONE',
                    'encryptionKey': 'string',
                    'encryptionDisabled': True|False
                }
            },
            'truncated': True|False,
            'testSummary': {
                'total': 123,
                'statusCounts': {
                    'string': 123
                },
                'durationInNanoSeconds': 123
            },
            'codeCoverageSummary': {
                'lineCoveragePercentage': 123.0,
                'linesCovered': 123,
                'linesMissed': 123,
                'branchCoveragePercentage': 123.0,
                'branchesCovered': 123,
                'branchesMissed': 123
            }
        },
    ],
    'reportsNotFound': [
        'string',
    ]
}

Response Structure

  • (dict) --

    • reports (list) --

      The array of Report objects returned by BatchGetReports .

      • (dict) --

        Information about the results from running a series of test cases during the run of a build project. The test cases are specified in the buildspec for the build project using one or more paths to the test case files. You can specify any type of tests you want, such as unit tests, integration tests, and functional tests.

        • arn (string) --

          The ARN of the report run.

        • type (string) --

          The type of the report that was run.

          CODE_COVERAGE

          A code coverage report.

          TEST

          A test report.

        • name (string) --

          The name of the report that was run.

        • reportGroupArn (string) --

          The ARN of the report group associated with this report.

        • executionId (string) --

          The ARN of the build run that generated this report.

        • status (string) --

          The status of this report.

        • created (datetime) --

          The date and time this report run occurred.

        • expired (datetime) --

          The date and time a report expires. A report expires 30 days after it is created. An expired report is not available to view in CodeBuild.

        • exportConfig (dict) --

          Information about where the raw data used to generate this report was exported.

          • exportConfigType (string) --

            The export configuration type. Valid values are:

            • S3 : The report results are exported to an S3 bucket.

            • NO_EXPORT : The report results are not exported.

          • s3Destination (dict) --

            A S3ReportExportConfig object that contains information about the S3 bucket where the run of a report is exported.

            • bucket (string) --

              The name of the S3 bucket where the raw data of a report are exported.

            • path (string) --

              The path to the exported report's raw data results.

            • packaging (string) --

              The type of build output artifact to create. Valid values include:

              • NONE : AWS CodeBuild creates the raw data in the output bucket. This is the default if packaging is not specified.

              • ZIP : AWS CodeBuild creates a ZIP file with the raw data in the output bucket.

            • encryptionKey (string) --

              The encryption key for the report's encrypted raw data.

            • encryptionDisabled (boolean) --

              A boolean value that specifies if the results of a report are encrypted.

        • truncated (boolean) --

          A boolean that specifies if this report run is truncated. The list of test cases is truncated after the maximum number of test cases is reached.

        • testSummary (dict) --

          A TestReportSummary object that contains information about this test report.

          • total (integer) --

            The number of test cases in this TestReportSummary . The total includes truncated test cases.

          • statusCounts (dict) --

            A map that contains the number of each type of status returned by the test results in this TestReportSummary .

            • (string) --

              • (integer) --

          • durationInNanoSeconds (integer) --

            The number of nanoseconds it took to run all of the test cases in this report.

        • codeCoverageSummary (dict) --

          A CodeCoverageReportSummary object that contains a code coverage summary for this report.

          • lineCoveragePercentage (float) --

            The percentage of lines that are covered by your tests.

          • linesCovered (integer) --

            The number of lines that are covered by your tests.

          • linesMissed (integer) --

            The number of lines that are not covered by your tests.

          • branchCoveragePercentage (float) --

            The percentage of branches that are covered by your tests.

          • branchesCovered (integer) --

            The number of conditional branches that are covered by your tests.

          • branchesMissed (integer) --

            The number of conditional branches that are not covered by your tests.

    • reportsNotFound (list) --

      An array of ARNs passed to BatchGetReportGroups that are not associated with a Report .

      • (string) --

CreateProject (updated) Link ¶
Changes (request, response)
Request
{'buildBatchConfig': {'combineArtifacts': 'boolean',
                      'restrictions': {'computeTypesAllowed': ['string'],
                                       'maximumBuildsAllowed': 'integer'},
                      'serviceRole': 'string',
                      'timeoutInMins': 'integer'}}
Response
{'project': {'buildBatchConfig': {'combineArtifacts': 'boolean',
                                  'restrictions': {'computeTypesAllowed': ['string'],
                                                   'maximumBuildsAllowed': 'integer'},
                                  'serviceRole': 'string',
                                  'timeoutInMins': 'integer'},
             'webhook': {'buildType': 'BUILD | BUILD_BATCH'}}}

Creates a build project.

See also: AWS API Documentation

Request Syntax

client.create_project(
    name='string',
    description='string',
    source={
        'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
        'location': 'string',
        'gitCloneDepth': 123,
        'gitSubmodulesConfig': {
            'fetchSubmodules': True|False
        },
        'buildspec': 'string',
        'auth': {
            'type': 'OAUTH',
            'resource': 'string'
        },
        'reportBuildStatus': True|False,
        'buildStatusConfig': {
            'context': 'string',
            'targetUrl': 'string'
        },
        'insecureSsl': True|False,
        'sourceIdentifier': 'string'
    },
    secondarySources=[
        {
            'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
            'location': 'string',
            'gitCloneDepth': 123,
            'gitSubmodulesConfig': {
                'fetchSubmodules': True|False
            },
            'buildspec': 'string',
            'auth': {
                'type': 'OAUTH',
                'resource': 'string'
            },
            'reportBuildStatus': True|False,
            'buildStatusConfig': {
                'context': 'string',
                'targetUrl': 'string'
            },
            'insecureSsl': True|False,
            'sourceIdentifier': 'string'
        },
    ],
    sourceVersion='string',
    secondarySourceVersions=[
        {
            'sourceIdentifier': 'string',
            'sourceVersion': 'string'
        },
    ],
    artifacts={
        'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
        'location': 'string',
        'path': 'string',
        'namespaceType': 'NONE'|'BUILD_ID',
        'name': 'string',
        'packaging': 'NONE'|'ZIP',
        'overrideArtifactName': True|False,
        'encryptionDisabled': True|False,
        'artifactIdentifier': 'string'
    },
    secondaryArtifacts=[
        {
            'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
            'location': 'string',
            'path': 'string',
            'namespaceType': 'NONE'|'BUILD_ID',
            'name': 'string',
            'packaging': 'NONE'|'ZIP',
            'overrideArtifactName': True|False,
            'encryptionDisabled': True|False,
            'artifactIdentifier': 'string'
        },
    ],
    cache={
        'type': 'NO_CACHE'|'S3'|'LOCAL',
        'location': 'string',
        'modes': [
            'LOCAL_DOCKER_LAYER_CACHE'|'LOCAL_SOURCE_CACHE'|'LOCAL_CUSTOM_CACHE',
        ]
    },
    environment={
        'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER'|'LINUX_GPU_CONTAINER'|'ARM_CONTAINER'|'WINDOWS_SERVER_2019_CONTAINER',
        'image': 'string',
        'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE'|'BUILD_GENERAL1_2XLARGE',
        'environmentVariables': [
            {
                'name': 'string',
                'value': 'string',
                'type': 'PLAINTEXT'|'PARAMETER_STORE'|'SECRETS_MANAGER'
            },
        ],
        'privilegedMode': True|False,
        'certificate': 'string',
        'registryCredential': {
            'credential': 'string',
            'credentialProvider': 'SECRETS_MANAGER'
        },
        'imagePullCredentialsType': 'CODEBUILD'|'SERVICE_ROLE'
    },
    serviceRole='string',
    timeoutInMinutes=123,
    queuedTimeoutInMinutes=123,
    encryptionKey='string',
    tags=[
        {
            'key': 'string',
            'value': 'string'
        },
    ],
    vpcConfig={
        'vpcId': 'string',
        'subnets': [
            'string',
        ],
        'securityGroupIds': [
            'string',
        ]
    },
    badgeEnabled=True|False,
    logsConfig={
        'cloudWatchLogs': {
            'status': 'ENABLED'|'DISABLED',
            'groupName': 'string',
            'streamName': 'string'
        },
        's3Logs': {
            'status': 'ENABLED'|'DISABLED',
            'location': 'string',
            'encryptionDisabled': True|False
        }
    },
    fileSystemLocations=[
        {
            'type': 'EFS',
            'location': 'string',
            'mountPoint': 'string',
            'identifier': 'string',
            'mountOptions': 'string'
        },
    ],
    buildBatchConfig={
        'serviceRole': 'string',
        'combineArtifacts': True|False,
        'restrictions': {
            'maximumBuildsAllowed': 123,
            'computeTypesAllowed': [
                'string',
            ]
        },
        'timeoutInMins': 123
    }
)
type name

string

param name

[REQUIRED]

The name of the build project.

type description

string

param description

A description that makes the build project easy to identify.

type source

dict

param source

[REQUIRED]

Information about the build input source code for the build project.

  • type (string) -- [REQUIRED]

    The type of repository that contains the source code to be built. Valid values include:

    • BITBUCKET : The source code is in a Bitbucket repository.

    • CODECOMMIT : The source code is in an AWS CodeCommit repository.

    • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

    • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

    • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

    • NO_SOURCE : The project does not have input source code.

    • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

  • location (string) --

    Information about the location of the source code to be built. Valid values include:

    • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

    • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

    • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

      • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

      • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

    • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

    • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

  • gitCloneDepth (integer) --

    Information about the Git clone depth for the build project.

  • gitSubmodulesConfig (dict) --

    Information about the Git submodules configuration for the build project.

    • fetchSubmodules (boolean) -- [REQUIRED]

      Set to true to fetch Git submodules for your AWS CodeBuild build project.

  • buildspec (string) --

    The buildspec file declaration to use for the builds in this build project.

    If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

  • auth (dict) --

    Information about the authorization settings for AWS CodeBuild to access the source code to be built.

    This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

    • type (string) -- [REQUIRED]

      Note

      This data type is deprecated and is no longer accurate or used.

      The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

    • resource (string) --

      The resource value that applies to the specified authorization type.

  • reportBuildStatus (boolean) --

    Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

    Note

    The status of a build triggered by a webhook is always reported to your source provider.

  • buildStatusConfig (dict) --

    Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

    • context (string) --

      Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

      Bitbucket

      This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

      GitHub/GitHub Enterprise Server

      This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

    • targetUrl (string) --

      Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

      Bitbucket

      This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

      GitHub/GitHub Enterprise Server

      This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

  • insecureSsl (boolean) --

    Enable this flag to ignore SSL warnings while connecting to the project source code.

  • sourceIdentifier (string) --

    An identifier for this project source.

type secondarySources

list

param secondarySources

An array of ProjectSource objects.

  • (dict) --

    Information about the build input source code for the build project.

    • type (string) -- [REQUIRED]

      The type of repository that contains the source code to be built. Valid values include:

      • BITBUCKET : The source code is in a Bitbucket repository.

      • CODECOMMIT : The source code is in an AWS CodeCommit repository.

      • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

      • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

      • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

      • NO_SOURCE : The project does not have input source code.

      • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

    • location (string) --

      Information about the location of the source code to be built. Valid values include:

      • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

      • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

      • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

        • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

        • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

      • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

      • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

    • gitCloneDepth (integer) --

      Information about the Git clone depth for the build project.

    • gitSubmodulesConfig (dict) --

      Information about the Git submodules configuration for the build project.

      • fetchSubmodules (boolean) -- [REQUIRED]

        Set to true to fetch Git submodules for your AWS CodeBuild build project.

    • buildspec (string) --

      The buildspec file declaration to use for the builds in this build project.

      If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

    • auth (dict) --

      Information about the authorization settings for AWS CodeBuild to access the source code to be built.

      This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

      • type (string) -- [REQUIRED]

        Note

        This data type is deprecated and is no longer accurate or used.

        The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

      • resource (string) --

        The resource value that applies to the specified authorization type.

    • reportBuildStatus (boolean) --

      Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

      Note

      The status of a build triggered by a webhook is always reported to your source provider.

    • buildStatusConfig (dict) --

      Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

      • context (string) --

        Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

        Bitbucket

        This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

        GitHub/GitHub Enterprise Server

        This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

      • targetUrl (string) --

        Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

        Bitbucket

        This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

        GitHub/GitHub Enterprise Server

        This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

    • insecureSsl (boolean) --

      Enable this flag to ignore SSL warnings while connecting to the project source code.

    • sourceIdentifier (string) --

      An identifier for this project source.

type sourceVersion

string

param sourceVersion

A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of:

  • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

  • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

  • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

  • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level).

For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

type secondarySourceVersions

list

param secondarySourceVersions

An array of ProjectSourceVersion objects. If secondarySourceVersions is specified at the build level, then they take precedence over these secondarySourceVersions (at the project level).

  • (dict) --

    A source identifier and its corresponding version.

    • sourceIdentifier (string) -- [REQUIRED]

      An identifier for a source in the build project.

    • sourceVersion (string) -- [REQUIRED]

      The source version for the corresponding source identifier. If specified, must be one of:

      • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

      • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

      • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

      • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

      For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

type artifacts

dict

param artifacts

[REQUIRED]

Information about the build output artifacts for the build project.

  • type (string) -- [REQUIRED]

    The type of build output artifact. Valid values include:

    • CODEPIPELINE : The build project has build output generated through AWS CodePipeline.

    Note

    The CODEPIPELINE type is not supported for secondaryArtifacts .

    • NO_ARTIFACTS : The build project does not produce any build output.

    • S3 : The build project stores build output in Amazon Simple Storage Service (Amazon S3).

  • location (string) --

    Information about the build output artifact location:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , this is the name of the output bucket.

  • path (string) --

    Along with namespaceType and name , the pattern that AWS CodeBuild uses to name and store the output artifact:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , this is the path to the output artifact. If path is not specified, path is not used.

    For example, if path is set to MyArtifacts , namespaceType is set to NONE , and name is set to MyArtifact.zip , the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip .

  • namespaceType (string) --

    Along with path and name , the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , valid values include:

      • BUILD_ID : Include the build ID in the location of the build output artifact.

      • NONE : Do not include the build ID. This is the default if namespaceType is not specified.

    For example, if path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

  • name (string) --

    Along with path and namespaceType , the pattern that AWS CodeBuild uses to name and store the output artifact:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.

    For example:

    • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , then the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

    • If path is empty, namespaceType is set to NONE , and name is set to " / ", the output artifact is stored in the root of the output bucket.

    • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to " / ", the output artifact is stored in MyArtifacts/build-ID .

  • packaging (string) --

    The type of build output artifact to create:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , valid values include:

      • NONE : AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.

      • ZIP : AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.

  • overrideArtifactName (boolean) --

    If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

  • encryptionDisabled (boolean) --

    Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon Simple Storage Service (Amazon S3). If this is set with another artifacts type, an invalidInputException is thrown.

  • artifactIdentifier (string) --

    An identifier for this artifact definition.

type secondaryArtifacts

list

param secondaryArtifacts

An array of ProjectArtifacts objects.

  • (dict) --

    Information about the build output artifacts for the build project.

    • type (string) -- [REQUIRED]

      The type of build output artifact. Valid values include:

      • CODEPIPELINE : The build project has build output generated through AWS CodePipeline.

      Note

      The CODEPIPELINE type is not supported for secondaryArtifacts .

      • NO_ARTIFACTS : The build project does not produce any build output.

      • S3 : The build project stores build output in Amazon Simple Storage Service (Amazon S3).

    • location (string) --

      Information about the build output artifact location:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , this is the name of the output bucket.

    • path (string) --

      Along with namespaceType and name , the pattern that AWS CodeBuild uses to name and store the output artifact:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , this is the path to the output artifact. If path is not specified, path is not used.

      For example, if path is set to MyArtifacts , namespaceType is set to NONE , and name is set to MyArtifact.zip , the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip .

    • namespaceType (string) --

      Along with path and name , the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , valid values include:

        • BUILD_ID : Include the build ID in the location of the build output artifact.

        • NONE : Do not include the build ID. This is the default if namespaceType is not specified.

      For example, if path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

    • name (string) --

      Along with path and namespaceType , the pattern that AWS CodeBuild uses to name and store the output artifact:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.

      For example:

      • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , then the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

      • If path is empty, namespaceType is set to NONE , and name is set to " / ", the output artifact is stored in the root of the output bucket.

      • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to " / ", the output artifact is stored in MyArtifacts/build-ID .

    • packaging (string) --

      The type of build output artifact to create:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , valid values include:

        • NONE : AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.

        • ZIP : AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.

    • overrideArtifactName (boolean) --

      If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

    • encryptionDisabled (boolean) --

      Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon Simple Storage Service (Amazon S3). If this is set with another artifacts type, an invalidInputException is thrown.

    • artifactIdentifier (string) --

      An identifier for this artifact definition.

type cache

dict

param cache

Stores recently used information so that it can be quickly accessed at a later time.

  • type (string) -- [REQUIRED]

    The type of cache used by the build project. Valid values include:

    • NO_CACHE : The build project does not use any cache.

    • S3 : The build project reads and writes from and to S3.

    • LOCAL : The build project stores a cache locally on a build host that is only available to that build host.

  • location (string) --

    Information about the cache location:

    • NO_CACHE or LOCAL : This value is ignored.

    • S3 : This is the S3 bucket name/prefix.

  • modes (list) --

    If you use a LOCAL cache, the local cache mode. You can use one or more local cache modes at the same time.

    • LOCAL_SOURCE_CACHE mode caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored.

    • LOCAL_DOCKER_LAYER_CACHE mode caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network.

    Note

    • You can use a Docker layer cache in the Linux environment only.

    • The privileged flag must be set so that your project has the required Docker permissions.

    • You should consider the security implications before you use a Docker layer cache.

    • LOCAL_CUSTOM_CACHE mode caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache:

      • Only directories can be specified for caching. You cannot specify individual files.

      • Symlinks are used to reference cached directories.

      • Cached directories are linked to your build before it downloads its project sources. Cached items are overridden if a source item has the same name. Directories are specified using cache paths in the buildspec file.

    • (string) --

type environment

dict

param environment

[REQUIRED]

Information about the build environment for the build project.

  • type (string) -- [REQUIRED]

    The type of build environment to use for related builds.

    • The environment type ARM_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Sydney), and EU (Frankfurt).

    • The environment type LINUX_CONTAINER with compute type build.general1.2xlarge is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and China (Ningxia).

    • The environment type LINUX_GPU_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney) , China (Beijing), and China (Ningxia).

  • image (string) -- [REQUIRED]

    The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats:

    • For an image tag: registry/repository:tag . For example, to specify an image with the tag "latest," use registry/repository:latest .

    • For an image digest: registry/repository@digest . For example, to specify an image with the digest "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf," use registry/repository@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf .

  • computeType (string) -- [REQUIRED]

    Information about the compute resources the build project uses. Available values include:

    • BUILD_GENERAL1_SMALL : Use up to 3 GB memory and 2 vCPUs for builds.

    • BUILD_GENERAL1_MEDIUM : Use up to 7 GB memory and 4 vCPUs for builds.

    • BUILD_GENERAL1_LARGE : Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type.

    • BUILD_GENERAL1_2XLARGE : Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed.

    If you use BUILD_GENERAL1_LARGE :

    • For environment type LINUX_CONTAINER , you can use up to 15 GB memory and 8 vCPUs for builds.

    • For environment type LINUX_GPU_CONTAINER , you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds.

    • For environment type ARM_CONTAINER , you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds.

    For more information, see Build Environment Compute Types in the AWS CodeBuild User Guide.

  • environmentVariables (list) --

    A set of environment variables to make available to builds for this build project.

    • (dict) --

      Information about an environment variable for a build project or a build.

      • name (string) -- [REQUIRED]

        The name or key of the environment variable.

      • value (string) -- [REQUIRED]

        The value of the environment variable.

        Warning

        We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. PLAINTEXT environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI). For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE or SECRETS_MANAGER .

      • type (string) --

        The type of environment variable. Valid values include:

  • privilegedMode (boolean) --

    Enables running the Docker daemon inside a Docker container. Set to true only if the build project is used to build Docker images. Otherwise, a build that attempts to interact with the Docker daemon fails. The default setting is false .

    You can initialize the Docker daemon during the install phase of your build by adding one of the following sets of commands to the install phase of your buildspec file:

    If the operating system's base image is Ubuntu Linux:

    - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

    - timeout 15 sh -c "until docker info; do echo .; sleep 1; done"

    If the operating system's base image is Alpine Linux and the previous command does not work, add the -t argument to timeout :

    - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

    - timeout -t 15 sh -c "until docker info; do echo .; sleep 1; done"

  • certificate (string) --

    The certificate to use with this build project.

  • registryCredential (dict) --

    The credentials for access to a private registry.

    • credential (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.

      Note

      The credential can use the name of the credentials only if they exist in your current AWS Region.

    • credentialProvider (string) -- [REQUIRED]

      The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager.

  • imagePullCredentialsType (string) --

    The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values:

    • CODEBUILD specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal.

    • SERVICE_ROLE specifies that AWS CodeBuild uses your build project's service role.

    When you use a cross-account or private registry image, you must use SERVICE_ROLE credentials. When you use an AWS CodeBuild curated image, you must use CODEBUILD credentials.

type serviceRole

string

param serviceRole

[REQUIRED]

The ARN of the AWS Identity and Access Management (IAM) role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.

type timeoutInMinutes

integer

param timeoutInMinutes

How long, in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait before it times out any build that has not been marked as completed. The default is 60 minutes.

type queuedTimeoutInMinutes

integer

param queuedTimeoutInMinutes

The number of minutes a build is allowed to be queued before it times out.

type encryptionKey

string

param encryptionKey

The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts.

Note

You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/alias-name ).

type tags

list

param tags

A list of tag key and value pairs associated with this build project.

These tags are available for use by AWS services that support AWS CodeBuild build project tags.

  • (dict) --

    A tag, consisting of a key and a value.

    This tag is available for use by AWS services that support tags in AWS CodeBuild.

    • key (string) --

      The tag's key.

    • value (string) --

      The tag's value.

type vpcConfig

dict

param vpcConfig

VpcConfig enables AWS CodeBuild to access resources in an Amazon VPC.

  • vpcId (string) --

    The ID of the Amazon VPC.

  • subnets (list) --

    A list of one or more subnet IDs in your Amazon VPC.

    • (string) --

  • securityGroupIds (list) --

    A list of one or more security groups IDs in your Amazon VPC.

    • (string) --

type badgeEnabled

boolean

param badgeEnabled

Set this to true to generate a publicly accessible URL for your project's build badge.

type logsConfig

dict

param logsConfig

Information about logs for the build project. These can be logs in Amazon CloudWatch Logs, logs uploaded to a specified S3 bucket, or both.

  • cloudWatchLogs (dict) --

    Information about Amazon CloudWatch Logs for a build project. Amazon CloudWatch Logs are enabled by default.

    • status (string) -- [REQUIRED]

      The current status of the logs in Amazon CloudWatch Logs for a build project. Valid values are:

      • ENABLED : Amazon CloudWatch Logs are enabled for this build project.

      • DISABLED : Amazon CloudWatch Logs are not enabled for this build project.

    • groupName (string) --

      The group name of the logs in Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

    • streamName (string) --

      The prefix of the stream name of the Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

  • s3Logs (dict) --

    Information about logs built to an S3 bucket for a build project. S3 logs are not enabled by default.

    • status (string) -- [REQUIRED]

      The current status of the S3 build logs. Valid values are:

      • ENABLED : S3 build logs are enabled for this build project.

      • DISABLED : S3 build logs are not enabled for this build project.

    • location (string) --

      The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket , and your path prefix is build-log , then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log .

    • encryptionDisabled (boolean) --

      Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.

type fileSystemLocations

list

param fileSystemLocations

An array of ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier , location , mountOptions , mountPoint , and type of a file system created using Amazon Elastic File System.

  • (dict) --

    Information about a file system created by Amazon Elastic File System (EFS). For more information, see What Is Amazon Elastic File System?

    • type (string) --

      The type of the file system. The one supported type is EFS .

    • location (string) --

      A string that specifies the location of the file system created by Amazon EFS. Its format is efs-dns-name:/directory-path . You can find the DNS name of file system when you view it in the AWS EFS console. The directory path is a path to a directory in the file system that CodeBuild mounts. For example, if the DNS name of a file system is fs-abcd1234.efs.us-west-2.amazonaws.com , and its mount directory is my-efs-mount-directory , then the location is fs-abcd1234.efs.us-west-2.amazonaws.com:/my-efs-mount-directory .

      The directory path in the format efs-dns-name:/directory-path is optional. If you do not specify a directory path, the location is only the DNS name and CodeBuild mounts the entire file system.

    • mountPoint (string) --

      The location in the container where you mount the file system.

    • identifier (string) --

      The name used to access a file system created by Amazon EFS. CodeBuild creates an environment variable by appending the identifier in all capital letters to CODEBUILD_ . For example, if you specify my-efs for identifier , a new environment variable is create named CODEBUILD_MY-EFS .

      The identifier is used to mount your file system.

    • mountOptions (string) --

      The mount options for a file system created by AWS EFS. The default mount options used by CodeBuild are nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 . For more information, see Recommended NFS Mount Options.

type buildBatchConfig

dict

param buildBatchConfig

A ProjectBuildBatchConfig object that defines the batch build options for the project.

  • serviceRole (string) --

    Specifies the service role ARN for the batch build project.

  • combineArtifacts (boolean) --

    Specifies if the build artifacts for the batch build should be combined into a single artifact location.

  • restrictions (dict) --

    A BatchRestrictions object that specifies the restrictions for the batch build.

    • maximumBuildsAllowed (integer) --

      Specifies the maximum number of builds allowed.

    • computeTypesAllowed (list) --

      An array of strings that specify the compute types that are allowed for the batch build. See Build environment compute types in the AWS CodeBuild User Guide for these values.

      • (string) --

  • timeoutInMins (integer) --

    Specifies the maximum amount of time, in minutes, that the batch build must be completed in.

rtype

dict

returns

Response Syntax

{
    'project': {
        'name': 'string',
        'arn': 'string',
        'description': 'string',
        'source': {
            'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
            'location': 'string',
            'gitCloneDepth': 123,
            'gitSubmodulesConfig': {
                'fetchSubmodules': True|False
            },
            'buildspec': 'string',
            'auth': {
                'type': 'OAUTH',
                'resource': 'string'
            },
            'reportBuildStatus': True|False,
            'buildStatusConfig': {
                'context': 'string',
                'targetUrl': 'string'
            },
            'insecureSsl': True|False,
            'sourceIdentifier': 'string'
        },
        'secondarySources': [
            {
                'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
                'location': 'string',
                'gitCloneDepth': 123,
                'gitSubmodulesConfig': {
                    'fetchSubmodules': True|False
                },
                'buildspec': 'string',
                'auth': {
                    'type': 'OAUTH',
                    'resource': 'string'
                },
                'reportBuildStatus': True|False,
                'buildStatusConfig': {
                    'context': 'string',
                    'targetUrl': 'string'
                },
                'insecureSsl': True|False,
                'sourceIdentifier': 'string'
            },
        ],
        'sourceVersion': 'string',
        'secondarySourceVersions': [
            {
                'sourceIdentifier': 'string',
                'sourceVersion': 'string'
            },
        ],
        'artifacts': {
            'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
            'location': 'string',
            'path': 'string',
            'namespaceType': 'NONE'|'BUILD_ID',
            'name': 'string',
            'packaging': 'NONE'|'ZIP',
            'overrideArtifactName': True|False,
            'encryptionDisabled': True|False,
            'artifactIdentifier': 'string'
        },
        'secondaryArtifacts': [
            {
                'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                'location': 'string',
                'path': 'string',
                'namespaceType': 'NONE'|'BUILD_ID',
                'name': 'string',
                'packaging': 'NONE'|'ZIP',
                'overrideArtifactName': True|False,
                'encryptionDisabled': True|False,
                'artifactIdentifier': 'string'
            },
        ],
        'cache': {
            'type': 'NO_CACHE'|'S3'|'LOCAL',
            'location': 'string',
            'modes': [
                'LOCAL_DOCKER_LAYER_CACHE'|'LOCAL_SOURCE_CACHE'|'LOCAL_CUSTOM_CACHE',
            ]
        },
        'environment': {
            'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER'|'LINUX_GPU_CONTAINER'|'ARM_CONTAINER'|'WINDOWS_SERVER_2019_CONTAINER',
            'image': 'string',
            'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE'|'BUILD_GENERAL1_2XLARGE',
            'environmentVariables': [
                {
                    'name': 'string',
                    'value': 'string',
                    'type': 'PLAINTEXT'|'PARAMETER_STORE'|'SECRETS_MANAGER'
                },
            ],
            'privilegedMode': True|False,
            'certificate': 'string',
            'registryCredential': {
                'credential': 'string',
                'credentialProvider': 'SECRETS_MANAGER'
            },
            'imagePullCredentialsType': 'CODEBUILD'|'SERVICE_ROLE'
        },
        'serviceRole': 'string',
        'timeoutInMinutes': 123,
        'queuedTimeoutInMinutes': 123,
        'encryptionKey': 'string',
        'tags': [
            {
                'key': 'string',
                'value': 'string'
            },
        ],
        'created': datetime(2015, 1, 1),
        'lastModified': datetime(2015, 1, 1),
        'webhook': {
            'url': 'string',
            'payloadUrl': 'string',
            'secret': 'string',
            'branchFilter': 'string',
            'filterGroups': [
                [
                    {
                        'type': 'EVENT'|'BASE_REF'|'HEAD_REF'|'ACTOR_ACCOUNT_ID'|'FILE_PATH'|'COMMIT_MESSAGE',
                        'pattern': 'string',
                        'excludeMatchedPattern': True|False
                    },
                ],
            ],
            'buildType': 'BUILD'|'BUILD_BATCH',
            'lastModifiedSecret': datetime(2015, 1, 1)
        },
        'vpcConfig': {
            'vpcId': 'string',
            'subnets': [
                'string',
            ],
            'securityGroupIds': [
                'string',
            ]
        },
        'badge': {
            'badgeEnabled': True|False,
            'badgeRequestUrl': 'string'
        },
        'logsConfig': {
            'cloudWatchLogs': {
                'status': 'ENABLED'|'DISABLED',
                'groupName': 'string',
                'streamName': 'string'
            },
            's3Logs': {
                'status': 'ENABLED'|'DISABLED',
                'location': 'string',
                'encryptionDisabled': True|False
            }
        },
        'fileSystemLocations': [
            {
                'type': 'EFS',
                'location': 'string',
                'mountPoint': 'string',
                'identifier': 'string',
                'mountOptions': 'string'
            },
        ],
        'buildBatchConfig': {
            'serviceRole': 'string',
            'combineArtifacts': True|False,
            'restrictions': {
                'maximumBuildsAllowed': 123,
                'computeTypesAllowed': [
                    'string',
                ]
            },
            'timeoutInMins': 123
        }
    }
}

Response Structure

  • (dict) --

    • project (dict) --

      Information about the build project that was created.

      • name (string) --

        The name of the build project.

      • arn (string) --

        The Amazon Resource Name (ARN) of the build project.

      • description (string) --

        A description that makes the build project easy to identify.

      • source (dict) --

        Information about the build input source code for this build project.

        • type (string) --

          The type of repository that contains the source code to be built. Valid values include:

          • BITBUCKET : The source code is in a Bitbucket repository.

          • CODECOMMIT : The source code is in an AWS CodeCommit repository.

          • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

          • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

          • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

          • NO_SOURCE : The project does not have input source code.

          • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

        • location (string) --

          Information about the location of the source code to be built. Valid values include:

          • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

          • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

          • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

            • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

            • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

          • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

        • gitCloneDepth (integer) --

          Information about the Git clone depth for the build project.

        • gitSubmodulesConfig (dict) --

          Information about the Git submodules configuration for the build project.

          • fetchSubmodules (boolean) --

            Set to true to fetch Git submodules for your AWS CodeBuild build project.

        • buildspec (string) --

          The buildspec file declaration to use for the builds in this build project.

          If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

        • auth (dict) --

          Information about the authorization settings for AWS CodeBuild to access the source code to be built.

          This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

          • type (string) --

            Note

            This data type is deprecated and is no longer accurate or used.

            The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

          • resource (string) --

            The resource value that applies to the specified authorization type.

        • reportBuildStatus (boolean) --

          Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

          Note

          The status of a build triggered by a webhook is always reported to your source provider.

        • buildStatusConfig (dict) --

          Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

          • context (string) --

            Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

            Bitbucket

            This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

            GitHub/GitHub Enterprise Server

            This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • targetUrl (string) --

            Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

            Bitbucket

            This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

            GitHub/GitHub Enterprise Server

            This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

        • insecureSsl (boolean) --

          Enable this flag to ignore SSL warnings while connecting to the project source code.

        • sourceIdentifier (string) --

          An identifier for this project source.

      • secondarySources (list) --

        An array of ProjectSource objects.

        • (dict) --

          Information about the build input source code for the build project.

          • type (string) --

            The type of repository that contains the source code to be built. Valid values include:

            • BITBUCKET : The source code is in a Bitbucket repository.

            • CODECOMMIT : The source code is in an AWS CodeCommit repository.

            • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

            • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

            • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

            • NO_SOURCE : The project does not have input source code.

            • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

          • location (string) --

            Information about the location of the source code to be built. Valid values include:

            • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

            • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

            • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

              • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

              • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

            • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

            • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • gitCloneDepth (integer) --

            Information about the Git clone depth for the build project.

          • gitSubmodulesConfig (dict) --

            Information about the Git submodules configuration for the build project.

            • fetchSubmodules (boolean) --

              Set to true to fetch Git submodules for your AWS CodeBuild build project.

          • buildspec (string) --

            The buildspec file declaration to use for the builds in this build project.

            If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

          • auth (dict) --

            Information about the authorization settings for AWS CodeBuild to access the source code to be built.

            This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

            • type (string) --

              Note

              This data type is deprecated and is no longer accurate or used.

              The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

            • resource (string) --

              The resource value that applies to the specified authorization type.

          • reportBuildStatus (boolean) --

            Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

            Note

            The status of a build triggered by a webhook is always reported to your source provider.

          • buildStatusConfig (dict) --

            Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

            • context (string) --

              Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

            • targetUrl (string) --

              Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • insecureSsl (boolean) --

            Enable this flag to ignore SSL warnings while connecting to the project source code.

          • sourceIdentifier (string) --

            An identifier for this project source.

      • sourceVersion (string) --

        A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of:

        • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

        • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

        • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

        • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

        If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level).

        For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

      • secondarySourceVersions (list) --

        An array of ProjectSourceVersion objects. If secondarySourceVersions is specified at the build level, then they take over these secondarySourceVersions (at the project level).

        • (dict) --

          A source identifier and its corresponding version.

          • sourceIdentifier (string) --

            An identifier for a source in the build project.

          • sourceVersion (string) --

            The source version for the corresponding source identifier. If specified, must be one of:

            • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

            • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

            • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

            • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

            For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

      • artifacts (dict) --

        Information about the build output artifacts for the build project.

        • type (string) --

          The type of build output artifact. Valid values include:

          • CODEPIPELINE : The build project has build output generated through AWS CodePipeline.

          Note

          The CODEPIPELINE type is not supported for secondaryArtifacts .

          • NO_ARTIFACTS : The build project does not produce any build output.

          • S3 : The build project stores build output in Amazon Simple Storage Service (Amazon S3).

        • location (string) --

          Information about the build output artifact location:

          • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.

          • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

          • If type is set to S3 , this is the name of the output bucket.

        • path (string) --

          Along with namespaceType and name , the pattern that AWS CodeBuild uses to name and store the output artifact:

          • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

          • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

          • If type is set to S3 , this is the path to the output artifact. If path is not specified, path is not used.

          For example, if path is set to MyArtifacts , namespaceType is set to NONE , and name is set to MyArtifact.zip , the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip .

        • namespaceType (string) --

          Along with path and name , the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact:

          • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

          • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

          • If type is set to S3 , valid values include:

            • BUILD_ID : Include the build ID in the location of the build output artifact.

            • NONE : Do not include the build ID. This is the default if namespaceType is not specified.

          For example, if path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

        • name (string) --

          Along with path and namespaceType , the pattern that AWS CodeBuild uses to name and store the output artifact:

          • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

          • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

          • If type is set to S3 , this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.

          For example:

          • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , then the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

          • If path is empty, namespaceType is set to NONE , and name is set to " / ", the output artifact is stored in the root of the output bucket.

          • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to " / ", the output artifact is stored in MyArtifacts/build-ID .

        • packaging (string) --

          The type of build output artifact to create:

          • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.

          • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

          • If type is set to S3 , valid values include:

            • NONE : AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.

            • ZIP : AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.

        • overrideArtifactName (boolean) --

          If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

        • encryptionDisabled (boolean) --

          Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon Simple Storage Service (Amazon S3). If this is set with another artifacts type, an invalidInputException is thrown.

        • artifactIdentifier (string) --

          An identifier for this artifact definition.

      • secondaryArtifacts (list) --

        An array of ProjectArtifacts objects.

        • (dict) --

          Information about the build output artifacts for the build project.

          • type (string) --

            The type of build output artifact. Valid values include:

            • CODEPIPELINE : The build project has build output generated through AWS CodePipeline.

            Note

            The CODEPIPELINE type is not supported for secondaryArtifacts .

            • NO_ARTIFACTS : The build project does not produce any build output.

            • S3 : The build project stores build output in Amazon Simple Storage Service (Amazon S3).

          • location (string) --

            Information about the build output artifact location:

            • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.

            • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

            • If type is set to S3 , this is the name of the output bucket.

          • path (string) --

            Along with namespaceType and name , the pattern that AWS CodeBuild uses to name and store the output artifact:

            • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

            • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

            • If type is set to S3 , this is the path to the output artifact. If path is not specified, path is not used.

            For example, if path is set to MyArtifacts , namespaceType is set to NONE , and name is set to MyArtifact.zip , the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip .

          • namespaceType (string) --

            Along with path and name , the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact:

            • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

            • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

            • If type is set to S3 , valid values include:

              • BUILD_ID : Include the build ID in the location of the build output artifact.

              • NONE : Do not include the build ID. This is the default if namespaceType is not specified.

            For example, if path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

          • name (string) --

            Along with path and namespaceType , the pattern that AWS CodeBuild uses to name and store the output artifact:

            • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

            • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

            • If type is set to S3 , this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.

            For example:

            • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , then the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

            • If path is empty, namespaceType is set to NONE , and name is set to " / ", the output artifact is stored in the root of the output bucket.

            • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to " / ", the output artifact is stored in MyArtifacts/build-ID .

          • packaging (string) --

            The type of build output artifact to create:

            • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.

            • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

            • If type is set to S3 , valid values include:

              • NONE : AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.

              • ZIP : AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.

          • overrideArtifactName (boolean) --

            If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

          • encryptionDisabled (boolean) --

            Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon Simple Storage Service (Amazon S3). If this is set with another artifacts type, an invalidInputException is thrown.

          • artifactIdentifier (string) --

            An identifier for this artifact definition.

      • cache (dict) --

        Information about the cache for the build project.

        • type (string) --

          The type of cache used by the build project. Valid values include:

          • NO_CACHE : The build project does not use any cache.

          • S3 : The build project reads and writes from and to S3.

          • LOCAL : The build project stores a cache locally on a build host that is only available to that build host.

        • location (string) --

          Information about the cache location:

          • NO_CACHE or LOCAL : This value is ignored.

          • S3 : This is the S3 bucket name/prefix.

        • modes (list) --

          If you use a LOCAL cache, the local cache mode. You can use one or more local cache modes at the same time.

          • LOCAL_SOURCE_CACHE mode caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored.

          • LOCAL_DOCKER_LAYER_CACHE mode caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network.

          Note

          • You can use a Docker layer cache in the Linux environment only.

          • The privileged flag must be set so that your project has the required Docker permissions.

          • You should consider the security implications before you use a Docker layer cache.

          • LOCAL_CUSTOM_CACHE mode caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache:

            • Only directories can be specified for caching. You cannot specify individual files.

            • Symlinks are used to reference cached directories.

            • Cached directories are linked to your build before it downloads its project sources. Cached items are overridden if a source item has the same name. Directories are specified using cache paths in the buildspec file.

          • (string) --

      • environment (dict) --

        Information about the build environment for this build project.

        • type (string) --

          The type of build environment to use for related builds.

          • The environment type ARM_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Sydney), and EU (Frankfurt).

          • The environment type LINUX_CONTAINER with compute type build.general1.2xlarge is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and China (Ningxia).

          • The environment type LINUX_GPU_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney) , China (Beijing), and China (Ningxia).

        • image (string) --

          The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats:

          • For an image tag: registry/repository:tag . For example, to specify an image with the tag "latest," use registry/repository:latest .

          • For an image digest: registry/repository@digest . For example, to specify an image with the digest "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf," use registry/repository@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf .

        • computeType (string) --

          Information about the compute resources the build project uses. Available values include:

          • BUILD_GENERAL1_SMALL : Use up to 3 GB memory and 2 vCPUs for builds.

          • BUILD_GENERAL1_MEDIUM : Use up to 7 GB memory and 4 vCPUs for builds.

          • BUILD_GENERAL1_LARGE : Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type.

          • BUILD_GENERAL1_2XLARGE : Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed.

          If you use BUILD_GENERAL1_LARGE :

          • For environment type LINUX_CONTAINER , you can use up to 15 GB memory and 8 vCPUs for builds.

          • For environment type LINUX_GPU_CONTAINER , you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds.

          • For environment type ARM_CONTAINER , you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds.

          For more information, see Build Environment Compute Types in the AWS CodeBuild User Guide.

        • environmentVariables (list) --

          A set of environment variables to make available to builds for this build project.

          • (dict) --

            Information about an environment variable for a build project or a build.

            • name (string) --

              The name or key of the environment variable.

            • value (string) --

              The value of the environment variable.

              Warning

              We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. PLAINTEXT environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI). For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE or SECRETS_MANAGER .

            • type (string) --

              The type of environment variable. Valid values include:

        • privilegedMode (boolean) --

          Enables running the Docker daemon inside a Docker container. Set to true only if the build project is used to build Docker images. Otherwise, a build that attempts to interact with the Docker daemon fails. The default setting is false .

          You can initialize the Docker daemon during the install phase of your build by adding one of the following sets of commands to the install phase of your buildspec file:

          If the operating system's base image is Ubuntu Linux:

          - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

          - timeout 15 sh -c "until docker info; do echo .; sleep 1; done"

          If the operating system's base image is Alpine Linux and the previous command does not work, add the -t argument to timeout :

          - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

          - timeout -t 15 sh -c "until docker info; do echo .; sleep 1; done"

        • certificate (string) --

          The certificate to use with this build project.

        • registryCredential (dict) --

          The credentials for access to a private registry.

          • credential (string) --

            The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.

            Note

            The credential can use the name of the credentials only if they exist in your current AWS Region.

          • credentialProvider (string) --

            The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager.

        • imagePullCredentialsType (string) --

          The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values:

          • CODEBUILD specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal.

          • SERVICE_ROLE specifies that AWS CodeBuild uses your build project's service role.

          When you use a cross-account or private registry image, you must use SERVICE_ROLE credentials. When you use an AWS CodeBuild curated image, you must use CODEBUILD credentials.

      • serviceRole (string) --

        The ARN of the AWS Identity and Access Management (IAM) role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.

      • timeoutInMinutes (integer) --

        How long, in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait before timing out any related build that did not get marked as completed. The default is 60 minutes.

      • queuedTimeoutInMinutes (integer) --

        The number of minutes a build is allowed to be queued before it times out.

      • encryptionKey (string) --

        The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts.

        Note

        You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

        You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/alias-name ).

      • tags (list) --

        A list of tag key and value pairs associated with this build project.

        These tags are available for use by AWS services that support AWS CodeBuild build project tags.

        • (dict) --

          A tag, consisting of a key and a value.

          This tag is available for use by AWS services that support tags in AWS CodeBuild.

          • key (string) --

            The tag's key.

          • value (string) --

            The tag's value.

      • created (datetime) --

        When the build project was created, expressed in Unix time format.

      • lastModified (datetime) --

        When the build project's settings were last modified, expressed in Unix time format.

      • webhook (dict) --

        Information about a webhook that connects repository events to a build project in AWS CodeBuild.

        • url (string) --

          The URL to the webhook.

        • payloadUrl (string) --

          The AWS CodeBuild endpoint where webhook events are sent.

        • secret (string) --

          The secret token of the associated repository.

          Note

          A Bitbucket webhook does not support secret .

        • branchFilter (string) --

          A regular expression used to determine which repository branches are built when a webhook is triggered. If the name of a branch matches the regular expression, then it is built. If branchFilter is empty, then all branches are built.

          Note

          It is recommended that you use filterGroups instead of branchFilter .

        • filterGroups (list) --

          An array of arrays of WebhookFilter objects used to determine which webhooks are triggered. At least one WebhookFilter in the array must specify EVENT as its type .

          For a build to be triggered, at least one filter group in the filterGroups array must pass. For a filter group to pass, each of its filters must pass.

          • (list) --

            • (dict) --

              A filter used to determine which webhooks trigger a build.

              • type (string) --

                The type of webhook filter. There are six webhook filter types: EVENT , ACTOR_ACCOUNT_ID , HEAD_REF , BASE_REF , FILE_PATH , and COMMIT_MESSAGE .

                EVENT

                A webhook event triggers a build when the provided pattern matches one of five event types: PUSH , PULL_REQUEST_CREATED , PULL_REQUEST_UPDATED , PULL_REQUEST_REOPENED , and PULL_REQUEST_MERGED . The EVENT patterns are specified as a comma-separated string. For example, PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED filters all push, pull request created, and pull request updated events.

                Note

                The PULL_REQUEST_REOPENED works with GitHub and GitHub Enterprise only.

                ACTOR_ACCOUNT_ID

                A webhook event triggers a build when a GitHub, GitHub Enterprise, or Bitbucket account ID matches the regular expression pattern .

                HEAD_REF

                A webhook event triggers a build when the head reference matches the regular expression pattern . For example, refs/heads/branch-name and refs/tags/tag-name .

                Works with GitHub and GitHub Enterprise push, GitHub and GitHub Enterprise pull request, Bitbucket push, and Bitbucket pull request events.

                BASE_REF

                A webhook event triggers a build when the base reference matches the regular expression pattern . For example, refs/heads/branch-name .

                Note

                Works with pull request events only.

                FILE_PATH

                A webhook triggers a build when the path of a changed file matches the regular expression pattern .

                Note

                Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.

                COMMIT_MESSAGE

                A webhook triggers a build when the head commit message matches the regular expression pattern .

                Note

                Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.

              • pattern (string) --

                For a WebHookFilter that uses EVENT type, a comma-separated string that specifies one or more events. For example, the webhook filter PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED allows all push, pull request created, and pull request updated events to trigger a build.

                For a WebHookFilter that uses any of the other filter types, a regular expression pattern. For example, a WebHookFilter that uses HEAD_REF for its type and the pattern ^refs/heads/ triggers a build when the head reference is a branch with a reference name refs/heads/branch-name .

              • excludeMatchedPattern (boolean) --

                Used to indicate that the pattern determines which webhook events do not trigger a build. If true, then a webhook event that does not match the pattern triggers a build. If false, then a webhook event that matches the pattern triggers a build.

        • buildType (string) --

          Specifies the type of build this webhook will trigger.

        • lastModifiedSecret (datetime) --

          A timestamp that indicates the last time a repository's secret token was modified.

      • vpcConfig (dict) --

        Information about the VPC configuration that AWS CodeBuild accesses.

        • vpcId (string) --

          The ID of the Amazon VPC.

        • subnets (list) --

          A list of one or more subnet IDs in your Amazon VPC.

          • (string) --

        • securityGroupIds (list) --

          A list of one or more security groups IDs in your Amazon VPC.

          • (string) --

      • badge (dict) --

        Information about the build badge for the build project.

        • badgeEnabled (boolean) --

          Set this to true to generate a publicly accessible URL for your project's build badge.

        • badgeRequestUrl (string) --

          The publicly-accessible URL through which you can access the build badge for your project.

          The publicly accessible URL through which you can access the build badge for your project.

      • logsConfig (dict) --

        Information about logs for the build project. A project can create logs in Amazon CloudWatch Logs, an S3 bucket, or both.

        • cloudWatchLogs (dict) --

          Information about Amazon CloudWatch Logs for a build project. Amazon CloudWatch Logs are enabled by default.

          • status (string) --

            The current status of the logs in Amazon CloudWatch Logs for a build project. Valid values are:

            • ENABLED : Amazon CloudWatch Logs are enabled for this build project.

            • DISABLED : Amazon CloudWatch Logs are not enabled for this build project.

          • groupName (string) --

            The group name of the logs in Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

          • streamName (string) --

            The prefix of the stream name of the Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

        • s3Logs (dict) --

          Information about logs built to an S3 bucket for a build project. S3 logs are not enabled by default.

          • status (string) --

            The current status of the S3 build logs. Valid values are:

            • ENABLED : S3 build logs are enabled for this build project.

            • DISABLED : S3 build logs are not enabled for this build project.

          • location (string) --

            The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket , and your path prefix is build-log , then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log .

          • encryptionDisabled (boolean) --

            Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.

      • fileSystemLocations (list) --

        An array of ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier , location , mountOptions , mountPoint , and type of a file system created using Amazon Elastic File System.

        • (dict) --

          Information about a file system created by Amazon Elastic File System (EFS). For more information, see What Is Amazon Elastic File System?

          • type (string) --

            The type of the file system. The one supported type is EFS .

          • location (string) --

            A string that specifies the location of the file system created by Amazon EFS. Its format is efs-dns-name:/directory-path . You can find the DNS name of file system when you view it in the AWS EFS console. The directory path is a path to a directory in the file system that CodeBuild mounts. For example, if the DNS name of a file system is fs-abcd1234.efs.us-west-2.amazonaws.com , and its mount directory is my-efs-mount-directory , then the location is fs-abcd1234.efs.us-west-2.amazonaws.com:/my-efs-mount-directory .

            The directory path in the format efs-dns-name:/directory-path is optional. If you do not specify a directory path, the location is only the DNS name and CodeBuild mounts the entire file system.

          • mountPoint (string) --

            The location in the container where you mount the file system.

          • identifier (string) --

            The name used to access a file system created by Amazon EFS. CodeBuild creates an environment variable by appending the identifier in all capital letters to CODEBUILD_ . For example, if you specify my-efs for identifier , a new environment variable is create named CODEBUILD_MY-EFS .

            The identifier is used to mount your file system.

          • mountOptions (string) --

            The mount options for a file system created by AWS EFS. The default mount options used by CodeBuild are nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 . For more information, see Recommended NFS Mount Options.

      • buildBatchConfig (dict) --

        A ProjectBuildBatchConfig object that defines the batch build options for the project.

        • serviceRole (string) --

          Specifies the service role ARN for the batch build project.

        • combineArtifacts (boolean) --

          Specifies if the build artifacts for the batch build should be combined into a single artifact location.

        • restrictions (dict) --

          A BatchRestrictions object that specifies the restrictions for the batch build.

          • maximumBuildsAllowed (integer) --

            Specifies the maximum number of builds allowed.

          • computeTypesAllowed (list) --

            An array of strings that specify the compute types that are allowed for the batch build. See Build environment compute types in the AWS CodeBuild User Guide for these values.

            • (string) --

        • timeoutInMins (integer) --

          Specifies the maximum amount of time, in minutes, that the batch build must be completed in.

CreateReportGroup (updated) Link ¶
Changes (request, response)
Request
{'type': {'CODE_COVERAGE'}}
Response
{'reportGroup': {'type': {'CODE_COVERAGE'}}}

Creates a report group. A report group contains a collection of reports.

See also: AWS API Documentation

Request Syntax

client.create_report_group(
    name='string',
    type='TEST'|'CODE_COVERAGE',
    exportConfig={
        'exportConfigType': 'S3'|'NO_EXPORT',
        's3Destination': {
            'bucket': 'string',
            'path': 'string',
            'packaging': 'ZIP'|'NONE',
            'encryptionKey': 'string',
            'encryptionDisabled': True|False
        }
    },
    tags=[
        {
            'key': 'string',
            'value': 'string'
        },
    ]
)
type name

string

param name

[REQUIRED]

The name of the report group.

type type

string

param type

[REQUIRED]

The type of report group.

type exportConfig

dict

param exportConfig

[REQUIRED]

A ReportExportConfig object that contains information about where the report group test results are exported.

  • exportConfigType (string) --

    The export configuration type. Valid values are:

    • S3 : The report results are exported to an S3 bucket.

    • NO_EXPORT : The report results are not exported.

  • s3Destination (dict) --

    A S3ReportExportConfig object that contains information about the S3 bucket where the run of a report is exported.

    • bucket (string) --

      The name of the S3 bucket where the raw data of a report are exported.

    • path (string) --

      The path to the exported report's raw data results.

    • packaging (string) --

      The type of build output artifact to create. Valid values include:

      • NONE : AWS CodeBuild creates the raw data in the output bucket. This is the default if packaging is not specified.

      • ZIP : AWS CodeBuild creates a ZIP file with the raw data in the output bucket.

    • encryptionKey (string) --

      The encryption key for the report's encrypted raw data.

    • encryptionDisabled (boolean) --

      A boolean value that specifies if the results of a report are encrypted.

type tags

list

param tags

A list of tag key and value pairs associated with this report group.

These tags are available for use by AWS services that support AWS CodeBuild report group tags.

  • (dict) --

    A tag, consisting of a key and a value.

    This tag is available for use by AWS services that support tags in AWS CodeBuild.

    • key (string) --

      The tag's key.

    • value (string) --

      The tag's value.

rtype

dict

returns

Response Syntax

{
    'reportGroup': {
        'arn': 'string',
        'name': 'string',
        'type': 'TEST'|'CODE_COVERAGE',
        'exportConfig': {
            'exportConfigType': 'S3'|'NO_EXPORT',
            's3Destination': {
                'bucket': 'string',
                'path': 'string',
                'packaging': 'ZIP'|'NONE',
                'encryptionKey': 'string',
                'encryptionDisabled': True|False
            }
        },
        'created': datetime(2015, 1, 1),
        'lastModified': datetime(2015, 1, 1),
        'tags': [
            {
                'key': 'string',
                'value': 'string'
            },
        ]
    }
}

Response Structure

  • (dict) --

    • reportGroup (dict) --

      Information about the report group that was created.

      • arn (string) --

        The ARN of a ReportGroup .

      • name (string) --

        The name of a ReportGroup .

      • type (string) --

        The type of the ReportGroup . The one valid value is TEST .

      • exportConfig (dict) --

        Information about the destination where the raw data of this ReportGroup is exported.

        • exportConfigType (string) --

          The export configuration type. Valid values are:

          • S3 : The report results are exported to an S3 bucket.

          • NO_EXPORT : The report results are not exported.

        • s3Destination (dict) --

          A S3ReportExportConfig object that contains information about the S3 bucket where the run of a report is exported.

          • bucket (string) --

            The name of the S3 bucket where the raw data of a report are exported.

          • path (string) --

            The path to the exported report's raw data results.

          • packaging (string) --

            The type of build output artifact to create. Valid values include:

            • NONE : AWS CodeBuild creates the raw data in the output bucket. This is the default if packaging is not specified.

            • ZIP : AWS CodeBuild creates a ZIP file with the raw data in the output bucket.

          • encryptionKey (string) --

            The encryption key for the report's encrypted raw data.

          • encryptionDisabled (boolean) --

            A boolean value that specifies if the results of a report are encrypted.

      • created (datetime) --

        The date and time this ReportGroup was created.

      • lastModified (datetime) --

        The date and time this ReportGroup was last modified.

      • tags (list) --

        A list of tag key and value pairs associated with this report group.

        These tags are available for use by AWS services that support AWS CodeBuild report group tags.

        • (dict) --

          A tag, consisting of a key and a value.

          This tag is available for use by AWS services that support tags in AWS CodeBuild.

          • key (string) --

            The tag's key.

          • value (string) --

            The tag's value.

CreateWebhook (updated) Link ¶
Changes (request, response)
Request
{'buildType': 'BUILD | BUILD_BATCH'}
Response
{'webhook': {'buildType': 'BUILD | BUILD_BATCH'}}

For an existing AWS CodeBuild build project that has its source code stored in a GitHub or Bitbucket repository, enables AWS CodeBuild to start rebuilding the source code every time a code change is pushed to the repository.

Warning

If you enable webhooks for an AWS CodeBuild project, and the project is used as a build step in AWS CodePipeline, then two identical builds are created for each commit. One build is triggered through webhooks, and one through AWS CodePipeline. Because billing is on a per-build basis, you are billed for both builds. Therefore, if you are using AWS CodePipeline, we recommend that you disable webhooks in AWS CodeBuild. In the AWS CodeBuild console, clear the Webhook box. For more information, see step 5 in Change a Build Project's Settings.

See also: AWS API Documentation

Request Syntax

client.create_webhook(
    projectName='string',
    branchFilter='string',
    filterGroups=[
        [
            {
                'type': 'EVENT'|'BASE_REF'|'HEAD_REF'|'ACTOR_ACCOUNT_ID'|'FILE_PATH'|'COMMIT_MESSAGE',
                'pattern': 'string',
                'excludeMatchedPattern': True|False
            },
        ],
    ],
    buildType='BUILD'|'BUILD_BATCH'
)
type projectName

string

param projectName

[REQUIRED]

The name of the AWS CodeBuild project.

type branchFilter

string

param branchFilter

A regular expression used to determine which repository branches are built when a webhook is triggered. If the name of a branch matches the regular expression, then it is built. If branchFilter is empty, then all branches are built.

Note

It is recommended that you use filterGroups instead of branchFilter .

type filterGroups

list

param filterGroups

An array of arrays of WebhookFilter objects used to determine which webhooks are triggered. At least one WebhookFilter in the array must specify EVENT as its type .

For a build to be triggered, at least one filter group in the filterGroups array must pass. For a filter group to pass, each of its filters must pass.

  • (list) --

    • (dict) --

      A filter used to determine which webhooks trigger a build.

      • type (string) -- [REQUIRED]

        The type of webhook filter. There are six webhook filter types: EVENT , ACTOR_ACCOUNT_ID , HEAD_REF , BASE_REF , FILE_PATH , and COMMIT_MESSAGE .

        EVENT

        A webhook event triggers a build when the provided pattern matches one of five event types: PUSH , PULL_REQUEST_CREATED , PULL_REQUEST_UPDATED , PULL_REQUEST_REOPENED , and PULL_REQUEST_MERGED . The EVENT patterns are specified as a comma-separated string. For example, PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED filters all push, pull request created, and pull request updated events.

        Note

        The PULL_REQUEST_REOPENED works with GitHub and GitHub Enterprise only.

        ACTOR_ACCOUNT_ID

        A webhook event triggers a build when a GitHub, GitHub Enterprise, or Bitbucket account ID matches the regular expression pattern .

        HEAD_REF

        A webhook event triggers a build when the head reference matches the regular expression pattern . For example, refs/heads/branch-name and refs/tags/tag-name .

        Works with GitHub and GitHub Enterprise push, GitHub and GitHub Enterprise pull request, Bitbucket push, and Bitbucket pull request events.

        BASE_REF

        A webhook event triggers a build when the base reference matches the regular expression pattern . For example, refs/heads/branch-name .

        Note

        Works with pull request events only.

        FILE_PATH

        A webhook triggers a build when the path of a changed file matches the regular expression pattern .

        Note

        Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.

        COMMIT_MESSAGE

        A webhook triggers a build when the head commit message matches the regular expression pattern .

        Note

        Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.

      • pattern (string) -- [REQUIRED]

        For a WebHookFilter that uses EVENT type, a comma-separated string that specifies one or more events. For example, the webhook filter PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED allows all push, pull request created, and pull request updated events to trigger a build.

        For a WebHookFilter that uses any of the other filter types, a regular expression pattern. For example, a WebHookFilter that uses HEAD_REF for its type and the pattern ^refs/heads/ triggers a build when the head reference is a branch with a reference name refs/heads/branch-name .

      • excludeMatchedPattern (boolean) --

        Used to indicate that the pattern determines which webhook events do not trigger a build. If true, then a webhook event that does not match the pattern triggers a build. If false, then a webhook event that matches the pattern triggers a build.

type buildType

string

param buildType

Specifies the type of build this webhook will trigger.

rtype

dict

returns

Response Syntax

{
    'webhook': {
        'url': 'string',
        'payloadUrl': 'string',
        'secret': 'string',
        'branchFilter': 'string',
        'filterGroups': [
            [
                {
                    'type': 'EVENT'|'BASE_REF'|'HEAD_REF'|'ACTOR_ACCOUNT_ID'|'FILE_PATH'|'COMMIT_MESSAGE',
                    'pattern': 'string',
                    'excludeMatchedPattern': True|False
                },
            ],
        ],
        'buildType': 'BUILD'|'BUILD_BATCH',
        'lastModifiedSecret': datetime(2015, 1, 1)
    }
}

Response Structure

  • (dict) --

    • webhook (dict) --

      Information about a webhook that connects repository events to a build project in AWS CodeBuild.

      • url (string) --

        The URL to the webhook.

      • payloadUrl (string) --

        The AWS CodeBuild endpoint where webhook events are sent.

      • secret (string) --

        The secret token of the associated repository.

        Note

        A Bitbucket webhook does not support secret .

      • branchFilter (string) --

        A regular expression used to determine which repository branches are built when a webhook is triggered. If the name of a branch matches the regular expression, then it is built. If branchFilter is empty, then all branches are built.

        Note

        It is recommended that you use filterGroups instead of branchFilter .

      • filterGroups (list) --

        An array of arrays of WebhookFilter objects used to determine which webhooks are triggered. At least one WebhookFilter in the array must specify EVENT as its type .

        For a build to be triggered, at least one filter group in the filterGroups array must pass. For a filter group to pass, each of its filters must pass.

        • (list) --

          • (dict) --

            A filter used to determine which webhooks trigger a build.

            • type (string) --

              The type of webhook filter. There are six webhook filter types: EVENT , ACTOR_ACCOUNT_ID , HEAD_REF , BASE_REF , FILE_PATH , and COMMIT_MESSAGE .

              EVENT

              A webhook event triggers a build when the provided pattern matches one of five event types: PUSH , PULL_REQUEST_CREATED , PULL_REQUEST_UPDATED , PULL_REQUEST_REOPENED , and PULL_REQUEST_MERGED . The EVENT patterns are specified as a comma-separated string. For example, PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED filters all push, pull request created, and pull request updated events.

              Note

              The PULL_REQUEST_REOPENED works with GitHub and GitHub Enterprise only.

              ACTOR_ACCOUNT_ID

              A webhook event triggers a build when a GitHub, GitHub Enterprise, or Bitbucket account ID matches the regular expression pattern .

              HEAD_REF

              A webhook event triggers a build when the head reference matches the regular expression pattern . For example, refs/heads/branch-name and refs/tags/tag-name .

              Works with GitHub and GitHub Enterprise push, GitHub and GitHub Enterprise pull request, Bitbucket push, and Bitbucket pull request events.

              BASE_REF

              A webhook event triggers a build when the base reference matches the regular expression pattern . For example, refs/heads/branch-name .

              Note

              Works with pull request events only.

              FILE_PATH

              A webhook triggers a build when the path of a changed file matches the regular expression pattern .

              Note

              Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.

              COMMIT_MESSAGE

              A webhook triggers a build when the head commit message matches the regular expression pattern .

              Note

              Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.

            • pattern (string) --

              For a WebHookFilter that uses EVENT type, a comma-separated string that specifies one or more events. For example, the webhook filter PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED allows all push, pull request created, and pull request updated events to trigger a build.

              For a WebHookFilter that uses any of the other filter types, a regular expression pattern. For example, a WebHookFilter that uses HEAD_REF for its type and the pattern ^refs/heads/ triggers a build when the head reference is a branch with a reference name refs/heads/branch-name .

            • excludeMatchedPattern (boolean) --

              Used to indicate that the pattern determines which webhook events do not trigger a build. If true, then a webhook event that does not match the pattern triggers a build. If false, then a webhook event that matches the pattern triggers a build.

      • buildType (string) --

        Specifies the type of build this webhook will trigger.

      • lastModifiedSecret (datetime) --

        A timestamp that indicates the last time a repository's secret token was modified.

StartBuild (updated) Link ¶
Changes (response)
{'build': {'buildBatchArn': 'string'}}

Starts running a build.

See also: AWS API Documentation

Request Syntax

client.start_build(
    projectName='string',
    secondarySourcesOverride=[
        {
            'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
            'location': 'string',
            'gitCloneDepth': 123,
            'gitSubmodulesConfig': {
                'fetchSubmodules': True|False
            },
            'buildspec': 'string',
            'auth': {
                'type': 'OAUTH',
                'resource': 'string'
            },
            'reportBuildStatus': True|False,
            'buildStatusConfig': {
                'context': 'string',
                'targetUrl': 'string'
            },
            'insecureSsl': True|False,
            'sourceIdentifier': 'string'
        },
    ],
    secondarySourcesVersionOverride=[
        {
            'sourceIdentifier': 'string',
            'sourceVersion': 'string'
        },
    ],
    sourceVersion='string',
    artifactsOverride={
        'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
        'location': 'string',
        'path': 'string',
        'namespaceType': 'NONE'|'BUILD_ID',
        'name': 'string',
        'packaging': 'NONE'|'ZIP',
        'overrideArtifactName': True|False,
        'encryptionDisabled': True|False,
        'artifactIdentifier': 'string'
    },
    secondaryArtifactsOverride=[
        {
            'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
            'location': 'string',
            'path': 'string',
            'namespaceType': 'NONE'|'BUILD_ID',
            'name': 'string',
            'packaging': 'NONE'|'ZIP',
            'overrideArtifactName': True|False,
            'encryptionDisabled': True|False,
            'artifactIdentifier': 'string'
        },
    ],
    environmentVariablesOverride=[
        {
            'name': 'string',
            'value': 'string',
            'type': 'PLAINTEXT'|'PARAMETER_STORE'|'SECRETS_MANAGER'
        },
    ],
    sourceTypeOverride='CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
    sourceLocationOverride='string',
    sourceAuthOverride={
        'type': 'OAUTH',
        'resource': 'string'
    },
    gitCloneDepthOverride=123,
    gitSubmodulesConfigOverride={
        'fetchSubmodules': True|False
    },
    buildspecOverride='string',
    insecureSslOverride=True|False,
    reportBuildStatusOverride=True|False,
    buildStatusConfigOverride={
        'context': 'string',
        'targetUrl': 'string'
    },
    environmentTypeOverride='WINDOWS_CONTAINER'|'LINUX_CONTAINER'|'LINUX_GPU_CONTAINER'|'ARM_CONTAINER'|'WINDOWS_SERVER_2019_CONTAINER',
    imageOverride='string',
    computeTypeOverride='BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE'|'BUILD_GENERAL1_2XLARGE',
    certificateOverride='string',
    cacheOverride={
        'type': 'NO_CACHE'|'S3'|'LOCAL',
        'location': 'string',
        'modes': [
            'LOCAL_DOCKER_LAYER_CACHE'|'LOCAL_SOURCE_CACHE'|'LOCAL_CUSTOM_CACHE',
        ]
    },
    serviceRoleOverride='string',
    privilegedModeOverride=True|False,
    timeoutInMinutesOverride=123,
    queuedTimeoutInMinutesOverride=123,
    encryptionKeyOverride='string',
    idempotencyToken='string',
    logsConfigOverride={
        'cloudWatchLogs': {
            'status': 'ENABLED'|'DISABLED',
            'groupName': 'string',
            'streamName': 'string'
        },
        's3Logs': {
            'status': 'ENABLED'|'DISABLED',
            'location': 'string',
            'encryptionDisabled': True|False
        }
    },
    registryCredentialOverride={
        'credential': 'string',
        'credentialProvider': 'SECRETS_MANAGER'
    },
    imagePullCredentialsTypeOverride='CODEBUILD'|'SERVICE_ROLE',
    debugSessionEnabled=True|False
)
type projectName

string

param projectName

[REQUIRED]

The name of the AWS CodeBuild build project to start running a build.

type secondarySourcesOverride

list

param secondarySourcesOverride

An array of ProjectSource objects.

  • (dict) --

    Information about the build input source code for the build project.

    • type (string) -- [REQUIRED]

      The type of repository that contains the source code to be built. Valid values include:

      • BITBUCKET : The source code is in a Bitbucket repository.

      • CODECOMMIT : The source code is in an AWS CodeCommit repository.

      • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

      • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

      • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

      • NO_SOURCE : The project does not have input source code.

      • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

    • location (string) --

      Information about the location of the source code to be built. Valid values include:

      • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

      • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

      • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

        • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

        • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

      • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

      • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

    • gitCloneDepth (integer) --

      Information about the Git clone depth for the build project.

    • gitSubmodulesConfig (dict) --

      Information about the Git submodules configuration for the build project.

      • fetchSubmodules (boolean) -- [REQUIRED]

        Set to true to fetch Git submodules for your AWS CodeBuild build project.

    • buildspec (string) --

      The buildspec file declaration to use for the builds in this build project.

      If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

    • auth (dict) --

      Information about the authorization settings for AWS CodeBuild to access the source code to be built.

      This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

      • type (string) -- [REQUIRED]

        Note

        This data type is deprecated and is no longer accurate or used.

        The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

      • resource (string) --

        The resource value that applies to the specified authorization type.

    • reportBuildStatus (boolean) --

      Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

      Note

      The status of a build triggered by a webhook is always reported to your source provider.

    • buildStatusConfig (dict) --

      Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

      • context (string) --

        Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

        Bitbucket

        This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

        GitHub/GitHub Enterprise Server

        This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

      • targetUrl (string) --

        Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

        Bitbucket

        This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

        GitHub/GitHub Enterprise Server

        This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

    • insecureSsl (boolean) --

      Enable this flag to ignore SSL warnings while connecting to the project source code.

    • sourceIdentifier (string) --

      An identifier for this project source.

type secondarySourcesVersionOverride

list

param secondarySourcesVersionOverride

An array of ProjectSourceVersion objects that specify one or more versions of the project's secondary sources to be used for this build only.

  • (dict) --

    A source identifier and its corresponding version.

    • sourceIdentifier (string) -- [REQUIRED]

      An identifier for a source in the build project.

    • sourceVersion (string) -- [REQUIRED]

      The source version for the corresponding source identifier. If specified, must be one of:

      • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

      • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

      • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

      • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

      For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

type sourceVersion

string

param sourceVersion

The version of the build input to be built, for this build only. If not specified, the latest version is used. If specified, the contents depends on the source provider:

AWS CodeCommit

The commit ID, branch, or Git tag to use.

GitHub

The commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

Bitbucket

The commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

Amazon Simple Storage Service (Amazon S3)

The version ID of the object that represents the build input ZIP file to use.

If sourceVersion is specified at the project level, then this sourceVersion (at the build level) takes precedence.

For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

type artifactsOverride

dict

param artifactsOverride

Build output artifact settings that override, for this build only, the latest ones already defined in the build project.

  • type (string) -- [REQUIRED]

    The type of build output artifact. Valid values include:

    • CODEPIPELINE : The build project has build output generated through AWS CodePipeline.

    Note

    The CODEPIPELINE type is not supported for secondaryArtifacts .

    • NO_ARTIFACTS : The build project does not produce any build output.

    • S3 : The build project stores build output in Amazon Simple Storage Service (Amazon S3).

  • location (string) --

    Information about the build output artifact location:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , this is the name of the output bucket.

  • path (string) --

    Along with namespaceType and name , the pattern that AWS CodeBuild uses to name and store the output artifact:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , this is the path to the output artifact. If path is not specified, path is not used.

    For example, if path is set to MyArtifacts , namespaceType is set to NONE , and name is set to MyArtifact.zip , the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip .

  • namespaceType (string) --

    Along with path and name , the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , valid values include:

      • BUILD_ID : Include the build ID in the location of the build output artifact.

      • NONE : Do not include the build ID. This is the default if namespaceType is not specified.

    For example, if path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

  • name (string) --

    Along with path and namespaceType , the pattern that AWS CodeBuild uses to name and store the output artifact:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.

    For example:

    • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , then the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

    • If path is empty, namespaceType is set to NONE , and name is set to " / ", the output artifact is stored in the root of the output bucket.

    • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to " / ", the output artifact is stored in MyArtifacts/build-ID .

  • packaging (string) --

    The type of build output artifact to create:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , valid values include:

      • NONE : AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.

      • ZIP : AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.

  • overrideArtifactName (boolean) --

    If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

  • encryptionDisabled (boolean) --

    Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon Simple Storage Service (Amazon S3). If this is set with another artifacts type, an invalidInputException is thrown.

  • artifactIdentifier (string) --

    An identifier for this artifact definition.

type secondaryArtifactsOverride

list

param secondaryArtifactsOverride

An array of ProjectArtifacts objects.

  • (dict) --

    Information about the build output artifacts for the build project.

    • type (string) -- [REQUIRED]

      The type of build output artifact. Valid values include:

      • CODEPIPELINE : The build project has build output generated through AWS CodePipeline.

      Note

      The CODEPIPELINE type is not supported for secondaryArtifacts .

      • NO_ARTIFACTS : The build project does not produce any build output.

      • S3 : The build project stores build output in Amazon Simple Storage Service (Amazon S3).

    • location (string) --

      Information about the build output artifact location:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , this is the name of the output bucket.

    • path (string) --

      Along with namespaceType and name , the pattern that AWS CodeBuild uses to name and store the output artifact:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , this is the path to the output artifact. If path is not specified, path is not used.

      For example, if path is set to MyArtifacts , namespaceType is set to NONE , and name is set to MyArtifact.zip , the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip .

    • namespaceType (string) --

      Along with path and name , the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , valid values include:

        • BUILD_ID : Include the build ID in the location of the build output artifact.

        • NONE : Do not include the build ID. This is the default if namespaceType is not specified.

      For example, if path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

    • name (string) --

      Along with path and namespaceType , the pattern that AWS CodeBuild uses to name and store the output artifact:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.

      For example:

      • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , then the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

      • If path is empty, namespaceType is set to NONE , and name is set to " / ", the output artifact is stored in the root of the output bucket.

      • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to " / ", the output artifact is stored in MyArtifacts/build-ID .

    • packaging (string) --

      The type of build output artifact to create:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , valid values include:

        • NONE : AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.

        • ZIP : AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.

    • overrideArtifactName (boolean) --

      If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

    • encryptionDisabled (boolean) --

      Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon Simple Storage Service (Amazon S3). If this is set with another artifacts type, an invalidInputException is thrown.

    • artifactIdentifier (string) --

      An identifier for this artifact definition.

type environmentVariablesOverride

list

param environmentVariablesOverride

A set of environment variables that overrides, for this build only, the latest ones already defined in the build project.

  • (dict) --

    Information about an environment variable for a build project or a build.

    • name (string) -- [REQUIRED]

      The name or key of the environment variable.

    • value (string) -- [REQUIRED]

      The value of the environment variable.

      Warning

      We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. PLAINTEXT environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI). For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE or SECRETS_MANAGER .

    • type (string) --

      The type of environment variable. Valid values include:

type sourceTypeOverride

string

param sourceTypeOverride

A source input type, for this build, that overrides the source input defined in the build project.

type sourceLocationOverride

string

param sourceLocationOverride

A location that overrides, for this build, the source location for the one defined in the build project.

type sourceAuthOverride

dict

param sourceAuthOverride

An authorization type for this build that overrides the one defined in the build project. This override applies only if the build project's source is BitBucket or GitHub.

  • type (string) -- [REQUIRED]

    Note

    This data type is deprecated and is no longer accurate or used.

    The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

  • resource (string) --

    The resource value that applies to the specified authorization type.

type gitCloneDepthOverride

integer

param gitCloneDepthOverride

The user-defined depth of history, with a minimum value of 0, that overrides, for this build only, any previous depth of history defined in the build project.

type gitSubmodulesConfigOverride

dict

param gitSubmodulesConfigOverride

Information about the Git submodules configuration for this build of an AWS CodeBuild build project.

  • fetchSubmodules (boolean) -- [REQUIRED]

    Set to true to fetch Git submodules for your AWS CodeBuild build project.

type buildspecOverride

string

param buildspecOverride

A buildspec file declaration that overrides, for this build only, the latest one already defined in the build project.

If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

type insecureSslOverride

boolean

param insecureSslOverride

Enable this flag to override the insecure SSL setting that is specified in the build project. The insecure SSL setting determines whether to ignore SSL warnings while connecting to the project source code. This override applies only if the build's source is GitHub Enterprise.

type reportBuildStatusOverride

boolean

param reportBuildStatusOverride

Set to true to report to your source provider the status of a build's start and completion. If you use this option with a source provider other than GitHub, GitHub Enterprise, or Bitbucket, an invalidInputException is thrown.

Note

The status of a build triggered by a webhook is always reported to your source provider.

type buildStatusConfigOverride

dict

param buildStatusConfigOverride

Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

  • context (string) --

    Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

    Bitbucket

    This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

    GitHub/GitHub Enterprise Server

    This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

  • targetUrl (string) --

    Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

    Bitbucket

    This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

    GitHub/GitHub Enterprise Server

    This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

type environmentTypeOverride

string

param environmentTypeOverride

A container type for this build that overrides the one specified in the build project.

type imageOverride

string

param imageOverride

The name of an image for this build that overrides the one specified in the build project.

type computeTypeOverride

string

param computeTypeOverride

The name of a compute type for this build that overrides the one specified in the build project.

type certificateOverride

string

param certificateOverride

The name of a certificate for this build that overrides the one specified in the build project.

type cacheOverride

dict

param cacheOverride

A ProjectCache object specified for this build that overrides the one defined in the build project.

  • type (string) -- [REQUIRED]

    The type of cache used by the build project. Valid values include:

    • NO_CACHE : The build project does not use any cache.

    • S3 : The build project reads and writes from and to S3.

    • LOCAL : The build project stores a cache locally on a build host that is only available to that build host.

  • location (string) --

    Information about the cache location:

    • NO_CACHE or LOCAL : This value is ignored.

    • S3 : This is the S3 bucket name/prefix.

  • modes (list) --

    If you use a LOCAL cache, the local cache mode. You can use one or more local cache modes at the same time.

    • LOCAL_SOURCE_CACHE mode caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored.

    • LOCAL_DOCKER_LAYER_CACHE mode caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network.

    Note

    • You can use a Docker layer cache in the Linux environment only.

    • The privileged flag must be set so that your project has the required Docker permissions.

    • You should consider the security implications before you use a Docker layer cache.

    • LOCAL_CUSTOM_CACHE mode caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache:

      • Only directories can be specified for caching. You cannot specify individual files.

      • Symlinks are used to reference cached directories.

      • Cached directories are linked to your build before it downloads its project sources. Cached items are overridden if a source item has the same name. Directories are specified using cache paths in the buildspec file.

    • (string) --

type serviceRoleOverride

string

param serviceRoleOverride

The name of a service role for this build that overrides the one specified in the build project.

type privilegedModeOverride

boolean

param privilegedModeOverride

Enable this flag to override privileged mode in the build project.

type timeoutInMinutesOverride

integer

param timeoutInMinutesOverride

The number of build timeout minutes, from 5 to 480 (8 hours), that overrides, for this build only, the latest setting already defined in the build project.

type queuedTimeoutInMinutesOverride

integer

param queuedTimeoutInMinutesOverride

The number of minutes a build is allowed to be queued before it times out.

type encryptionKeyOverride

string

param encryptionKeyOverride

The AWS Key Management Service (AWS KMS) customer master key (CMK) that overrides the one specified in the build project. The CMK key encrypts the build output artifacts.

Note

You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/alias-name ).

type idempotencyToken

string

param idempotencyToken

A unique, case sensitive identifier you provide to ensure the idempotency of the StartBuild request. The token is included in the StartBuild request and is valid for 5 minutes. If you repeat the StartBuild request with the same token, but change a parameter, AWS CodeBuild returns a parameter mismatch error.

type logsConfigOverride

dict

param logsConfigOverride

Log settings for this build that override the log settings defined in the build project.

  • cloudWatchLogs (dict) --

    Information about Amazon CloudWatch Logs for a build project. Amazon CloudWatch Logs are enabled by default.

    • status (string) -- [REQUIRED]

      The current status of the logs in Amazon CloudWatch Logs for a build project. Valid values are:

      • ENABLED : Amazon CloudWatch Logs are enabled for this build project.

      • DISABLED : Amazon CloudWatch Logs are not enabled for this build project.

    • groupName (string) --

      The group name of the logs in Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

    • streamName (string) --

      The prefix of the stream name of the Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

  • s3Logs (dict) --

    Information about logs built to an S3 bucket for a build project. S3 logs are not enabled by default.

    • status (string) -- [REQUIRED]

      The current status of the S3 build logs. Valid values are:

      • ENABLED : S3 build logs are enabled for this build project.

      • DISABLED : S3 build logs are not enabled for this build project.

    • location (string) --

      The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket , and your path prefix is build-log , then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log .

    • encryptionDisabled (boolean) --

      Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.

type registryCredentialOverride

dict

param registryCredentialOverride

The credentials for access to a private registry.

  • credential (string) -- [REQUIRED]

    The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.

    Note

    The credential can use the name of the credentials only if they exist in your current AWS Region.

  • credentialProvider (string) -- [REQUIRED]

    The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager.

type imagePullCredentialsTypeOverride

string

param imagePullCredentialsTypeOverride

The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values:

CODEBUILD

Specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal.

SERVICE_ROLE

Specifies that AWS CodeBuild uses your build project's service role.

When using a cross-account or private registry image, you must use SERVICE_ROLE credentials. When using an AWS CodeBuild curated image, you must use CODEBUILD credentials.

type debugSessionEnabled

boolean

param debugSessionEnabled

Specifies if session debugging is enabled for this build. For more information, see Viewing a running build in Session Manager.

rtype

dict

returns

Response Syntax

{
    'build': {
        'id': 'string',
        'arn': 'string',
        'buildNumber': 123,
        'startTime': datetime(2015, 1, 1),
        'endTime': datetime(2015, 1, 1),
        'currentPhase': 'string',
        'buildStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
        'sourceVersion': 'string',
        'resolvedSourceVersion': 'string',
        'projectName': 'string',
        'phases': [
            {
                'phaseType': 'SUBMITTED'|'QUEUED'|'PROVISIONING'|'DOWNLOAD_SOURCE'|'INSTALL'|'PRE_BUILD'|'BUILD'|'POST_BUILD'|'UPLOAD_ARTIFACTS'|'FINALIZING'|'COMPLETED',
                'phaseStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
                'startTime': datetime(2015, 1, 1),
                'endTime': datetime(2015, 1, 1),
                'durationInSeconds': 123,
                'contexts': [
                    {
                        'statusCode': 'string',
                        'message': 'string'
                    },
                ]
            },
        ],
        'source': {
            'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
            'location': 'string',
            'gitCloneDepth': 123,
            'gitSubmodulesConfig': {
                'fetchSubmodules': True|False
            },
            'buildspec': 'string',
            'auth': {
                'type': 'OAUTH',
                'resource': 'string'
            },
            'reportBuildStatus': True|False,
            'buildStatusConfig': {
                'context': 'string',
                'targetUrl': 'string'
            },
            'insecureSsl': True|False,
            'sourceIdentifier': 'string'
        },
        'secondarySources': [
            {
                'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
                'location': 'string',
                'gitCloneDepth': 123,
                'gitSubmodulesConfig': {
                    'fetchSubmodules': True|False
                },
                'buildspec': 'string',
                'auth': {
                    'type': 'OAUTH',
                    'resource': 'string'
                },
                'reportBuildStatus': True|False,
                'buildStatusConfig': {
                    'context': 'string',
                    'targetUrl': 'string'
                },
                'insecureSsl': True|False,
                'sourceIdentifier': 'string'
            },
        ],
        'secondarySourceVersions': [
            {
                'sourceIdentifier': 'string',
                'sourceVersion': 'string'
            },
        ],
        'artifacts': {
            'location': 'string',
            'sha256sum': 'string',
            'md5sum': 'string',
            'overrideArtifactName': True|False,
            'encryptionDisabled': True|False,
            'artifactIdentifier': 'string'
        },
        'secondaryArtifacts': [
            {
                'location': 'string',
                'sha256sum': 'string',
                'md5sum': 'string',
                'overrideArtifactName': True|False,
                'encryptionDisabled': True|False,
                'artifactIdentifier': 'string'
            },
        ],
        'cache': {
            'type': 'NO_CACHE'|'S3'|'LOCAL',
            'location': 'string',
            'modes': [
                'LOCAL_DOCKER_LAYER_CACHE'|'LOCAL_SOURCE_CACHE'|'LOCAL_CUSTOM_CACHE',
            ]
        },
        'environment': {
            'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER'|'LINUX_GPU_CONTAINER'|'ARM_CONTAINER'|'WINDOWS_SERVER_2019_CONTAINER',
            'image': 'string',
            'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE'|'BUILD_GENERAL1_2XLARGE',
            'environmentVariables': [
                {
                    'name': 'string',
                    'value': 'string',
                    'type': 'PLAINTEXT'|'PARAMETER_STORE'|'SECRETS_MANAGER'
                },
            ],
            'privilegedMode': True|False,
            'certificate': 'string',
            'registryCredential': {
                'credential': 'string',
                'credentialProvider': 'SECRETS_MANAGER'
            },
            'imagePullCredentialsType': 'CODEBUILD'|'SERVICE_ROLE'
        },
        'serviceRole': 'string',
        'logs': {
            'groupName': 'string',
            'streamName': 'string',
            'deepLink': 'string',
            's3DeepLink': 'string',
            'cloudWatchLogsArn': 'string',
            's3LogsArn': 'string',
            'cloudWatchLogs': {
                'status': 'ENABLED'|'DISABLED',
                'groupName': 'string',
                'streamName': 'string'
            },
            's3Logs': {
                'status': 'ENABLED'|'DISABLED',
                'location': 'string',
                'encryptionDisabled': True|False
            }
        },
        'timeoutInMinutes': 123,
        'queuedTimeoutInMinutes': 123,
        'buildComplete': True|False,
        'initiator': 'string',
        'vpcConfig': {
            'vpcId': 'string',
            'subnets': [
                'string',
            ],
            'securityGroupIds': [
                'string',
            ]
        },
        'networkInterface': {
            'subnetId': 'string',
            'networkInterfaceId': 'string'
        },
        'encryptionKey': 'string',
        'exportedEnvironmentVariables': [
            {
                'name': 'string',
                'value': 'string'
            },
        ],
        'reportArns': [
            'string',
        ],
        'fileSystemLocations': [
            {
                'type': 'EFS',
                'location': 'string',
                'mountPoint': 'string',
                'identifier': 'string',
                'mountOptions': 'string'
            },
        ],
        'debugSession': {
            'sessionEnabled': True|False,
            'sessionTarget': 'string'
        },
        'buildBatchArn': 'string'
    }
}

Response Structure

  • (dict) --

    • build (dict) --

      Information about the build to be run.

      • id (string) --

        The unique ID for the build.

      • arn (string) --

        The Amazon Resource Name (ARN) of the build.

      • buildNumber (integer) --

        The number of the build. For each project, the buildNumber of its first build is 1 . The buildNumber of each subsequent build is incremented by 1 . If a build is deleted, the buildNumber of other builds does not change.

      • startTime (datetime) --

        When the build process started, expressed in Unix time format.

      • endTime (datetime) --

        When the build process ended, expressed in Unix time format.

      • currentPhase (string) --

        The current build phase.

      • buildStatus (string) --

        The current status of the build. Valid values include:

        • FAILED : The build failed.

        • FAULT : The build faulted.

        • IN_PROGRESS : The build is still in progress.

        • STOPPED : The build stopped.

        • SUCCEEDED : The build succeeded.

        • TIMED_OUT : The build timed out.

      • sourceVersion (string) --

        Any version identifier for the version of the source code to be built. If sourceVersion is specified at the project level, then this sourceVersion (at the build level) takes precedence.

        For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

      • resolvedSourceVersion (string) --

        An identifier for the version of this build's source code.

        • For AWS CodeCommit, GitHub, GitHub Enterprise, and BitBucket, the commit ID.

        • For AWS CodePipeline, the source revision provided by AWS CodePipeline.

        • For Amazon Simple Storage Service (Amazon S3), this does not apply.

      • projectName (string) --

        The name of the AWS CodeBuild project.

      • phases (list) --

        Information about all previous build phases that are complete and information about any current build phase that is not yet complete.

        • (dict) --

          Information about a stage for a build.

          • phaseType (string) --

            The name of the build phase. Valid values include:

            • BUILD : Core build activities typically occur in this build phase.

            • COMPLETED : The build has been completed.

            • DOWNLOAD_SOURCE : Source code is being downloaded in this build phase.

            • FINALIZING : The build process is completing in this build phase.

            • INSTALL : Installation activities typically occur in this build phase.

            • POST_BUILD : Post-build activities typically occur in this build phase.

            • PRE_BUILD : Pre-build activities typically occur in this build phase.

            • PROVISIONING : The build environment is being set up.

            • QUEUED : The build has been submitted and is queued behind other submitted builds.

            • SUBMITTED : The build has been submitted.

            • UPLOAD_ARTIFACTS : Build output artifacts are being uploaded to the output location.

          • phaseStatus (string) --

            The current status of the build phase. Valid values include:

            FAILED

            The build phase failed.

            FAULT

            The build phase faulted.

            IN_PROGRESS

            The build phase is still in progress.

            QUEUED

            The build has been submitted and is queued behind other submitted builds.

            STOPPED

            The build phase stopped.

            SUCCEEDED

            The build phase succeeded.

            TIMED_OUT

            The build phase timed out.

          • startTime (datetime) --

            When the build phase started, expressed in Unix time format.

          • endTime (datetime) --

            When the build phase ended, expressed in Unix time format.

          • durationInSeconds (integer) --

            How long, in seconds, between the starting and ending times of the build's phase.

          • contexts (list) --

            Additional information about a build phase, especially to help troubleshoot a failed build.

            • (dict) --

              Additional information about a build phase that has an error. You can use this information for troubleshooting.

              • statusCode (string) --

                The status code for the context of the build phase.

              • message (string) --

                An explanation of the build phase's context. This might include a command ID and an exit code.

      • source (dict) --

        Information about the source code to be built.

        • type (string) --

          The type of repository that contains the source code to be built. Valid values include:

          • BITBUCKET : The source code is in a Bitbucket repository.

          • CODECOMMIT : The source code is in an AWS CodeCommit repository.

          • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

          • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

          • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

          • NO_SOURCE : The project does not have input source code.

          • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

        • location (string) --

          Information about the location of the source code to be built. Valid values include:

          • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

          • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

          • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

            • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

            • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

          • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

        • gitCloneDepth (integer) --

          Information about the Git clone depth for the build project.

        • gitSubmodulesConfig (dict) --

          Information about the Git submodules configuration for the build project.

          • fetchSubmodules (boolean) --

            Set to true to fetch Git submodules for your AWS CodeBuild build project.

        • buildspec (string) --

          The buildspec file declaration to use for the builds in this build project.

          If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

        • auth (dict) --

          Information about the authorization settings for AWS CodeBuild to access the source code to be built.

          This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

          • type (string) --

            Note

            This data type is deprecated and is no longer accurate or used.

            The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

          • resource (string) --

            The resource value that applies to the specified authorization type.

        • reportBuildStatus (boolean) --

          Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

          Note

          The status of a build triggered by a webhook is always reported to your source provider.

        • buildStatusConfig (dict) --

          Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

          • context (string) --

            Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

            Bitbucket

            This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

            GitHub/GitHub Enterprise Server

            This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • targetUrl (string) --

            Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

            Bitbucket

            This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

            GitHub/GitHub Enterprise Server

            This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

        • insecureSsl (boolean) --

          Enable this flag to ignore SSL warnings while connecting to the project source code.

        • sourceIdentifier (string) --

          An identifier for this project source.

      • secondarySources (list) --

        An array of ProjectSource objects.

        • (dict) --

          Information about the build input source code for the build project.

          • type (string) --

            The type of repository that contains the source code to be built. Valid values include:

            • BITBUCKET : The source code is in a Bitbucket repository.

            • CODECOMMIT : The source code is in an AWS CodeCommit repository.

            • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

            • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

            • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

            • NO_SOURCE : The project does not have input source code.

            • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

          • location (string) --

            Information about the location of the source code to be built. Valid values include:

            • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

            • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

            • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

              • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

              • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

            • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

            • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • gitCloneDepth (integer) --

            Information about the Git clone depth for the build project.

          • gitSubmodulesConfig (dict) --

            Information about the Git submodules configuration for the build project.

            • fetchSubmodules (boolean) --

              Set to true to fetch Git submodules for your AWS CodeBuild build project.

          • buildspec (string) --

            The buildspec file declaration to use for the builds in this build project.

            If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

          • auth (dict) --

            Information about the authorization settings for AWS CodeBuild to access the source code to be built.

            This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

            • type (string) --

              Note

              This data type is deprecated and is no longer accurate or used.

              The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

            • resource (string) --

              The resource value that applies to the specified authorization type.

          • reportBuildStatus (boolean) --

            Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

            Note

            The status of a build triggered by a webhook is always reported to your source provider.

          • buildStatusConfig (dict) --

            Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

            • context (string) --

              Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

            • targetUrl (string) --

              Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • insecureSsl (boolean) --

            Enable this flag to ignore SSL warnings while connecting to the project source code.

          • sourceIdentifier (string) --

            An identifier for this project source.

      • secondarySourceVersions (list) --

        An array of ProjectSourceVersion objects. Each ProjectSourceVersion must be one of:

        • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

        • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

        • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

        • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

        • (dict) --

          A source identifier and its corresponding version.

          • sourceIdentifier (string) --

            An identifier for a source in the build project.

          • sourceVersion (string) --

            The source version for the corresponding source identifier. If specified, must be one of:

            • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

            • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

            • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

            • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

            For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

      • artifacts (dict) --

        Information about the output artifacts for the build.

        • location (string) --

          Information about the location of the build artifacts.

        • sha256sum (string) --

          The SHA-256 hash of the build artifact.

          You can use this hash along with a checksum tool to confirm file integrity and authenticity.

          Note

          This value is available only if the build project's packaging value is set to ZIP .

        • md5sum (string) --

          The MD5 hash of the build artifact.

          You can use this hash along with a checksum tool to confirm file integrity and authenticity.

          Note

          This value is available only if the build project's packaging value is set to ZIP .

        • overrideArtifactName (boolean) --

          If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

        • encryptionDisabled (boolean) --

          Information that tells you if encryption for build artifacts is disabled.

        • artifactIdentifier (string) --

          An identifier for this artifact definition.

      • secondaryArtifacts (list) --

        An array of ProjectArtifacts objects.

        • (dict) --

          Information about build output artifacts.

          • location (string) --

            Information about the location of the build artifacts.

          • sha256sum (string) --

            The SHA-256 hash of the build artifact.

            You can use this hash along with a checksum tool to confirm file integrity and authenticity.

            Note

            This value is available only if the build project's packaging value is set to ZIP .

          • md5sum (string) --

            The MD5 hash of the build artifact.

            You can use this hash along with a checksum tool to confirm file integrity and authenticity.

            Note

            This value is available only if the build project's packaging value is set to ZIP .

          • overrideArtifactName (boolean) --

            If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

          • encryptionDisabled (boolean) --

            Information that tells you if encryption for build artifacts is disabled.

          • artifactIdentifier (string) --

            An identifier for this artifact definition.

      • cache (dict) --

        Information about the cache for the build.

        • type (string) --

          The type of cache used by the build project. Valid values include:

          • NO_CACHE : The build project does not use any cache.

          • S3 : The build project reads and writes from and to S3.

          • LOCAL : The build project stores a cache locally on a build host that is only available to that build host.

        • location (string) --

          Information about the cache location:

          • NO_CACHE or LOCAL : This value is ignored.

          • S3 : This is the S3 bucket name/prefix.

        • modes (list) --

          If you use a LOCAL cache, the local cache mode. You can use one or more local cache modes at the same time.

          • LOCAL_SOURCE_CACHE mode caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored.

          • LOCAL_DOCKER_LAYER_CACHE mode caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network.

          Note

          • You can use a Docker layer cache in the Linux environment only.

          • The privileged flag must be set so that your project has the required Docker permissions.

          • You should consider the security implications before you use a Docker layer cache.

          • LOCAL_CUSTOM_CACHE mode caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache:

            • Only directories can be specified for caching. You cannot specify individual files.

            • Symlinks are used to reference cached directories.

            • Cached directories are linked to your build before it downloads its project sources. Cached items are overridden if a source item has the same name. Directories are specified using cache paths in the buildspec file.

          • (string) --

      • environment (dict) --

        Information about the build environment for this build.

        • type (string) --

          The type of build environment to use for related builds.

          • The environment type ARM_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Sydney), and EU (Frankfurt).

          • The environment type LINUX_CONTAINER with compute type build.general1.2xlarge is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and China (Ningxia).

          • The environment type LINUX_GPU_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney) , China (Beijing), and China (Ningxia).

        • image (string) --

          The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats:

          • For an image tag: registry/repository:tag . For example, to specify an image with the tag "latest," use registry/repository:latest .

          • For an image digest: registry/repository@digest . For example, to specify an image with the digest "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf," use registry/repository@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf .

        • computeType (string) --

          Information about the compute resources the build project uses. Available values include:

          • BUILD_GENERAL1_SMALL : Use up to 3 GB memory and 2 vCPUs for builds.

          • BUILD_GENERAL1_MEDIUM : Use up to 7 GB memory and 4 vCPUs for builds.

          • BUILD_GENERAL1_LARGE : Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type.

          • BUILD_GENERAL1_2XLARGE : Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed.

          If you use BUILD_GENERAL1_LARGE :

          • For environment type LINUX_CONTAINER , you can use up to 15 GB memory and 8 vCPUs for builds.

          • For environment type LINUX_GPU_CONTAINER , you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds.

          • For environment type ARM_CONTAINER , you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds.

          For more information, see Build Environment Compute Types in the AWS CodeBuild User Guide.

        • environmentVariables (list) --

          A set of environment variables to make available to builds for this build project.

          • (dict) --

            Information about an environment variable for a build project or a build.

            • name (string) --

              The name or key of the environment variable.

            • value (string) --

              The value of the environment variable.

              Warning

              We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. PLAINTEXT environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI). For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE or SECRETS_MANAGER .

            • type (string) --

              The type of environment variable. Valid values include:

        • privilegedMode (boolean) --

          Enables running the Docker daemon inside a Docker container. Set to true only if the build project is used to build Docker images. Otherwise, a build that attempts to interact with the Docker daemon fails. The default setting is false .

          You can initialize the Docker daemon during the install phase of your build by adding one of the following sets of commands to the install phase of your buildspec file:

          If the operating system's base image is Ubuntu Linux:

          - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

          - timeout 15 sh -c "until docker info; do echo .; sleep 1; done"

          If the operating system's base image is Alpine Linux and the previous command does not work, add the -t argument to timeout :

          - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

          - timeout -t 15 sh -c "until docker info; do echo .; sleep 1; done"

        • certificate (string) --

          The certificate to use with this build project.

        • registryCredential (dict) --

          The credentials for access to a private registry.

          • credential (string) --

            The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.

            Note

            The credential can use the name of the credentials only if they exist in your current AWS Region.

          • credentialProvider (string) --

            The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager.

        • imagePullCredentialsType (string) --

          The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values:

          • CODEBUILD specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal.

          • SERVICE_ROLE specifies that AWS CodeBuild uses your build project's service role.

          When you use a cross-account or private registry image, you must use SERVICE_ROLE credentials. When you use an AWS CodeBuild curated image, you must use CODEBUILD credentials.

      • serviceRole (string) --

        The name of a service role used for this build.

      • logs (dict) --

        Information about the build's logs in Amazon CloudWatch Logs.

        • groupName (string) --

          The name of the Amazon CloudWatch Logs group for the build logs.

        • streamName (string) --

          The name of the Amazon CloudWatch Logs stream for the build logs.

        • deepLink (string) --

          The URL to an individual build log in Amazon CloudWatch Logs.

        • s3DeepLink (string) --

          The URL to a build log in an S3 bucket.

        • cloudWatchLogsArn (string) --

          The ARN of Amazon CloudWatch Logs for a build project. Its format is arn:${Partition}:logs:${Region}:${Account}:log-group:${LogGroupName}:log-stream:${LogStreamName} . For more information, see Resources Defined by Amazon CloudWatch Logs.

        • s3LogsArn (string) --

          The ARN of S3 logs for a build project. Its format is arn:${Partition}:s3:::${BucketName}/${ObjectName} . For more information, see Resources Defined by Amazon S3.

        • cloudWatchLogs (dict) --

          Information about Amazon CloudWatch Logs for a build project.

          • status (string) --

            The current status of the logs in Amazon CloudWatch Logs for a build project. Valid values are:

            • ENABLED : Amazon CloudWatch Logs are enabled for this build project.

            • DISABLED : Amazon CloudWatch Logs are not enabled for this build project.

          • groupName (string) --

            The group name of the logs in Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

          • streamName (string) --

            The prefix of the stream name of the Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

        • s3Logs (dict) --

          Information about S3 logs for a build project.

          • status (string) --

            The current status of the S3 build logs. Valid values are:

            • ENABLED : S3 build logs are enabled for this build project.

            • DISABLED : S3 build logs are not enabled for this build project.

          • location (string) --

            The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket , and your path prefix is build-log , then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log .

          • encryptionDisabled (boolean) --

            Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.

      • timeoutInMinutes (integer) --

        How long, in minutes, for AWS CodeBuild to wait before timing out this build if it does not get marked as completed.

      • queuedTimeoutInMinutes (integer) --

        The number of minutes a build is allowed to be queued before it times out.

      • buildComplete (boolean) --

        Whether the build is complete. True if complete; otherwise, false.

      • initiator (string) --

        The entity that started the build. Valid values include:

        • If AWS CodePipeline started the build, the pipeline's name (for example, codepipeline/my-demo-pipeline ).

        • If an AWS Identity and Access Management (IAM) user started the build, the user's name (for example, MyUserName ).

        • If the Jenkins plugin for AWS CodeBuild started the build, the string CodeBuild-Jenkins-Plugin .

      • vpcConfig (dict) --

        If your AWS CodeBuild project accesses resources in an Amazon VPC, you provide this parameter that identifies the VPC ID and the list of security group IDs and subnet IDs. The security groups and subnets must belong to the same VPC. You must provide at least one security group and one subnet ID.

        • vpcId (string) --

          The ID of the Amazon VPC.

        • subnets (list) --

          A list of one or more subnet IDs in your Amazon VPC.

          • (string) --

        • securityGroupIds (list) --

          A list of one or more security groups IDs in your Amazon VPC.

          • (string) --

      • networkInterface (dict) --

        Describes a network interface.

        • subnetId (string) --

          The ID of the subnet.

        • networkInterfaceId (string) --

          The ID of the network interface.

      • encryptionKey (string) --

        The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts.

        Note

        You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

        You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/alias-name ).

      • exportedEnvironmentVariables (list) --

        A list of exported environment variables for this build.

        • (dict) --

          Information about an exported environment variable.

          • name (string) --

            The name of this exported environment variable.

          • value (string) --

            The value assigned to this exported environment variable.

            Note

            During a build, the value of a variable is available starting with the install phase. It can be updated between the start of the install phase and the end of the post_build phase. After the post_build phase ends, the value of exported variables cannot change.

      • reportArns (list) --

        An array of the ARNs associated with this build's reports.

        • (string) --

      • fileSystemLocations (list) --

        An array of ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier , location , mountOptions , mountPoint , and type of a file system created using Amazon Elastic File System.

        • (dict) --

          Information about a file system created by Amazon Elastic File System (EFS). For more information, see What Is Amazon Elastic File System?

          • type (string) --

            The type of the file system. The one supported type is EFS .

          • location (string) --

            A string that specifies the location of the file system created by Amazon EFS. Its format is efs-dns-name:/directory-path . You can find the DNS name of file system when you view it in the AWS EFS console. The directory path is a path to a directory in the file system that CodeBuild mounts. For example, if the DNS name of a file system is fs-abcd1234.efs.us-west-2.amazonaws.com , and its mount directory is my-efs-mount-directory , then the location is fs-abcd1234.efs.us-west-2.amazonaws.com:/my-efs-mount-directory .

            The directory path in the format efs-dns-name:/directory-path is optional. If you do not specify a directory path, the location is only the DNS name and CodeBuild mounts the entire file system.

          • mountPoint (string) --

            The location in the container where you mount the file system.

          • identifier (string) --

            The name used to access a file system created by Amazon EFS. CodeBuild creates an environment variable by appending the identifier in all capital letters to CODEBUILD_ . For example, if you specify my-efs for identifier , a new environment variable is create named CODEBUILD_MY-EFS .

            The identifier is used to mount your file system.

          • mountOptions (string) --

            The mount options for a file system created by AWS EFS. The default mount options used by CodeBuild are nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 . For more information, see Recommended NFS Mount Options.

      • debugSession (dict) --

        Contains information about the debug session for this build.

        • sessionEnabled (boolean) --

          Specifies if session debugging is enabled for this build.

        • sessionTarget (string) --

          Contains the identifier of the Session Manager session used for the build. To work with the paused build, you open this session to examine, control, and resume the build.

      • buildBatchArn (string) --

        The ARN of the batch build that this build is a member of, if applicable.

StopBuild (updated) Link ¶
Changes (response)
{'build': {'buildBatchArn': 'string'}}

Attempts to stop running a build.

See also: AWS API Documentation

Request Syntax

client.stop_build(
    id='string'
)
type id

string

param id

[REQUIRED]

The ID of the build.

rtype

dict

returns

Response Syntax

{
    'build': {
        'id': 'string',
        'arn': 'string',
        'buildNumber': 123,
        'startTime': datetime(2015, 1, 1),
        'endTime': datetime(2015, 1, 1),
        'currentPhase': 'string',
        'buildStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
        'sourceVersion': 'string',
        'resolvedSourceVersion': 'string',
        'projectName': 'string',
        'phases': [
            {
                'phaseType': 'SUBMITTED'|'QUEUED'|'PROVISIONING'|'DOWNLOAD_SOURCE'|'INSTALL'|'PRE_BUILD'|'BUILD'|'POST_BUILD'|'UPLOAD_ARTIFACTS'|'FINALIZING'|'COMPLETED',
                'phaseStatus': 'SUCCEEDED'|'FAILED'|'FAULT'|'TIMED_OUT'|'IN_PROGRESS'|'STOPPED',
                'startTime': datetime(2015, 1, 1),
                'endTime': datetime(2015, 1, 1),
                'durationInSeconds': 123,
                'contexts': [
                    {
                        'statusCode': 'string',
                        'message': 'string'
                    },
                ]
            },
        ],
        'source': {
            'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
            'location': 'string',
            'gitCloneDepth': 123,
            'gitSubmodulesConfig': {
                'fetchSubmodules': True|False
            },
            'buildspec': 'string',
            'auth': {
                'type': 'OAUTH',
                'resource': 'string'
            },
            'reportBuildStatus': True|False,
            'buildStatusConfig': {
                'context': 'string',
                'targetUrl': 'string'
            },
            'insecureSsl': True|False,
            'sourceIdentifier': 'string'
        },
        'secondarySources': [
            {
                'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
                'location': 'string',
                'gitCloneDepth': 123,
                'gitSubmodulesConfig': {
                    'fetchSubmodules': True|False
                },
                'buildspec': 'string',
                'auth': {
                    'type': 'OAUTH',
                    'resource': 'string'
                },
                'reportBuildStatus': True|False,
                'buildStatusConfig': {
                    'context': 'string',
                    'targetUrl': 'string'
                },
                'insecureSsl': True|False,
                'sourceIdentifier': 'string'
            },
        ],
        'secondarySourceVersions': [
            {
                'sourceIdentifier': 'string',
                'sourceVersion': 'string'
            },
        ],
        'artifacts': {
            'location': 'string',
            'sha256sum': 'string',
            'md5sum': 'string',
            'overrideArtifactName': True|False,
            'encryptionDisabled': True|False,
            'artifactIdentifier': 'string'
        },
        'secondaryArtifacts': [
            {
                'location': 'string',
                'sha256sum': 'string',
                'md5sum': 'string',
                'overrideArtifactName': True|False,
                'encryptionDisabled': True|False,
                'artifactIdentifier': 'string'
            },
        ],
        'cache': {
            'type': 'NO_CACHE'|'S3'|'LOCAL',
            'location': 'string',
            'modes': [
                'LOCAL_DOCKER_LAYER_CACHE'|'LOCAL_SOURCE_CACHE'|'LOCAL_CUSTOM_CACHE',
            ]
        },
        'environment': {
            'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER'|'LINUX_GPU_CONTAINER'|'ARM_CONTAINER'|'WINDOWS_SERVER_2019_CONTAINER',
            'image': 'string',
            'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE'|'BUILD_GENERAL1_2XLARGE',
            'environmentVariables': [
                {
                    'name': 'string',
                    'value': 'string',
                    'type': 'PLAINTEXT'|'PARAMETER_STORE'|'SECRETS_MANAGER'
                },
            ],
            'privilegedMode': True|False,
            'certificate': 'string',
            'registryCredential': {
                'credential': 'string',
                'credentialProvider': 'SECRETS_MANAGER'
            },
            'imagePullCredentialsType': 'CODEBUILD'|'SERVICE_ROLE'
        },
        'serviceRole': 'string',
        'logs': {
            'groupName': 'string',
            'streamName': 'string',
            'deepLink': 'string',
            's3DeepLink': 'string',
            'cloudWatchLogsArn': 'string',
            's3LogsArn': 'string',
            'cloudWatchLogs': {
                'status': 'ENABLED'|'DISABLED',
                'groupName': 'string',
                'streamName': 'string'
            },
            's3Logs': {
                'status': 'ENABLED'|'DISABLED',
                'location': 'string',
                'encryptionDisabled': True|False
            }
        },
        'timeoutInMinutes': 123,
        'queuedTimeoutInMinutes': 123,
        'buildComplete': True|False,
        'initiator': 'string',
        'vpcConfig': {
            'vpcId': 'string',
            'subnets': [
                'string',
            ],
            'securityGroupIds': [
                'string',
            ]
        },
        'networkInterface': {
            'subnetId': 'string',
            'networkInterfaceId': 'string'
        },
        'encryptionKey': 'string',
        'exportedEnvironmentVariables': [
            {
                'name': 'string',
                'value': 'string'
            },
        ],
        'reportArns': [
            'string',
        ],
        'fileSystemLocations': [
            {
                'type': 'EFS',
                'location': 'string',
                'mountPoint': 'string',
                'identifier': 'string',
                'mountOptions': 'string'
            },
        ],
        'debugSession': {
            'sessionEnabled': True|False,
            'sessionTarget': 'string'
        },
        'buildBatchArn': 'string'
    }
}

Response Structure

  • (dict) --

    • build (dict) --

      Information about the build.

      • id (string) --

        The unique ID for the build.

      • arn (string) --

        The Amazon Resource Name (ARN) of the build.

      • buildNumber (integer) --

        The number of the build. For each project, the buildNumber of its first build is 1 . The buildNumber of each subsequent build is incremented by 1 . If a build is deleted, the buildNumber of other builds does not change.

      • startTime (datetime) --

        When the build process started, expressed in Unix time format.

      • endTime (datetime) --

        When the build process ended, expressed in Unix time format.

      • currentPhase (string) --

        The current build phase.

      • buildStatus (string) --

        The current status of the build. Valid values include:

        • FAILED : The build failed.

        • FAULT : The build faulted.

        • IN_PROGRESS : The build is still in progress.

        • STOPPED : The build stopped.

        • SUCCEEDED : The build succeeded.

        • TIMED_OUT : The build timed out.

      • sourceVersion (string) --

        Any version identifier for the version of the source code to be built. If sourceVersion is specified at the project level, then this sourceVersion (at the build level) takes precedence.

        For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

      • resolvedSourceVersion (string) --

        An identifier for the version of this build's source code.

        • For AWS CodeCommit, GitHub, GitHub Enterprise, and BitBucket, the commit ID.

        • For AWS CodePipeline, the source revision provided by AWS CodePipeline.

        • For Amazon Simple Storage Service (Amazon S3), this does not apply.

      • projectName (string) --

        The name of the AWS CodeBuild project.

      • phases (list) --

        Information about all previous build phases that are complete and information about any current build phase that is not yet complete.

        • (dict) --

          Information about a stage for a build.

          • phaseType (string) --

            The name of the build phase. Valid values include:

            • BUILD : Core build activities typically occur in this build phase.

            • COMPLETED : The build has been completed.

            • DOWNLOAD_SOURCE : Source code is being downloaded in this build phase.

            • FINALIZING : The build process is completing in this build phase.

            • INSTALL : Installation activities typically occur in this build phase.

            • POST_BUILD : Post-build activities typically occur in this build phase.

            • PRE_BUILD : Pre-build activities typically occur in this build phase.

            • PROVISIONING : The build environment is being set up.

            • QUEUED : The build has been submitted and is queued behind other submitted builds.

            • SUBMITTED : The build has been submitted.

            • UPLOAD_ARTIFACTS : Build output artifacts are being uploaded to the output location.

          • phaseStatus (string) --

            The current status of the build phase. Valid values include:

            FAILED

            The build phase failed.

            FAULT

            The build phase faulted.

            IN_PROGRESS

            The build phase is still in progress.

            QUEUED

            The build has been submitted and is queued behind other submitted builds.

            STOPPED

            The build phase stopped.

            SUCCEEDED

            The build phase succeeded.

            TIMED_OUT

            The build phase timed out.

          • startTime (datetime) --

            When the build phase started, expressed in Unix time format.

          • endTime (datetime) --

            When the build phase ended, expressed in Unix time format.

          • durationInSeconds (integer) --

            How long, in seconds, between the starting and ending times of the build's phase.

          • contexts (list) --

            Additional information about a build phase, especially to help troubleshoot a failed build.

            • (dict) --

              Additional information about a build phase that has an error. You can use this information for troubleshooting.

              • statusCode (string) --

                The status code for the context of the build phase.

              • message (string) --

                An explanation of the build phase's context. This might include a command ID and an exit code.

      • source (dict) --

        Information about the source code to be built.

        • type (string) --

          The type of repository that contains the source code to be built. Valid values include:

          • BITBUCKET : The source code is in a Bitbucket repository.

          • CODECOMMIT : The source code is in an AWS CodeCommit repository.

          • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

          • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

          • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

          • NO_SOURCE : The project does not have input source code.

          • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

        • location (string) --

          Information about the location of the source code to be built. Valid values include:

          • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

          • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

          • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

            • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

            • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

          • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

        • gitCloneDepth (integer) --

          Information about the Git clone depth for the build project.

        • gitSubmodulesConfig (dict) --

          Information about the Git submodules configuration for the build project.

          • fetchSubmodules (boolean) --

            Set to true to fetch Git submodules for your AWS CodeBuild build project.

        • buildspec (string) --

          The buildspec file declaration to use for the builds in this build project.

          If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

        • auth (dict) --

          Information about the authorization settings for AWS CodeBuild to access the source code to be built.

          This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

          • type (string) --

            Note

            This data type is deprecated and is no longer accurate or used.

            The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

          • resource (string) --

            The resource value that applies to the specified authorization type.

        • reportBuildStatus (boolean) --

          Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

          Note

          The status of a build triggered by a webhook is always reported to your source provider.

        • buildStatusConfig (dict) --

          Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

          • context (string) --

            Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

            Bitbucket

            This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

            GitHub/GitHub Enterprise Server

            This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • targetUrl (string) --

            Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

            Bitbucket

            This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

            GitHub/GitHub Enterprise Server

            This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

        • insecureSsl (boolean) --

          Enable this flag to ignore SSL warnings while connecting to the project source code.

        • sourceIdentifier (string) --

          An identifier for this project source.

      • secondarySources (list) --

        An array of ProjectSource objects.

        • (dict) --

          Information about the build input source code for the build project.

          • type (string) --

            The type of repository that contains the source code to be built. Valid values include:

            • BITBUCKET : The source code is in a Bitbucket repository.

            • CODECOMMIT : The source code is in an AWS CodeCommit repository.

            • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

            • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

            • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

            • NO_SOURCE : The project does not have input source code.

            • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

          • location (string) --

            Information about the location of the source code to be built. Valid values include:

            • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

            • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

            • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

              • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

              • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

            • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

            • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • gitCloneDepth (integer) --

            Information about the Git clone depth for the build project.

          • gitSubmodulesConfig (dict) --

            Information about the Git submodules configuration for the build project.

            • fetchSubmodules (boolean) --

              Set to true to fetch Git submodules for your AWS CodeBuild build project.

          • buildspec (string) --

            The buildspec file declaration to use for the builds in this build project.

            If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

          • auth (dict) --

            Information about the authorization settings for AWS CodeBuild to access the source code to be built.

            This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

            • type (string) --

              Note

              This data type is deprecated and is no longer accurate or used.

              The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

            • resource (string) --

              The resource value that applies to the specified authorization type.

          • reportBuildStatus (boolean) --

            Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

            Note

            The status of a build triggered by a webhook is always reported to your source provider.

          • buildStatusConfig (dict) --

            Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

            • context (string) --

              Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

            • targetUrl (string) --

              Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • insecureSsl (boolean) --

            Enable this flag to ignore SSL warnings while connecting to the project source code.

          • sourceIdentifier (string) --

            An identifier for this project source.

      • secondarySourceVersions (list) --

        An array of ProjectSourceVersion objects. Each ProjectSourceVersion must be one of:

        • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

        • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

        • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

        • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

        • (dict) --

          A source identifier and its corresponding version.

          • sourceIdentifier (string) --

            An identifier for a source in the build project.

          • sourceVersion (string) --

            The source version for the corresponding source identifier. If specified, must be one of:

            • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

            • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

            • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

            • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

            For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

      • artifacts (dict) --

        Information about the output artifacts for the build.

        • location (string) --

          Information about the location of the build artifacts.

        • sha256sum (string) --

          The SHA-256 hash of the build artifact.

          You can use this hash along with a checksum tool to confirm file integrity and authenticity.

          Note

          This value is available only if the build project's packaging value is set to ZIP .

        • md5sum (string) --

          The MD5 hash of the build artifact.

          You can use this hash along with a checksum tool to confirm file integrity and authenticity.

          Note

          This value is available only if the build project's packaging value is set to ZIP .

        • overrideArtifactName (boolean) --

          If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

        • encryptionDisabled (boolean) --

          Information that tells you if encryption for build artifacts is disabled.

        • artifactIdentifier (string) --

          An identifier for this artifact definition.

      • secondaryArtifacts (list) --

        An array of ProjectArtifacts objects.

        • (dict) --

          Information about build output artifacts.

          • location (string) --

            Information about the location of the build artifacts.

          • sha256sum (string) --

            The SHA-256 hash of the build artifact.

            You can use this hash along with a checksum tool to confirm file integrity and authenticity.

            Note

            This value is available only if the build project's packaging value is set to ZIP .

          • md5sum (string) --

            The MD5 hash of the build artifact.

            You can use this hash along with a checksum tool to confirm file integrity and authenticity.

            Note

            This value is available only if the build project's packaging value is set to ZIP .

          • overrideArtifactName (boolean) --

            If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

          • encryptionDisabled (boolean) --

            Information that tells you if encryption for build artifacts is disabled.

          • artifactIdentifier (string) --

            An identifier for this artifact definition.

      • cache (dict) --

        Information about the cache for the build.

        • type (string) --

          The type of cache used by the build project. Valid values include:

          • NO_CACHE : The build project does not use any cache.

          • S3 : The build project reads and writes from and to S3.

          • LOCAL : The build project stores a cache locally on a build host that is only available to that build host.

        • location (string) --

          Information about the cache location:

          • NO_CACHE or LOCAL : This value is ignored.

          • S3 : This is the S3 bucket name/prefix.

        • modes (list) --

          If you use a LOCAL cache, the local cache mode. You can use one or more local cache modes at the same time.

          • LOCAL_SOURCE_CACHE mode caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored.

          • LOCAL_DOCKER_LAYER_CACHE mode caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network.

          Note

          • You can use a Docker layer cache in the Linux environment only.

          • The privileged flag must be set so that your project has the required Docker permissions.

          • You should consider the security implications before you use a Docker layer cache.

          • LOCAL_CUSTOM_CACHE mode caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache:

            • Only directories can be specified for caching. You cannot specify individual files.

            • Symlinks are used to reference cached directories.

            • Cached directories are linked to your build before it downloads its project sources. Cached items are overridden if a source item has the same name. Directories are specified using cache paths in the buildspec file.

          • (string) --

      • environment (dict) --

        Information about the build environment for this build.

        • type (string) --

          The type of build environment to use for related builds.

          • The environment type ARM_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Sydney), and EU (Frankfurt).

          • The environment type LINUX_CONTAINER with compute type build.general1.2xlarge is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and China (Ningxia).

          • The environment type LINUX_GPU_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney) , China (Beijing), and China (Ningxia).

        • image (string) --

          The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats:

          • For an image tag: registry/repository:tag . For example, to specify an image with the tag "latest," use registry/repository:latest .

          • For an image digest: registry/repository@digest . For example, to specify an image with the digest "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf," use registry/repository@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf .

        • computeType (string) --

          Information about the compute resources the build project uses. Available values include:

          • BUILD_GENERAL1_SMALL : Use up to 3 GB memory and 2 vCPUs for builds.

          • BUILD_GENERAL1_MEDIUM : Use up to 7 GB memory and 4 vCPUs for builds.

          • BUILD_GENERAL1_LARGE : Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type.

          • BUILD_GENERAL1_2XLARGE : Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed.

          If you use BUILD_GENERAL1_LARGE :

          • For environment type LINUX_CONTAINER , you can use up to 15 GB memory and 8 vCPUs for builds.

          • For environment type LINUX_GPU_CONTAINER , you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds.

          • For environment type ARM_CONTAINER , you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds.

          For more information, see Build Environment Compute Types in the AWS CodeBuild User Guide.

        • environmentVariables (list) --

          A set of environment variables to make available to builds for this build project.

          • (dict) --

            Information about an environment variable for a build project or a build.

            • name (string) --

              The name or key of the environment variable.

            • value (string) --

              The value of the environment variable.

              Warning

              We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. PLAINTEXT environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI). For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE or SECRETS_MANAGER .

            • type (string) --

              The type of environment variable. Valid values include:

        • privilegedMode (boolean) --

          Enables running the Docker daemon inside a Docker container. Set to true only if the build project is used to build Docker images. Otherwise, a build that attempts to interact with the Docker daemon fails. The default setting is false .

          You can initialize the Docker daemon during the install phase of your build by adding one of the following sets of commands to the install phase of your buildspec file:

          If the operating system's base image is Ubuntu Linux:

          - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

          - timeout 15 sh -c "until docker info; do echo .; sleep 1; done"

          If the operating system's base image is Alpine Linux and the previous command does not work, add the -t argument to timeout :

          - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

          - timeout -t 15 sh -c "until docker info; do echo .; sleep 1; done"

        • certificate (string) --

          The certificate to use with this build project.

        • registryCredential (dict) --

          The credentials for access to a private registry.

          • credential (string) --

            The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.

            Note

            The credential can use the name of the credentials only if they exist in your current AWS Region.

          • credentialProvider (string) --

            The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager.

        • imagePullCredentialsType (string) --

          The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values:

          • CODEBUILD specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal.

          • SERVICE_ROLE specifies that AWS CodeBuild uses your build project's service role.

          When you use a cross-account or private registry image, you must use SERVICE_ROLE credentials. When you use an AWS CodeBuild curated image, you must use CODEBUILD credentials.

      • serviceRole (string) --

        The name of a service role used for this build.

      • logs (dict) --

        Information about the build's logs in Amazon CloudWatch Logs.

        • groupName (string) --

          The name of the Amazon CloudWatch Logs group for the build logs.

        • streamName (string) --

          The name of the Amazon CloudWatch Logs stream for the build logs.

        • deepLink (string) --

          The URL to an individual build log in Amazon CloudWatch Logs.

        • s3DeepLink (string) --

          The URL to a build log in an S3 bucket.

        • cloudWatchLogsArn (string) --

          The ARN of Amazon CloudWatch Logs for a build project. Its format is arn:${Partition}:logs:${Region}:${Account}:log-group:${LogGroupName}:log-stream:${LogStreamName} . For more information, see Resources Defined by Amazon CloudWatch Logs.

        • s3LogsArn (string) --

          The ARN of S3 logs for a build project. Its format is arn:${Partition}:s3:::${BucketName}/${ObjectName} . For more information, see Resources Defined by Amazon S3.

        • cloudWatchLogs (dict) --

          Information about Amazon CloudWatch Logs for a build project.

          • status (string) --

            The current status of the logs in Amazon CloudWatch Logs for a build project. Valid values are:

            • ENABLED : Amazon CloudWatch Logs are enabled for this build project.

            • DISABLED : Amazon CloudWatch Logs are not enabled for this build project.

          • groupName (string) --

            The group name of the logs in Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

          • streamName (string) --

            The prefix of the stream name of the Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

        • s3Logs (dict) --

          Information about S3 logs for a build project.

          • status (string) --

            The current status of the S3 build logs. Valid values are:

            • ENABLED : S3 build logs are enabled for this build project.

            • DISABLED : S3 build logs are not enabled for this build project.

          • location (string) --

            The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket , and your path prefix is build-log , then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log .

          • encryptionDisabled (boolean) --

            Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.

      • timeoutInMinutes (integer) --

        How long, in minutes, for AWS CodeBuild to wait before timing out this build if it does not get marked as completed.

      • queuedTimeoutInMinutes (integer) --

        The number of minutes a build is allowed to be queued before it times out.

      • buildComplete (boolean) --

        Whether the build is complete. True if complete; otherwise, false.

      • initiator (string) --

        The entity that started the build. Valid values include:

        • If AWS CodePipeline started the build, the pipeline's name (for example, codepipeline/my-demo-pipeline ).

        • If an AWS Identity and Access Management (IAM) user started the build, the user's name (for example, MyUserName ).

        • If the Jenkins plugin for AWS CodeBuild started the build, the string CodeBuild-Jenkins-Plugin .

      • vpcConfig (dict) --

        If your AWS CodeBuild project accesses resources in an Amazon VPC, you provide this parameter that identifies the VPC ID and the list of security group IDs and subnet IDs. The security groups and subnets must belong to the same VPC. You must provide at least one security group and one subnet ID.

        • vpcId (string) --

          The ID of the Amazon VPC.

        • subnets (list) --

          A list of one or more subnet IDs in your Amazon VPC.

          • (string) --

        • securityGroupIds (list) --

          A list of one or more security groups IDs in your Amazon VPC.

          • (string) --

      • networkInterface (dict) --

        Describes a network interface.

        • subnetId (string) --

          The ID of the subnet.

        • networkInterfaceId (string) --

          The ID of the network interface.

      • encryptionKey (string) --

        The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts.

        Note

        You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

        You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/alias-name ).

      • exportedEnvironmentVariables (list) --

        A list of exported environment variables for this build.

        • (dict) --

          Information about an exported environment variable.

          • name (string) --

            The name of this exported environment variable.

          • value (string) --

            The value assigned to this exported environment variable.

            Note

            During a build, the value of a variable is available starting with the install phase. It can be updated between the start of the install phase and the end of the post_build phase. After the post_build phase ends, the value of exported variables cannot change.

      • reportArns (list) --

        An array of the ARNs associated with this build's reports.

        • (string) --

      • fileSystemLocations (list) --

        An array of ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier , location , mountOptions , mountPoint , and type of a file system created using Amazon Elastic File System.

        • (dict) --

          Information about a file system created by Amazon Elastic File System (EFS). For more information, see What Is Amazon Elastic File System?

          • type (string) --

            The type of the file system. The one supported type is EFS .

          • location (string) --

            A string that specifies the location of the file system created by Amazon EFS. Its format is efs-dns-name:/directory-path . You can find the DNS name of file system when you view it in the AWS EFS console. The directory path is a path to a directory in the file system that CodeBuild mounts. For example, if the DNS name of a file system is fs-abcd1234.efs.us-west-2.amazonaws.com , and its mount directory is my-efs-mount-directory , then the location is fs-abcd1234.efs.us-west-2.amazonaws.com:/my-efs-mount-directory .

            The directory path in the format efs-dns-name:/directory-path is optional. If you do not specify a directory path, the location is only the DNS name and CodeBuild mounts the entire file system.

          • mountPoint (string) --

            The location in the container where you mount the file system.

          • identifier (string) --

            The name used to access a file system created by Amazon EFS. CodeBuild creates an environment variable by appending the identifier in all capital letters to CODEBUILD_ . For example, if you specify my-efs for identifier , a new environment variable is create named CODEBUILD_MY-EFS .

            The identifier is used to mount your file system.

          • mountOptions (string) --

            The mount options for a file system created by AWS EFS. The default mount options used by CodeBuild are nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 . For more information, see Recommended NFS Mount Options.

      • debugSession (dict) --

        Contains information about the debug session for this build.

        • sessionEnabled (boolean) --

          Specifies if session debugging is enabled for this build.

        • sessionTarget (string) --

          Contains the identifier of the Session Manager session used for the build. To work with the paused build, you open this session to examine, control, and resume the build.

      • buildBatchArn (string) --

        The ARN of the batch build that this build is a member of, if applicable.

UpdateProject (updated) Link ¶
Changes (request, response)
Request
{'buildBatchConfig': {'combineArtifacts': 'boolean',
                      'restrictions': {'computeTypesAllowed': ['string'],
                                       'maximumBuildsAllowed': 'integer'},
                      'serviceRole': 'string',
                      'timeoutInMins': 'integer'}}
Response
{'project': {'buildBatchConfig': {'combineArtifacts': 'boolean',
                                  'restrictions': {'computeTypesAllowed': ['string'],
                                                   'maximumBuildsAllowed': 'integer'},
                                  'serviceRole': 'string',
                                  'timeoutInMins': 'integer'},
             'webhook': {'buildType': 'BUILD | BUILD_BATCH'}}}

Changes the settings of a build project.

See also: AWS API Documentation

Request Syntax

client.update_project(
    name='string',
    description='string',
    source={
        'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
        'location': 'string',
        'gitCloneDepth': 123,
        'gitSubmodulesConfig': {
            'fetchSubmodules': True|False
        },
        'buildspec': 'string',
        'auth': {
            'type': 'OAUTH',
            'resource': 'string'
        },
        'reportBuildStatus': True|False,
        'buildStatusConfig': {
            'context': 'string',
            'targetUrl': 'string'
        },
        'insecureSsl': True|False,
        'sourceIdentifier': 'string'
    },
    secondarySources=[
        {
            'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
            'location': 'string',
            'gitCloneDepth': 123,
            'gitSubmodulesConfig': {
                'fetchSubmodules': True|False
            },
            'buildspec': 'string',
            'auth': {
                'type': 'OAUTH',
                'resource': 'string'
            },
            'reportBuildStatus': True|False,
            'buildStatusConfig': {
                'context': 'string',
                'targetUrl': 'string'
            },
            'insecureSsl': True|False,
            'sourceIdentifier': 'string'
        },
    ],
    sourceVersion='string',
    secondarySourceVersions=[
        {
            'sourceIdentifier': 'string',
            'sourceVersion': 'string'
        },
    ],
    artifacts={
        'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
        'location': 'string',
        'path': 'string',
        'namespaceType': 'NONE'|'BUILD_ID',
        'name': 'string',
        'packaging': 'NONE'|'ZIP',
        'overrideArtifactName': True|False,
        'encryptionDisabled': True|False,
        'artifactIdentifier': 'string'
    },
    secondaryArtifacts=[
        {
            'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
            'location': 'string',
            'path': 'string',
            'namespaceType': 'NONE'|'BUILD_ID',
            'name': 'string',
            'packaging': 'NONE'|'ZIP',
            'overrideArtifactName': True|False,
            'encryptionDisabled': True|False,
            'artifactIdentifier': 'string'
        },
    ],
    cache={
        'type': 'NO_CACHE'|'S3'|'LOCAL',
        'location': 'string',
        'modes': [
            'LOCAL_DOCKER_LAYER_CACHE'|'LOCAL_SOURCE_CACHE'|'LOCAL_CUSTOM_CACHE',
        ]
    },
    environment={
        'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER'|'LINUX_GPU_CONTAINER'|'ARM_CONTAINER'|'WINDOWS_SERVER_2019_CONTAINER',
        'image': 'string',
        'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE'|'BUILD_GENERAL1_2XLARGE',
        'environmentVariables': [
            {
                'name': 'string',
                'value': 'string',
                'type': 'PLAINTEXT'|'PARAMETER_STORE'|'SECRETS_MANAGER'
            },
        ],
        'privilegedMode': True|False,
        'certificate': 'string',
        'registryCredential': {
            'credential': 'string',
            'credentialProvider': 'SECRETS_MANAGER'
        },
        'imagePullCredentialsType': 'CODEBUILD'|'SERVICE_ROLE'
    },
    serviceRole='string',
    timeoutInMinutes=123,
    queuedTimeoutInMinutes=123,
    encryptionKey='string',
    tags=[
        {
            'key': 'string',
            'value': 'string'
        },
    ],
    vpcConfig={
        'vpcId': 'string',
        'subnets': [
            'string',
        ],
        'securityGroupIds': [
            'string',
        ]
    },
    badgeEnabled=True|False,
    logsConfig={
        'cloudWatchLogs': {
            'status': 'ENABLED'|'DISABLED',
            'groupName': 'string',
            'streamName': 'string'
        },
        's3Logs': {
            'status': 'ENABLED'|'DISABLED',
            'location': 'string',
            'encryptionDisabled': True|False
        }
    },
    fileSystemLocations=[
        {
            'type': 'EFS',
            'location': 'string',
            'mountPoint': 'string',
            'identifier': 'string',
            'mountOptions': 'string'
        },
    ],
    buildBatchConfig={
        'serviceRole': 'string',
        'combineArtifacts': True|False,
        'restrictions': {
            'maximumBuildsAllowed': 123,
            'computeTypesAllowed': [
                'string',
            ]
        },
        'timeoutInMins': 123
    }
)
type name

string

param name

[REQUIRED]

The name of the build project.

Note

You cannot change a build project's name.

type description

string

param description

A new or replacement description of the build project.

type source

dict

param source

Information to be changed about the build input source code for the build project.

  • type (string) -- [REQUIRED]

    The type of repository that contains the source code to be built. Valid values include:

    • BITBUCKET : The source code is in a Bitbucket repository.

    • CODECOMMIT : The source code is in an AWS CodeCommit repository.

    • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

    • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

    • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

    • NO_SOURCE : The project does not have input source code.

    • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

  • location (string) --

    Information about the location of the source code to be built. Valid values include:

    • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

    • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

    • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

      • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

      • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

    • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

    • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

  • gitCloneDepth (integer) --

    Information about the Git clone depth for the build project.

  • gitSubmodulesConfig (dict) --

    Information about the Git submodules configuration for the build project.

    • fetchSubmodules (boolean) -- [REQUIRED]

      Set to true to fetch Git submodules for your AWS CodeBuild build project.

  • buildspec (string) --

    The buildspec file declaration to use for the builds in this build project.

    If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

  • auth (dict) --

    Information about the authorization settings for AWS CodeBuild to access the source code to be built.

    This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

    • type (string) -- [REQUIRED]

      Note

      This data type is deprecated and is no longer accurate or used.

      The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

    • resource (string) --

      The resource value that applies to the specified authorization type.

  • reportBuildStatus (boolean) --

    Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

    Note

    The status of a build triggered by a webhook is always reported to your source provider.

  • buildStatusConfig (dict) --

    Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

    • context (string) --

      Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

      Bitbucket

      This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

      GitHub/GitHub Enterprise Server

      This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

    • targetUrl (string) --

      Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

      Bitbucket

      This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

      GitHub/GitHub Enterprise Server

      This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

  • insecureSsl (boolean) --

    Enable this flag to ignore SSL warnings while connecting to the project source code.

  • sourceIdentifier (string) --

    An identifier for this project source.

type secondarySources

list

param secondarySources

An array of ProjectSource objects.

  • (dict) --

    Information about the build input source code for the build project.

    • type (string) -- [REQUIRED]

      The type of repository that contains the source code to be built. Valid values include:

      • BITBUCKET : The source code is in a Bitbucket repository.

      • CODECOMMIT : The source code is in an AWS CodeCommit repository.

      • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

      • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

      • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

      • NO_SOURCE : The project does not have input source code.

      • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

    • location (string) --

      Information about the location of the source code to be built. Valid values include:

      • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

      • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

      • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

        • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

        • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

      • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

      • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

    • gitCloneDepth (integer) --

      Information about the Git clone depth for the build project.

    • gitSubmodulesConfig (dict) --

      Information about the Git submodules configuration for the build project.

      • fetchSubmodules (boolean) -- [REQUIRED]

        Set to true to fetch Git submodules for your AWS CodeBuild build project.

    • buildspec (string) --

      The buildspec file declaration to use for the builds in this build project.

      If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

    • auth (dict) --

      Information about the authorization settings for AWS CodeBuild to access the source code to be built.

      This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

      • type (string) -- [REQUIRED]

        Note

        This data type is deprecated and is no longer accurate or used.

        The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

      • resource (string) --

        The resource value that applies to the specified authorization type.

    • reportBuildStatus (boolean) --

      Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

      Note

      The status of a build triggered by a webhook is always reported to your source provider.

    • buildStatusConfig (dict) --

      Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

      • context (string) --

        Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

        Bitbucket

        This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

        GitHub/GitHub Enterprise Server

        This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

      • targetUrl (string) --

        Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

        Bitbucket

        This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

        GitHub/GitHub Enterprise Server

        This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

    • insecureSsl (boolean) --

      Enable this flag to ignore SSL warnings while connecting to the project source code.

    • sourceIdentifier (string) --

      An identifier for this project source.

type sourceVersion

string

param sourceVersion

A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of:

  • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

  • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

  • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

  • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level).

For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

type secondarySourceVersions

list

param secondarySourceVersions

An array of ProjectSourceVersion objects. If secondarySourceVersions is specified at the build level, then they take over these secondarySourceVersions (at the project level).

  • (dict) --

    A source identifier and its corresponding version.

    • sourceIdentifier (string) -- [REQUIRED]

      An identifier for a source in the build project.

    • sourceVersion (string) -- [REQUIRED]

      The source version for the corresponding source identifier. If specified, must be one of:

      • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

      • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

      • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

      • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

      For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

type artifacts

dict

param artifacts

Information to be changed about the build output artifacts for the build project.

  • type (string) -- [REQUIRED]

    The type of build output artifact. Valid values include:

    • CODEPIPELINE : The build project has build output generated through AWS CodePipeline.

    Note

    The CODEPIPELINE type is not supported for secondaryArtifacts .

    • NO_ARTIFACTS : The build project does not produce any build output.

    • S3 : The build project stores build output in Amazon Simple Storage Service (Amazon S3).

  • location (string) --

    Information about the build output artifact location:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , this is the name of the output bucket.

  • path (string) --

    Along with namespaceType and name , the pattern that AWS CodeBuild uses to name and store the output artifact:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , this is the path to the output artifact. If path is not specified, path is not used.

    For example, if path is set to MyArtifacts , namespaceType is set to NONE , and name is set to MyArtifact.zip , the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip .

  • namespaceType (string) --

    Along with path and name , the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , valid values include:

      • BUILD_ID : Include the build ID in the location of the build output artifact.

      • NONE : Do not include the build ID. This is the default if namespaceType is not specified.

    For example, if path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

  • name (string) --

    Along with path and namespaceType , the pattern that AWS CodeBuild uses to name and store the output artifact:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.

    For example:

    • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , then the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

    • If path is empty, namespaceType is set to NONE , and name is set to " / ", the output artifact is stored in the root of the output bucket.

    • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to " / ", the output artifact is stored in MyArtifacts/build-ID .

  • packaging (string) --

    The type of build output artifact to create:

    • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.

    • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

    • If type is set to S3 , valid values include:

      • NONE : AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.

      • ZIP : AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.

  • overrideArtifactName (boolean) --

    If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

  • encryptionDisabled (boolean) --

    Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon Simple Storage Service (Amazon S3). If this is set with another artifacts type, an invalidInputException is thrown.

  • artifactIdentifier (string) --

    An identifier for this artifact definition.

type secondaryArtifacts

list

param secondaryArtifacts

An array of ProjectSource objects.

  • (dict) --

    Information about the build output artifacts for the build project.

    • type (string) -- [REQUIRED]

      The type of build output artifact. Valid values include:

      • CODEPIPELINE : The build project has build output generated through AWS CodePipeline.

      Note

      The CODEPIPELINE type is not supported for secondaryArtifacts .

      • NO_ARTIFACTS : The build project does not produce any build output.

      • S3 : The build project stores build output in Amazon Simple Storage Service (Amazon S3).

    • location (string) --

      Information about the build output artifact location:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , this is the name of the output bucket.

    • path (string) --

      Along with namespaceType and name , the pattern that AWS CodeBuild uses to name and store the output artifact:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , this is the path to the output artifact. If path is not specified, path is not used.

      For example, if path is set to MyArtifacts , namespaceType is set to NONE , and name is set to MyArtifact.zip , the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip .

    • namespaceType (string) --

      Along with path and name , the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , valid values include:

        • BUILD_ID : Include the build ID in the location of the build output artifact.

        • NONE : Do not include the build ID. This is the default if namespaceType is not specified.

      For example, if path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

    • name (string) --

      Along with path and namespaceType , the pattern that AWS CodeBuild uses to name and store the output artifact:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.

      For example:

      • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , then the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

      • If path is empty, namespaceType is set to NONE , and name is set to " / ", the output artifact is stored in the root of the output bucket.

      • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to " / ", the output artifact is stored in MyArtifacts/build-ID .

    • packaging (string) --

      The type of build output artifact to create:

      • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.

      • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

      • If type is set to S3 , valid values include:

        • NONE : AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.

        • ZIP : AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.

    • overrideArtifactName (boolean) --

      If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

    • encryptionDisabled (boolean) --

      Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon Simple Storage Service (Amazon S3). If this is set with another artifacts type, an invalidInputException is thrown.

    • artifactIdentifier (string) --

      An identifier for this artifact definition.

type cache

dict

param cache

Stores recently used information so that it can be quickly accessed at a later time.

  • type (string) -- [REQUIRED]

    The type of cache used by the build project. Valid values include:

    • NO_CACHE : The build project does not use any cache.

    • S3 : The build project reads and writes from and to S3.

    • LOCAL : The build project stores a cache locally on a build host that is only available to that build host.

  • location (string) --

    Information about the cache location:

    • NO_CACHE or LOCAL : This value is ignored.

    • S3 : This is the S3 bucket name/prefix.

  • modes (list) --

    If you use a LOCAL cache, the local cache mode. You can use one or more local cache modes at the same time.

    • LOCAL_SOURCE_CACHE mode caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored.

    • LOCAL_DOCKER_LAYER_CACHE mode caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network.

    Note

    • You can use a Docker layer cache in the Linux environment only.

    • The privileged flag must be set so that your project has the required Docker permissions.

    • You should consider the security implications before you use a Docker layer cache.

    • LOCAL_CUSTOM_CACHE mode caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache:

      • Only directories can be specified for caching. You cannot specify individual files.

      • Symlinks are used to reference cached directories.

      • Cached directories are linked to your build before it downloads its project sources. Cached items are overridden if a source item has the same name. Directories are specified using cache paths in the buildspec file.

    • (string) --

type environment

dict

param environment

Information to be changed about the build environment for the build project.

  • type (string) -- [REQUIRED]

    The type of build environment to use for related builds.

    • The environment type ARM_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Sydney), and EU (Frankfurt).

    • The environment type LINUX_CONTAINER with compute type build.general1.2xlarge is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and China (Ningxia).

    • The environment type LINUX_GPU_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney) , China (Beijing), and China (Ningxia).

  • image (string) -- [REQUIRED]

    The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats:

    • For an image tag: registry/repository:tag . For example, to specify an image with the tag "latest," use registry/repository:latest .

    • For an image digest: registry/repository@digest . For example, to specify an image with the digest "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf," use registry/repository@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf .

  • computeType (string) -- [REQUIRED]

    Information about the compute resources the build project uses. Available values include:

    • BUILD_GENERAL1_SMALL : Use up to 3 GB memory and 2 vCPUs for builds.

    • BUILD_GENERAL1_MEDIUM : Use up to 7 GB memory and 4 vCPUs for builds.

    • BUILD_GENERAL1_LARGE : Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type.

    • BUILD_GENERAL1_2XLARGE : Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed.

    If you use BUILD_GENERAL1_LARGE :

    • For environment type LINUX_CONTAINER , you can use up to 15 GB memory and 8 vCPUs for builds.

    • For environment type LINUX_GPU_CONTAINER , you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds.

    • For environment type ARM_CONTAINER , you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds.

    For more information, see Build Environment Compute Types in the AWS CodeBuild User Guide.

  • environmentVariables (list) --

    A set of environment variables to make available to builds for this build project.

    • (dict) --

      Information about an environment variable for a build project or a build.

      • name (string) -- [REQUIRED]

        The name or key of the environment variable.

      • value (string) -- [REQUIRED]

        The value of the environment variable.

        Warning

        We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. PLAINTEXT environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI). For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE or SECRETS_MANAGER .

      • type (string) --

        The type of environment variable. Valid values include:

  • privilegedMode (boolean) --

    Enables running the Docker daemon inside a Docker container. Set to true only if the build project is used to build Docker images. Otherwise, a build that attempts to interact with the Docker daemon fails. The default setting is false .

    You can initialize the Docker daemon during the install phase of your build by adding one of the following sets of commands to the install phase of your buildspec file:

    If the operating system's base image is Ubuntu Linux:

    - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

    - timeout 15 sh -c "until docker info; do echo .; sleep 1; done"

    If the operating system's base image is Alpine Linux and the previous command does not work, add the -t argument to timeout :

    - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

    - timeout -t 15 sh -c "until docker info; do echo .; sleep 1; done"

  • certificate (string) --

    The certificate to use with this build project.

  • registryCredential (dict) --

    The credentials for access to a private registry.

    • credential (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.

      Note

      The credential can use the name of the credentials only if they exist in your current AWS Region.

    • credentialProvider (string) -- [REQUIRED]

      The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager.

  • imagePullCredentialsType (string) --

    The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values:

    • CODEBUILD specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal.

    • SERVICE_ROLE specifies that AWS CodeBuild uses your build project's service role.

    When you use a cross-account or private registry image, you must use SERVICE_ROLE credentials. When you use an AWS CodeBuild curated image, you must use CODEBUILD credentials.

type serviceRole

string

param serviceRole

The replacement ARN of the AWS Identity and Access Management (IAM) role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.

type timeoutInMinutes

integer

param timeoutInMinutes

The replacement value in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait before timing out any related build that did not get marked as completed.

type queuedTimeoutInMinutes

integer

param queuedTimeoutInMinutes

The number of minutes a build is allowed to be queued before it times out.

type encryptionKey

string

param encryptionKey

The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts.

Note

You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/alias-name ).

type tags

list

param tags

An updated list of tag key and value pairs associated with this build project.

These tags are available for use by AWS services that support AWS CodeBuild build project tags.

  • (dict) --

    A tag, consisting of a key and a value.

    This tag is available for use by AWS services that support tags in AWS CodeBuild.

    • key (string) --

      The tag's key.

    • value (string) --

      The tag's value.

type vpcConfig

dict

param vpcConfig

VpcConfig enables AWS CodeBuild to access resources in an Amazon VPC.

  • vpcId (string) --

    The ID of the Amazon VPC.

  • subnets (list) --

    A list of one or more subnet IDs in your Amazon VPC.

    • (string) --

  • securityGroupIds (list) --

    A list of one or more security groups IDs in your Amazon VPC.

    • (string) --

type badgeEnabled

boolean

param badgeEnabled

Set this to true to generate a publicly accessible URL for your project's build badge.

type logsConfig

dict

param logsConfig

Information about logs for the build project. A project can create logs in Amazon CloudWatch Logs, logs in an S3 bucket, or both.

  • cloudWatchLogs (dict) --

    Information about Amazon CloudWatch Logs for a build project. Amazon CloudWatch Logs are enabled by default.

    • status (string) -- [REQUIRED]

      The current status of the logs in Amazon CloudWatch Logs for a build project. Valid values are:

      • ENABLED : Amazon CloudWatch Logs are enabled for this build project.

      • DISABLED : Amazon CloudWatch Logs are not enabled for this build project.

    • groupName (string) --

      The group name of the logs in Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

    • streamName (string) --

      The prefix of the stream name of the Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

  • s3Logs (dict) --

    Information about logs built to an S3 bucket for a build project. S3 logs are not enabled by default.

    • status (string) -- [REQUIRED]

      The current status of the S3 build logs. Valid values are:

      • ENABLED : S3 build logs are enabled for this build project.

      • DISABLED : S3 build logs are not enabled for this build project.

    • location (string) --

      The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket , and your path prefix is build-log , then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log .

    • encryptionDisabled (boolean) --

      Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.

type fileSystemLocations

list

param fileSystemLocations

An array of ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier , location , mountOptions , mountPoint , and type of a file system created using Amazon Elastic File System.

  • (dict) --

    Information about a file system created by Amazon Elastic File System (EFS). For more information, see What Is Amazon Elastic File System?

    • type (string) --

      The type of the file system. The one supported type is EFS .

    • location (string) --

      A string that specifies the location of the file system created by Amazon EFS. Its format is efs-dns-name:/directory-path . You can find the DNS name of file system when you view it in the AWS EFS console. The directory path is a path to a directory in the file system that CodeBuild mounts. For example, if the DNS name of a file system is fs-abcd1234.efs.us-west-2.amazonaws.com , and its mount directory is my-efs-mount-directory , then the location is fs-abcd1234.efs.us-west-2.amazonaws.com:/my-efs-mount-directory .

      The directory path in the format efs-dns-name:/directory-path is optional. If you do not specify a directory path, the location is only the DNS name and CodeBuild mounts the entire file system.

    • mountPoint (string) --

      The location in the container where you mount the file system.

    • identifier (string) --

      The name used to access a file system created by Amazon EFS. CodeBuild creates an environment variable by appending the identifier in all capital letters to CODEBUILD_ . For example, if you specify my-efs for identifier , a new environment variable is create named CODEBUILD_MY-EFS .

      The identifier is used to mount your file system.

    • mountOptions (string) --

      The mount options for a file system created by AWS EFS. The default mount options used by CodeBuild are nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 . For more information, see Recommended NFS Mount Options.

type buildBatchConfig

dict

param buildBatchConfig

Contains configuration information about a batch build project.

  • serviceRole (string) --

    Specifies the service role ARN for the batch build project.

  • combineArtifacts (boolean) --

    Specifies if the build artifacts for the batch build should be combined into a single artifact location.

  • restrictions (dict) --

    A BatchRestrictions object that specifies the restrictions for the batch build.

    • maximumBuildsAllowed (integer) --

      Specifies the maximum number of builds allowed.

    • computeTypesAllowed (list) --

      An array of strings that specify the compute types that are allowed for the batch build. See Build environment compute types in the AWS CodeBuild User Guide for these values.

      • (string) --

  • timeoutInMins (integer) --

    Specifies the maximum amount of time, in minutes, that the batch build must be completed in.

rtype

dict

returns

Response Syntax

{
    'project': {
        'name': 'string',
        'arn': 'string',
        'description': 'string',
        'source': {
            'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
            'location': 'string',
            'gitCloneDepth': 123,
            'gitSubmodulesConfig': {
                'fetchSubmodules': True|False
            },
            'buildspec': 'string',
            'auth': {
                'type': 'OAUTH',
                'resource': 'string'
            },
            'reportBuildStatus': True|False,
            'buildStatusConfig': {
                'context': 'string',
                'targetUrl': 'string'
            },
            'insecureSsl': True|False,
            'sourceIdentifier': 'string'
        },
        'secondarySources': [
            {
                'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
                'location': 'string',
                'gitCloneDepth': 123,
                'gitSubmodulesConfig': {
                    'fetchSubmodules': True|False
                },
                'buildspec': 'string',
                'auth': {
                    'type': 'OAUTH',
                    'resource': 'string'
                },
                'reportBuildStatus': True|False,
                'buildStatusConfig': {
                    'context': 'string',
                    'targetUrl': 'string'
                },
                'insecureSsl': True|False,
                'sourceIdentifier': 'string'
            },
        ],
        'sourceVersion': 'string',
        'secondarySourceVersions': [
            {
                'sourceIdentifier': 'string',
                'sourceVersion': 'string'
            },
        ],
        'artifacts': {
            'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
            'location': 'string',
            'path': 'string',
            'namespaceType': 'NONE'|'BUILD_ID',
            'name': 'string',
            'packaging': 'NONE'|'ZIP',
            'overrideArtifactName': True|False,
            'encryptionDisabled': True|False,
            'artifactIdentifier': 'string'
        },
        'secondaryArtifacts': [
            {
                'type': 'CODEPIPELINE'|'S3'|'NO_ARTIFACTS',
                'location': 'string',
                'path': 'string',
                'namespaceType': 'NONE'|'BUILD_ID',
                'name': 'string',
                'packaging': 'NONE'|'ZIP',
                'overrideArtifactName': True|False,
                'encryptionDisabled': True|False,
                'artifactIdentifier': 'string'
            },
        ],
        'cache': {
            'type': 'NO_CACHE'|'S3'|'LOCAL',
            'location': 'string',
            'modes': [
                'LOCAL_DOCKER_LAYER_CACHE'|'LOCAL_SOURCE_CACHE'|'LOCAL_CUSTOM_CACHE',
            ]
        },
        'environment': {
            'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER'|'LINUX_GPU_CONTAINER'|'ARM_CONTAINER'|'WINDOWS_SERVER_2019_CONTAINER',
            'image': 'string',
            'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE'|'BUILD_GENERAL1_2XLARGE',
            'environmentVariables': [
                {
                    'name': 'string',
                    'value': 'string',
                    'type': 'PLAINTEXT'|'PARAMETER_STORE'|'SECRETS_MANAGER'
                },
            ],
            'privilegedMode': True|False,
            'certificate': 'string',
            'registryCredential': {
                'credential': 'string',
                'credentialProvider': 'SECRETS_MANAGER'
            },
            'imagePullCredentialsType': 'CODEBUILD'|'SERVICE_ROLE'
        },
        'serviceRole': 'string',
        'timeoutInMinutes': 123,
        'queuedTimeoutInMinutes': 123,
        'encryptionKey': 'string',
        'tags': [
            {
                'key': 'string',
                'value': 'string'
            },
        ],
        'created': datetime(2015, 1, 1),
        'lastModified': datetime(2015, 1, 1),
        'webhook': {
            'url': 'string',
            'payloadUrl': 'string',
            'secret': 'string',
            'branchFilter': 'string',
            'filterGroups': [
                [
                    {
                        'type': 'EVENT'|'BASE_REF'|'HEAD_REF'|'ACTOR_ACCOUNT_ID'|'FILE_PATH'|'COMMIT_MESSAGE',
                        'pattern': 'string',
                        'excludeMatchedPattern': True|False
                    },
                ],
            ],
            'buildType': 'BUILD'|'BUILD_BATCH',
            'lastModifiedSecret': datetime(2015, 1, 1)
        },
        'vpcConfig': {
            'vpcId': 'string',
            'subnets': [
                'string',
            ],
            'securityGroupIds': [
                'string',
            ]
        },
        'badge': {
            'badgeEnabled': True|False,
            'badgeRequestUrl': 'string'
        },
        'logsConfig': {
            'cloudWatchLogs': {
                'status': 'ENABLED'|'DISABLED',
                'groupName': 'string',
                'streamName': 'string'
            },
            's3Logs': {
                'status': 'ENABLED'|'DISABLED',
                'location': 'string',
                'encryptionDisabled': True|False
            }
        },
        'fileSystemLocations': [
            {
                'type': 'EFS',
                'location': 'string',
                'mountPoint': 'string',
                'identifier': 'string',
                'mountOptions': 'string'
            },
        ],
        'buildBatchConfig': {
            'serviceRole': 'string',
            'combineArtifacts': True|False,
            'restrictions': {
                'maximumBuildsAllowed': 123,
                'computeTypesAllowed': [
                    'string',
                ]
            },
            'timeoutInMins': 123
        }
    }
}

Response Structure

  • (dict) --

    • project (dict) --

      Information about the build project that was changed.

      • name (string) --

        The name of the build project.

      • arn (string) --

        The Amazon Resource Name (ARN) of the build project.

      • description (string) --

        A description that makes the build project easy to identify.

      • source (dict) --

        Information about the build input source code for this build project.

        • type (string) --

          The type of repository that contains the source code to be built. Valid values include:

          • BITBUCKET : The source code is in a Bitbucket repository.

          • CODECOMMIT : The source code is in an AWS CodeCommit repository.

          • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

          • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

          • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

          • NO_SOURCE : The project does not have input source code.

          • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

        • location (string) --

          Information about the location of the source code to be built. Valid values include:

          • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

          • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

          • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

            • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

            • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

          • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

        • gitCloneDepth (integer) --

          Information about the Git clone depth for the build project.

        • gitSubmodulesConfig (dict) --

          Information about the Git submodules configuration for the build project.

          • fetchSubmodules (boolean) --

            Set to true to fetch Git submodules for your AWS CodeBuild build project.

        • buildspec (string) --

          The buildspec file declaration to use for the builds in this build project.

          If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

        • auth (dict) --

          Information about the authorization settings for AWS CodeBuild to access the source code to be built.

          This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

          • type (string) --

            Note

            This data type is deprecated and is no longer accurate or used.

            The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

          • resource (string) --

            The resource value that applies to the specified authorization type.

        • reportBuildStatus (boolean) --

          Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

          Note

          The status of a build triggered by a webhook is always reported to your source provider.

        • buildStatusConfig (dict) --

          Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

          • context (string) --

            Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

            Bitbucket

            This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

            GitHub/GitHub Enterprise Server

            This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • targetUrl (string) --

            Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

            Bitbucket

            This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

            GitHub/GitHub Enterprise Server

            This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

        • insecureSsl (boolean) --

          Enable this flag to ignore SSL warnings while connecting to the project source code.

        • sourceIdentifier (string) --

          An identifier for this project source.

      • secondarySources (list) --

        An array of ProjectSource objects.

        • (dict) --

          Information about the build input source code for the build project.

          • type (string) --

            The type of repository that contains the source code to be built. Valid values include:

            • BITBUCKET : The source code is in a Bitbucket repository.

            • CODECOMMIT : The source code is in an AWS CodeCommit repository.

            • CODEPIPELINE : The source code settings are specified in the source action of a pipeline in AWS CodePipeline.

            • GITHUB : The source code is in a GitHub or GitHub Enterprise Cloud repository.

            • GITHUB_ENTERPRISE : The source code is in a GitHub Enterprise Server repository.

            • NO_SOURCE : The project does not have input source code.

            • S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

          • location (string) --

            Information about the location of the source code to be built. Valid values include:

            • For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.

            • For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ).

            • For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following.

              • The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip ).

              • The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/ ).

            • For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

            • For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH .

          • gitCloneDepth (integer) --

            Information about the Git clone depth for the build project.

          • gitSubmodulesConfig (dict) --

            Information about the Git submodules configuration for the build project.

            • fetchSubmodules (boolean) --

              Set to true to fetch Git submodules for your AWS CodeBuild build project.

          • buildspec (string) --

            The buildspec file declaration to use for the builds in this build project.

            If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml ). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.

          • auth (dict) --

            Information about the authorization settings for AWS CodeBuild to access the source code to be built.

            This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.

            • type (string) --

              Note

              This data type is deprecated and is no longer accurate or used.

              The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

            • resource (string) --

              The resource value that applies to the specified authorization type.

          • reportBuildStatus (boolean) --

            Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown.

            Note

            The status of a build triggered by a webhook is always reported to your source provider.

          • buildStatusConfig (dict) --

            Contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is GITHUB , GITHUB_ENTERPRISE , or BITBUCKET .

            • context (string) --

              Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

            • targetUrl (string) --

              Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

              Bitbucket

              This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

              GitHub/GitHub Enterprise Server

              This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

          • insecureSsl (boolean) --

            Enable this flag to ignore SSL warnings while connecting to the project source code.

          • sourceIdentifier (string) --

            An identifier for this project source.

      • sourceVersion (string) --

        A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of:

        • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

        • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

        • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

        • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

        If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level).

        For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

      • secondarySourceVersions (list) --

        An array of ProjectSourceVersion objects. If secondarySourceVersions is specified at the build level, then they take over these secondarySourceVersions (at the project level).

        • (dict) --

          A source identifier and its corresponding version.

          • sourceIdentifier (string) --

            An identifier for a source in the build project.

          • sourceVersion (string) --

            The source version for the corresponding source identifier. If specified, must be one of:

            • For AWS CodeCommit: the commit ID, branch, or Git tag to use.

            • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25 ). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

            • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

            • For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.

            For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

      • artifacts (dict) --

        Information about the build output artifacts for the build project.

        • type (string) --

          The type of build output artifact. Valid values include:

          • CODEPIPELINE : The build project has build output generated through AWS CodePipeline.

          Note

          The CODEPIPELINE type is not supported for secondaryArtifacts .

          • NO_ARTIFACTS : The build project does not produce any build output.

          • S3 : The build project stores build output in Amazon Simple Storage Service (Amazon S3).

        • location (string) --

          Information about the build output artifact location:

          • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.

          • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

          • If type is set to S3 , this is the name of the output bucket.

        • path (string) --

          Along with namespaceType and name , the pattern that AWS CodeBuild uses to name and store the output artifact:

          • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

          • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

          • If type is set to S3 , this is the path to the output artifact. If path is not specified, path is not used.

          For example, if path is set to MyArtifacts , namespaceType is set to NONE , and name is set to MyArtifact.zip , the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip .

        • namespaceType (string) --

          Along with path and name , the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact:

          • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

          • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

          • If type is set to S3 , valid values include:

            • BUILD_ID : Include the build ID in the location of the build output artifact.

            • NONE : Do not include the build ID. This is the default if namespaceType is not specified.

          For example, if path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

        • name (string) --

          Along with path and namespaceType , the pattern that AWS CodeBuild uses to name and store the output artifact:

          • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

          • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

          • If type is set to S3 , this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.

          For example:

          • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , then the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

          • If path is empty, namespaceType is set to NONE , and name is set to " / ", the output artifact is stored in the root of the output bucket.

          • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to " / ", the output artifact is stored in MyArtifacts/build-ID .

        • packaging (string) --

          The type of build output artifact to create:

          • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.

          • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

          • If type is set to S3 , valid values include:

            • NONE : AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.

            • ZIP : AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.

        • overrideArtifactName (boolean) --

          If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

        • encryptionDisabled (boolean) --

          Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon Simple Storage Service (Amazon S3). If this is set with another artifacts type, an invalidInputException is thrown.

        • artifactIdentifier (string) --

          An identifier for this artifact definition.

      • secondaryArtifacts (list) --

        An array of ProjectArtifacts objects.

        • (dict) --

          Information about the build output artifacts for the build project.

          • type (string) --

            The type of build output artifact. Valid values include:

            • CODEPIPELINE : The build project has build output generated through AWS CodePipeline.

            Note

            The CODEPIPELINE type is not supported for secondaryArtifacts .

            • NO_ARTIFACTS : The build project does not produce any build output.

            • S3 : The build project stores build output in Amazon Simple Storage Service (Amazon S3).

          • location (string) --

            Information about the build output artifact location:

            • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.

            • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

            • If type is set to S3 , this is the name of the output bucket.

          • path (string) --

            Along with namespaceType and name , the pattern that AWS CodeBuild uses to name and store the output artifact:

            • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

            • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

            • If type is set to S3 , this is the path to the output artifact. If path is not specified, path is not used.

            For example, if path is set to MyArtifacts , namespaceType is set to NONE , and name is set to MyArtifact.zip , the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip .

          • namespaceType (string) --

            Along with path and name , the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact:

            • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

            • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

            • If type is set to S3 , valid values include:

              • BUILD_ID : Include the build ID in the location of the build output artifact.

              • NONE : Do not include the build ID. This is the default if namespaceType is not specified.

            For example, if path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

          • name (string) --

            Along with path and namespaceType , the pattern that AWS CodeBuild uses to name and store the output artifact:

            • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.

            • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

            • If type is set to S3 , this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.

            For example:

            • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , then the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip .

            • If path is empty, namespaceType is set to NONE , and name is set to " / ", the output artifact is stored in the root of the output bucket.

            • If path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to " / ", the output artifact is stored in MyArtifacts/build-ID .

          • packaging (string) --

            The type of build output artifact to create:

            • If type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.

            • If type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.

            • If type is set to S3 , valid values include:

              • NONE : AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.

              • ZIP : AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.

          • overrideArtifactName (boolean) --

            If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

          • encryptionDisabled (boolean) --

            Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon Simple Storage Service (Amazon S3). If this is set with another artifacts type, an invalidInputException is thrown.

          • artifactIdentifier (string) --

            An identifier for this artifact definition.

      • cache (dict) --

        Information about the cache for the build project.

        • type (string) --

          The type of cache used by the build project. Valid values include:

          • NO_CACHE : The build project does not use any cache.

          • S3 : The build project reads and writes from and to S3.

          • LOCAL : The build project stores a cache locally on a build host that is only available to that build host.

        • location (string) --

          Information about the cache location:

          • NO_CACHE or LOCAL : This value is ignored.

          • S3 : This is the S3 bucket name/prefix.

        • modes (list) --

          If you use a LOCAL cache, the local cache mode. You can use one or more local cache modes at the same time.

          • LOCAL_SOURCE_CACHE mode caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored.

          • LOCAL_DOCKER_LAYER_CACHE mode caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network.

          Note

          • You can use a Docker layer cache in the Linux environment only.

          • The privileged flag must be set so that your project has the required Docker permissions.

          • You should consider the security implications before you use a Docker layer cache.

          • LOCAL_CUSTOM_CACHE mode caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache:

            • Only directories can be specified for caching. You cannot specify individual files.

            • Symlinks are used to reference cached directories.

            • Cached directories are linked to your build before it downloads its project sources. Cached items are overridden if a source item has the same name. Directories are specified using cache paths in the buildspec file.

          • (string) --

      • environment (dict) --

        Information about the build environment for this build project.

        • type (string) --

          The type of build environment to use for related builds.

          • The environment type ARM_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Sydney), and EU (Frankfurt).

          • The environment type LINUX_CONTAINER with compute type build.general1.2xlarge is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and China (Ningxia).

          • The environment type LINUX_GPU_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney) , China (Beijing), and China (Ningxia).

        • image (string) --

          The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats:

          • For an image tag: registry/repository:tag . For example, to specify an image with the tag "latest," use registry/repository:latest .

          • For an image digest: registry/repository@digest . For example, to specify an image with the digest "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf," use registry/repository@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf .

        • computeType (string) --

          Information about the compute resources the build project uses. Available values include:

          • BUILD_GENERAL1_SMALL : Use up to 3 GB memory and 2 vCPUs for builds.

          • BUILD_GENERAL1_MEDIUM : Use up to 7 GB memory and 4 vCPUs for builds.

          • BUILD_GENERAL1_LARGE : Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type.

          • BUILD_GENERAL1_2XLARGE : Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed.

          If you use BUILD_GENERAL1_LARGE :

          • For environment type LINUX_CONTAINER , you can use up to 15 GB memory and 8 vCPUs for builds.

          • For environment type LINUX_GPU_CONTAINER , you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds.

          • For environment type ARM_CONTAINER , you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds.

          For more information, see Build Environment Compute Types in the AWS CodeBuild User Guide.

        • environmentVariables (list) --

          A set of environment variables to make available to builds for this build project.

          • (dict) --

            Information about an environment variable for a build project or a build.

            • name (string) --

              The name or key of the environment variable.

            • value (string) --

              The value of the environment variable.

              Warning

              We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. PLAINTEXT environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI). For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE or SECRETS_MANAGER .

            • type (string) --

              The type of environment variable. Valid values include:

        • privilegedMode (boolean) --

          Enables running the Docker daemon inside a Docker container. Set to true only if the build project is used to build Docker images. Otherwise, a build that attempts to interact with the Docker daemon fails. The default setting is false .

          You can initialize the Docker daemon during the install phase of your build by adding one of the following sets of commands to the install phase of your buildspec file:

          If the operating system's base image is Ubuntu Linux:

          - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

          - timeout 15 sh -c "until docker info; do echo .; sleep 1; done"

          If the operating system's base image is Alpine Linux and the previous command does not work, add the -t argument to timeout :

          - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay&

          - timeout -t 15 sh -c "until docker info; do echo .; sleep 1; done"

        • certificate (string) --

          The certificate to use with this build project.

        • registryCredential (dict) --

          The credentials for access to a private registry.

          • credential (string) --

            The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.

            Note

            The credential can use the name of the credentials only if they exist in your current AWS Region.

          • credentialProvider (string) --

            The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager.

        • imagePullCredentialsType (string) --

          The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values:

          • CODEBUILD specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal.

          • SERVICE_ROLE specifies that AWS CodeBuild uses your build project's service role.

          When you use a cross-account or private registry image, you must use SERVICE_ROLE credentials. When you use an AWS CodeBuild curated image, you must use CODEBUILD credentials.

      • serviceRole (string) --

        The ARN of the AWS Identity and Access Management (IAM) role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.

      • timeoutInMinutes (integer) --

        How long, in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait before timing out any related build that did not get marked as completed. The default is 60 minutes.

      • queuedTimeoutInMinutes (integer) --

        The number of minutes a build is allowed to be queued before it times out.

      • encryptionKey (string) --

        The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts.

        Note

        You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

        You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/alias-name ).

      • tags (list) --

        A list of tag key and value pairs associated with this build project.

        These tags are available for use by AWS services that support AWS CodeBuild build project tags.

        • (dict) --

          A tag, consisting of a key and a value.

          This tag is available for use by AWS services that support tags in AWS CodeBuild.

          • key (string) --

            The tag's key.

          • value (string) --

            The tag's value.

      • created (datetime) --

        When the build project was created, expressed in Unix time format.

      • lastModified (datetime) --

        When the build project's settings were last modified, expressed in Unix time format.

      • webhook (dict) --

        Information about a webhook that connects repository events to a build project in AWS CodeBuild.

        • url (string) --

          The URL to the webhook.

        • payloadUrl (string) --

          The AWS CodeBuild endpoint where webhook events are sent.

        • secret (string) --

          The secret token of the associated repository.

          Note

          A Bitbucket webhook does not support secret .

        • branchFilter (string) --

          A regular expression used to determine which repository branches are built when a webhook is triggered. If the name of a branch matches the regular expression, then it is built. If branchFilter is empty, then all branches are built.

          Note

          It is recommended that you use filterGroups instead of branchFilter .

        • filterGroups (list) --

          An array of arrays of WebhookFilter objects used to determine which webhooks are triggered. At least one WebhookFilter in the array must specify EVENT as its type .

          For a build to be triggered, at least one filter group in the filterGroups array must pass. For a filter group to pass, each of its filters must pass.

          • (list) --

            • (dict) --

              A filter used to determine which webhooks trigger a build.

              • type (string) --

                The type of webhook filter. There are six webhook filter types: EVENT , ACTOR_ACCOUNT_ID , HEAD_REF , BASE_REF , FILE_PATH , and COMMIT_MESSAGE .

                EVENT

                A webhook event triggers a build when the provided pattern matches one of five event types: PUSH , PULL_REQUEST_CREATED , PULL_REQUEST_UPDATED , PULL_REQUEST_REOPENED , and PULL_REQUEST_MERGED . The EVENT patterns are specified as a comma-separated string. For example, PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED filters all push, pull request created, and pull request updated events.

                Note

                The PULL_REQUEST_REOPENED works with GitHub and GitHub Enterprise only.

                ACTOR_ACCOUNT_ID

                A webhook event triggers a build when a GitHub, GitHub Enterprise, or Bitbucket account ID matches the regular expression pattern .

                HEAD_REF

                A webhook event triggers a build when the head reference matches the regular expression pattern . For example, refs/heads/branch-name and refs/tags/tag-name .

                Works with GitHub and GitHub Enterprise push, GitHub and GitHub Enterprise pull request, Bitbucket push, and Bitbucket pull request events.

                BASE_REF

                A webhook event triggers a build when the base reference matches the regular expression pattern . For example, refs/heads/branch-name .

                Note

                Works with pull request events only.

                FILE_PATH

                A webhook triggers a build when the path of a changed file matches the regular expression pattern .

                Note

                Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.

                COMMIT_MESSAGE

                A webhook triggers a build when the head commit message matches the regular expression pattern .

                Note

                Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.

              • pattern (string) --

                For a WebHookFilter that uses EVENT type, a comma-separated string that specifies one or more events. For example, the webhook filter PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED allows all push, pull request created, and pull request updated events to trigger a build.

                For a WebHookFilter that uses any of the other filter types, a regular expression pattern. For example, a WebHookFilter that uses HEAD_REF for its type and the pattern ^refs/heads/ triggers a build when the head reference is a branch with a reference name refs/heads/branch-name .

              • excludeMatchedPattern (boolean) --

                Used to indicate that the pattern determines which webhook events do not trigger a build. If true, then a webhook event that does not match the pattern triggers a build. If false, then a webhook event that matches the pattern triggers a build.

        • buildType (string) --

          Specifies the type of build this webhook will trigger.

        • lastModifiedSecret (datetime) --

          A timestamp that indicates the last time a repository's secret token was modified.

      • vpcConfig (dict) --

        Information about the VPC configuration that AWS CodeBuild accesses.

        • vpcId (string) --

          The ID of the Amazon VPC.

        • subnets (list) --

          A list of one or more subnet IDs in your Amazon VPC.

          • (string) --

        • securityGroupIds (list) --

          A list of one or more security groups IDs in your Amazon VPC.

          • (string) --

      • badge (dict) --

        Information about the build badge for the build project.

        • badgeEnabled (boolean) --

          Set this to true to generate a publicly accessible URL for your project's build badge.

        • badgeRequestUrl (string) --

          The publicly-accessible URL through which you can access the build badge for your project.

          The publicly accessible URL through which you can access the build badge for your project.

      • logsConfig (dict) --

        Information about logs for the build project. A project can create logs in Amazon CloudWatch Logs, an S3 bucket, or both.

        • cloudWatchLogs (dict) --

          Information about Amazon CloudWatch Logs for a build project. Amazon CloudWatch Logs are enabled by default.

          • status (string) --

            The current status of the logs in Amazon CloudWatch Logs for a build project. Valid values are:

            • ENABLED : Amazon CloudWatch Logs are enabled for this build project.

            • DISABLED : Amazon CloudWatch Logs are not enabled for this build project.

          • groupName (string) --

            The group name of the logs in Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

          • streamName (string) --

            The prefix of the stream name of the Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

        • s3Logs (dict) --

          Information about logs built to an S3 bucket for a build project. S3 logs are not enabled by default.

          • status (string) --

            The current status of the S3 build logs. Valid values are:

            • ENABLED : S3 build logs are enabled for this build project.

            • DISABLED : S3 build logs are not enabled for this build project.

          • location (string) --

            The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket , and your path prefix is build-log , then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log .

          • encryptionDisabled (boolean) --

            Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.

      • fileSystemLocations (list) --

        An array of ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier , location , mountOptions , mountPoint , and type of a file system created using Amazon Elastic File System.

        • (dict) --

          Information about a file system created by Amazon Elastic File System (EFS). For more information, see What Is Amazon Elastic File System?

          • type (string) --

            The type of the file system. The one supported type is EFS .

          • location (string) --

            A string that specifies the location of the file system created by Amazon EFS. Its format is efs-dns-name:/directory-path . You can find the DNS name of file system when you view it in the AWS EFS console. The directory path is a path to a directory in the file system that CodeBuild mounts. For example, if the DNS name of a file system is fs-abcd1234.efs.us-west-2.amazonaws.com , and its mount directory is my-efs-mount-directory , then the location is fs-abcd1234.efs.us-west-2.amazonaws.com:/my-efs-mount-directory .

            The directory path in the format efs-dns-name:/directory-path is optional. If you do not specify a directory path, the location is only the DNS name and CodeBuild mounts the entire file system.

          • mountPoint (string) --

            The location in the container where you mount the file system.

          • identifier (string) --

            The name used to access a file system created by Amazon EFS. CodeBuild creates an environment variable by appending the identifier in all capital letters to CODEBUILD_ . For example, if you specify my-efs for identifier , a new environment variable is create named CODEBUILD_MY-EFS .

            The identifier is used to mount your file system.

          • mountOptions (string) --

            The mount options for a file system created by AWS EFS. The default mount options used by CodeBuild are nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 . For more information, see Recommended NFS Mount Options.

      • buildBatchConfig (dict) --

        A ProjectBuildBatchConfig object that defines the batch build options for the project.

        • serviceRole (string) --

          Specifies the service role ARN for the batch build project.

        • combineArtifacts (boolean) --

          Specifies if the build artifacts for the batch build should be combined into a single artifact location.

        • restrictions (dict) --

          A BatchRestrictions object that specifies the restrictions for the batch build.

          • maximumBuildsAllowed (integer) --

            Specifies the maximum number of builds allowed.

          • computeTypesAllowed (list) --

            An array of strings that specify the compute types that are allowed for the batch build. See Build environment compute types in the AWS CodeBuild User Guide for these values.

            • (string) --

        • timeoutInMins (integer) --

          Specifies the maximum amount of time, in minutes, that the batch build must be completed in.

UpdateReportGroup (updated) Link ¶
Changes (response)
{'reportGroup': {'type': {'CODE_COVERAGE'}}}

Updates a report group.

See also: AWS API Documentation

Request Syntax

client.update_report_group(
    arn='string',
    exportConfig={
        'exportConfigType': 'S3'|'NO_EXPORT',
        's3Destination': {
            'bucket': 'string',
            'path': 'string',
            'packaging': 'ZIP'|'NONE',
            'encryptionKey': 'string',
            'encryptionDisabled': True|False
        }
    },
    tags=[
        {
            'key': 'string',
            'value': 'string'
        },
    ]
)
type arn

string

param arn

[REQUIRED]

The ARN of the report group to update.

type exportConfig

dict

param 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.

  • exportConfigType (string) --

    The export configuration type. Valid values are:

    • S3 : The report results are exported to an S3 bucket.

    • NO_EXPORT : The report results are not exported.

  • s3Destination (dict) --

    A S3ReportExportConfig object that contains information about the S3 bucket where the run of a report is exported.

    • bucket (string) --

      The name of the S3 bucket where the raw data of a report are exported.

    • path (string) --

      The path to the exported report's raw data results.

    • packaging (string) --

      The type of build output artifact to create. Valid values include:

      • NONE : AWS CodeBuild creates the raw data in the output bucket. This is the default if packaging is not specified.

      • ZIP : AWS CodeBuild creates a ZIP file with the raw data in the output bucket.

    • encryptionKey (string) --

      The encryption key for the report's encrypted raw data.

    • encryptionDisabled (boolean) --

      A boolean value that specifies if the results of a report are encrypted.

type tags

list

param tags

An updated list of tag key and value pairs associated with this report group.

These tags are available for use by AWS services that support AWS CodeBuild report group tags.

  • (dict) --

    A tag, consisting of a key and a value.

    This tag is available for use by AWS services that support tags in AWS CodeBuild.

    • key (string) --

      The tag's key.

    • value (string) --

      The tag's value.

rtype

dict

returns

Response Syntax

{
    'reportGroup': {
        'arn': 'string',
        'name': 'string',
        'type': 'TEST'|'CODE_COVERAGE',
        'exportConfig': {
            'exportConfigType': 'S3'|'NO_EXPORT',
            's3Destination': {
                'bucket': 'string',
                'path': 'string',
                'packaging': 'ZIP'|'NONE',
                'encryptionKey': 'string',
                'encryptionDisabled': True|False
            }
        },
        'created': datetime(2015, 1, 1),
        'lastModified': datetime(2015, 1, 1),
        'tags': [
            {
                'key': 'string',
                'value': 'string'
            },
        ]
    }
}

Response Structure

  • (dict) --

    • reportGroup (dict) --

      Information about the updated report group.

      • arn (string) --

        The ARN of a ReportGroup .

      • name (string) --

        The name of a ReportGroup .

      • type (string) --

        The type of the ReportGroup . The one valid value is TEST .

      • exportConfig (dict) --

        Information about the destination where the raw data of this ReportGroup is exported.

        • exportConfigType (string) --

          The export configuration type. Valid values are:

          • S3 : The report results are exported to an S3 bucket.

          • NO_EXPORT : The report results are not exported.

        • s3Destination (dict) --

          A S3ReportExportConfig object that contains information about the S3 bucket where the run of a report is exported.

          • bucket (string) --

            The name of the S3 bucket where the raw data of a report are exported.

          • path (string) --

            The path to the exported report's raw data results.

          • packaging (string) --

            The type of build output artifact to create. Valid values include:

            • NONE : AWS CodeBuild creates the raw data in the output bucket. This is the default if packaging is not specified.

            • ZIP : AWS CodeBuild creates a ZIP file with the raw data in the output bucket.

          • encryptionKey (string) --

            The encryption key for the report's encrypted raw data.

          • encryptionDisabled (boolean) --

            A boolean value that specifies if the results of a report are encrypted.

      • created (datetime) --

        The date and time this ReportGroup was created.

      • lastModified (datetime) --

        The date and time this ReportGroup was last modified.

      • tags (list) --

        A list of tag key and value pairs associated with this report group.

        These tags are available for use by AWS services that support AWS CodeBuild report group tags.

        • (dict) --

          A tag, consisting of a key and a value.

          This tag is available for use by AWS services that support tags in AWS CodeBuild.

          • key (string) --

            The tag's key.

          • value (string) --

            The tag's value.

UpdateWebhook (updated) Link ¶
Changes (request, response)
Request
{'buildType': 'BUILD | BUILD_BATCH'}
Response
{'webhook': {'buildType': 'BUILD | BUILD_BATCH'}}

Updates the webhook associated with an AWS CodeBuild build project.

Note

If you use Bitbucket for your repository, rotateSecret is ignored.

See also: AWS API Documentation

Request Syntax

client.update_webhook(
    projectName='string',
    branchFilter='string',
    rotateSecret=True|False,
    filterGroups=[
        [
            {
                'type': 'EVENT'|'BASE_REF'|'HEAD_REF'|'ACTOR_ACCOUNT_ID'|'FILE_PATH'|'COMMIT_MESSAGE',
                'pattern': 'string',
                'excludeMatchedPattern': True|False
            },
        ],
    ],
    buildType='BUILD'|'BUILD_BATCH'
)
type projectName

string

param projectName

[REQUIRED]

The name of the AWS CodeBuild project.

type branchFilter

string

param branchFilter

A regular expression used to determine which repository branches are built when a webhook is triggered. If the name of a branch matches the regular expression, then it is built. If branchFilter is empty, then all branches are built.

Note

It is recommended that you use filterGroups instead of branchFilter .

type rotateSecret

boolean

param rotateSecret

A boolean value that specifies whether the associated GitHub repository's secret token should be updated. If you use Bitbucket for your repository, rotateSecret is ignored.

type filterGroups

list

param filterGroups

An array of arrays of WebhookFilter objects used to determine if a webhook event can trigger a build. A filter group must contain at least one EVENT WebhookFilter .

  • (list) --

    • (dict) --

      A filter used to determine which webhooks trigger a build.

      • type (string) -- [REQUIRED]

        The type of webhook filter. There are six webhook filter types: EVENT , ACTOR_ACCOUNT_ID , HEAD_REF , BASE_REF , FILE_PATH , and COMMIT_MESSAGE .

        EVENT

        A webhook event triggers a build when the provided pattern matches one of five event types: PUSH , PULL_REQUEST_CREATED , PULL_REQUEST_UPDATED , PULL_REQUEST_REOPENED , and PULL_REQUEST_MERGED . The EVENT patterns are specified as a comma-separated string. For example, PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED filters all push, pull request created, and pull request updated events.

        Note

        The PULL_REQUEST_REOPENED works with GitHub and GitHub Enterprise only.

        ACTOR_ACCOUNT_ID

        A webhook event triggers a build when a GitHub, GitHub Enterprise, or Bitbucket account ID matches the regular expression pattern .

        HEAD_REF

        A webhook event triggers a build when the head reference matches the regular expression pattern . For example, refs/heads/branch-name and refs/tags/tag-name .

        Works with GitHub and GitHub Enterprise push, GitHub and GitHub Enterprise pull request, Bitbucket push, and Bitbucket pull request events.

        BASE_REF

        A webhook event triggers a build when the base reference matches the regular expression pattern . For example, refs/heads/branch-name .

        Note

        Works with pull request events only.

        FILE_PATH

        A webhook triggers a build when the path of a changed file matches the regular expression pattern .

        Note

        Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.

        COMMIT_MESSAGE

        A webhook triggers a build when the head commit message matches the regular expression pattern .

        Note

        Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.

      • pattern (string) -- [REQUIRED]

        For a WebHookFilter that uses EVENT type, a comma-separated string that specifies one or more events. For example, the webhook filter PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED allows all push, pull request created, and pull request updated events to trigger a build.

        For a WebHookFilter that uses any of the other filter types, a regular expression pattern. For example, a WebHookFilter that uses HEAD_REF for its type and the pattern ^refs/heads/ triggers a build when the head reference is a branch with a reference name refs/heads/branch-name .

      • excludeMatchedPattern (boolean) --

        Used to indicate that the pattern determines which webhook events do not trigger a build. If true, then a webhook event that does not match the pattern triggers a build. If false, then a webhook event that matches the pattern triggers a build.

type buildType

string

param buildType

Specifies the type of build this webhook will trigger.

rtype

dict

returns

Response Syntax

{
    'webhook': {
        'url': 'string',
        'payloadUrl': 'string',
        'secret': 'string',
        'branchFilter': 'string',
        'filterGroups': [
            [
                {
                    'type': 'EVENT'|'BASE_REF'|'HEAD_REF'|'ACTOR_ACCOUNT_ID'|'FILE_PATH'|'COMMIT_MESSAGE',
                    'pattern': 'string',
                    'excludeMatchedPattern': True|False
                },
            ],
        ],
        'buildType': 'BUILD'|'BUILD_BATCH',
        'lastModifiedSecret': datetime(2015, 1, 1)
    }
}

Response Structure

  • (dict) --

    • webhook (dict) --

      Information about a repository's webhook that is associated with a project in AWS CodeBuild.

      • url (string) --

        The URL to the webhook.

      • payloadUrl (string) --

        The AWS CodeBuild endpoint where webhook events are sent.

      • secret (string) --

        The secret token of the associated repository.

        Note

        A Bitbucket webhook does not support secret .

      • branchFilter (string) --

        A regular expression used to determine which repository branches are built when a webhook is triggered. If the name of a branch matches the regular expression, then it is built. If branchFilter is empty, then all branches are built.

        Note

        It is recommended that you use filterGroups instead of branchFilter .

      • filterGroups (list) --

        An array of arrays of WebhookFilter objects used to determine which webhooks are triggered. At least one WebhookFilter in the array must specify EVENT as its type .

        For a build to be triggered, at least one filter group in the filterGroups array must pass. For a filter group to pass, each of its filters must pass.

        • (list) --

          • (dict) --

            A filter used to determine which webhooks trigger a build.

            • type (string) --

              The type of webhook filter. There are six webhook filter types: EVENT , ACTOR_ACCOUNT_ID , HEAD_REF , BASE_REF , FILE_PATH , and COMMIT_MESSAGE .

              EVENT

              A webhook event triggers a build when the provided pattern matches one of five event types: PUSH , PULL_REQUEST_CREATED , PULL_REQUEST_UPDATED , PULL_REQUEST_REOPENED , and PULL_REQUEST_MERGED . The EVENT patterns are specified as a comma-separated string. For example, PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED filters all push, pull request created, and pull request updated events.

              Note

              The PULL_REQUEST_REOPENED works with GitHub and GitHub Enterprise only.

              ACTOR_ACCOUNT_ID

              A webhook event triggers a build when a GitHub, GitHub Enterprise, or Bitbucket account ID matches the regular expression pattern .

              HEAD_REF

              A webhook event triggers a build when the head reference matches the regular expression pattern . For example, refs/heads/branch-name and refs/tags/tag-name .

              Works with GitHub and GitHub Enterprise push, GitHub and GitHub Enterprise pull request, Bitbucket push, and Bitbucket pull request events.

              BASE_REF

              A webhook event triggers a build when the base reference matches the regular expression pattern . For example, refs/heads/branch-name .

              Note

              Works with pull request events only.

              FILE_PATH

              A webhook triggers a build when the path of a changed file matches the regular expression pattern .

              Note

              Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.

              COMMIT_MESSAGE

              A webhook triggers a build when the head commit message matches the regular expression pattern .

              Note

              Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.

            • pattern (string) --

              For a WebHookFilter that uses EVENT type, a comma-separated string that specifies one or more events. For example, the webhook filter PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED allows all push, pull request created, and pull request updated events to trigger a build.

              For a WebHookFilter that uses any of the other filter types, a regular expression pattern. For example, a WebHookFilter that uses HEAD_REF for its type and the pattern ^refs/heads/ triggers a build when the head reference is a branch with a reference name refs/heads/branch-name .

            • excludeMatchedPattern (boolean) --

              Used to indicate that the pattern determines which webhook events do not trigger a build. If true, then a webhook event that does not match the pattern triggers a build. If false, then a webhook event that matches the pattern triggers a build.

      • buildType (string) --

        Specifies the type of build this webhook will trigger.

      • lastModifiedSecret (datetime) --

        A timestamp that indicates the last time a repository's secret token was modified.