AWS CodeBuild

2019/02/11 - AWS CodeBuild - 5 updated api methods

Changes  Add customized webhook filter support

BatchGetProjects (updated) Link ¶
Changes (response)
{'projects': {'webhook': {'filterGroups': [[{'excludeMatchedPattern': 'boolean',
                                             'pattern': 'string',
                                             'type': 'EVENT | BASE_REF | '
                                                     'HEAD_REF | '
                                                     'ACTOR_ACCOUNT_ID | '
                                                     'FILE_PATH'}]]}}}

Gets information about build projects.

See also: AWS API Documentation

Request Syntax

client.batch_get_projects(
    names=[
        'string',
    ]
)
type names

list

param names

[REQUIRED]

The names of the build projects.

  • (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,
                'buildspec': 'string',
                'auth': {
                    'type': 'OAUTH',
                    'resource': 'string'
                },
                'reportBuildStatus': True|False,
                'insecureSsl': True|False,
                'sourceIdentifier': 'string'
            },
            'secondarySources': [
                {
                    'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
                    'location': 'string',
                    'gitCloneDepth': 123,
                    'buildspec': 'string',
                    'auth': {
                        'type': 'OAUTH',
                        'resource': 'string'
                    },
                    'reportBuildStatus': True|False,
                    'insecureSsl': True|False,
                    'sourceIdentifier': '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',
                'location': 'string'
            },
            'environment': {
                'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER',
                'image': 'string',
                'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE',
                'environmentVariables': [
                    {
                        'name': 'string',
                        'value': 'string',
                        'type': 'PLAINTEXT'|'PARAMETER_STORE'
                    },
                ],
                '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',
                            'pattern': 'string',
                            'excludeMatchedPattern': True|False
                        },
                    ],
                ],
                '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'
                }
            }
        },
    ],
    '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 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 build spec (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 build spec. 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 build spec. 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.

          • buildspec (string) --

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

            If this value is not specified, a build spec must be included along with the source code to be built.

          • 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.

          • 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 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 build spec (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 build spec. 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 build spec. 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.

            • buildspec (string) --

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

              If this value is not specified, a build spec must be included along with the source code to be built.

            • 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.

            • insecureSsl (boolean) --

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

            • sourceIdentifier (string) --

              An identifier for this project source.

        • 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.

            • 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 build spec file overrides the artifact name. The name specified in a build spec 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.

              • 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 build spec file overrides the artifact name. The name specified in a build spec 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.

          • location (string) --

            Information about the cache location:

            • NO_CACHE : This value is ignored.

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

        • environment (dict) --

          Information about the build environment for this build project.

          • type (string) --

            The type of build environment to use for related builds.

          • 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 15 GB memory and 8 vCPUs for builds.

          • 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 environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. Environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI).

              • type (string) --

                The type of environment variable. Valid values include:

                • PARAMETER_STORE : An environment variable stored in Amazon EC2 Systems Manager Parameter Store.

                • PLAINTEXT : An environment variable in plaintext format.

          • privilegedMode (boolean) --

            Enables running the Docker daemon inside a Docker container. Set to true only if the build project is be used to build Docker images, and the specified build environment image is not provided by AWS CodeBuild with Docker support. Otherwise, all associated builds that attempt to interact with the Docker daemon fail. You must also start the Docker daemon so that builds can interact with it. One way to do this is to initialize the Docker daemon during the install phase of your build spec by running the following build commands. (Do not run these commands if the specified build environment image is provided by AWS CodeBuild with Docker support.)

            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, 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 15 -t 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 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) --

          The tags for 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 five webhook filter types: EVENT , ACTOR_ACCOUNT_ID , HEAD_REF , BASE_REF , and FILE_PATH .

                  EVENT

                  A webhook event triggers a build when the provided pattern matches one of four event types: PUSH , PULL_REQUEST_CREATED , PULL_REQUEST_UPDATED , and PULL_REQUEST_REOPENED . 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 GitHub Enterprise push events only.

                • 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.

          • 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 .

    • projectsNotFound (list) --

      The names of build projects for which information could not be found.

      • (string) --

CreateProject (updated) Link ¶
Changes (response)
{'project': {'webhook': {'filterGroups': [[{'excludeMatchedPattern': 'boolean',
                                            'pattern': 'string',
                                            'type': 'EVENT | BASE_REF | '
                                                    'HEAD_REF | '
                                                    'ACTOR_ACCOUNT_ID | '
                                                    'FILE_PATH'}]]}}}

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,
        'buildspec': 'string',
        'auth': {
            'type': 'OAUTH',
            'resource': 'string'
        },
        'reportBuildStatus': True|False,
        'insecureSsl': True|False,
        'sourceIdentifier': 'string'
    },
    secondarySources=[
        {
            'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
            'location': 'string',
            'gitCloneDepth': 123,
            'buildspec': 'string',
            'auth': {
                'type': 'OAUTH',
                'resource': 'string'
            },
            'reportBuildStatus': True|False,
            'insecureSsl': True|False,
            'sourceIdentifier': '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',
        'location': 'string'
    },
    environment={
        'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER',
        'image': 'string',
        'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE',
        'environmentVariables': [
            {
                'name': 'string',
                'value': 'string',
                'type': 'PLAINTEXT'|'PARAMETER_STORE'
            },
        ],
        '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'
        }
    }
)
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 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 build spec (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 build spec. 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 build spec. 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.

  • buildspec (string) --

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

    If this value is not specified, a build spec must be included along with the source code to be built.

  • 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.

  • 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 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 build spec (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 build spec. 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 build spec. 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.

    • buildspec (string) --

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

      If this value is not specified, a build spec must be included along with the source code to be built.

    • 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.

    • 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 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.

    • 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 build spec file overrides the artifact name. The name specified in a build spec 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.

      • 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 build spec file overrides the artifact name. The name specified in a build spec 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.

  • location (string) --

    Information about the cache location:

    • NO_CACHE : This value is ignored.

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

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.

  • 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 15 GB memory and 8 vCPUs for builds.

  • 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 environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. Environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI).

      • type (string) --

        The type of environment variable. Valid values include:

        • PARAMETER_STORE : An environment variable stored in Amazon EC2 Systems Manager Parameter Store.

        • PLAINTEXT : An environment variable in plaintext format.

  • privilegedMode (boolean) --

    Enables running the Docker daemon inside a Docker container. Set to true only if the build project is be used to build Docker images, and the specified build environment image is not provided by AWS CodeBuild with Docker support. Otherwise, all associated builds that attempt to interact with the Docker daemon fail. You must also start the Docker daemon so that builds can interact with it. One way to do this is to initialize the Docker daemon during the install phase of your build spec by running the following build commands. (Do not run these commands if the specified build environment image is provided by AWS CodeBuild with Docker support.)

    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, 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 15 -t 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 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 set of tags for 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 .

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,
            'buildspec': 'string',
            'auth': {
                'type': 'OAUTH',
                'resource': 'string'
            },
            'reportBuildStatus': True|False,
            'insecureSsl': True|False,
            'sourceIdentifier': 'string'
        },
        'secondarySources': [
            {
                'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
                'location': 'string',
                'gitCloneDepth': 123,
                'buildspec': 'string',
                'auth': {
                    'type': 'OAUTH',
                    'resource': 'string'
                },
                'reportBuildStatus': True|False,
                'insecureSsl': True|False,
                'sourceIdentifier': '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',
            'location': 'string'
        },
        'environment': {
            'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER',
            'image': 'string',
            'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE',
            'environmentVariables': [
                {
                    'name': 'string',
                    'value': 'string',
                    'type': 'PLAINTEXT'|'PARAMETER_STORE'
                },
            ],
            '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',
                        'pattern': 'string',
                        'excludeMatchedPattern': True|False
                    },
                ],
            ],
            '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'
            }
        }
    }
}

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 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 build spec (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 build spec. 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 build spec. 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.

        • buildspec (string) --

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

          If this value is not specified, a build spec must be included along with the source code to be built.

        • 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.

        • 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 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 build spec (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 build spec. 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 build spec. 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.

          • buildspec (string) --

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

            If this value is not specified, a build spec must be included along with the source code to be built.

          • 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.

          • insecureSsl (boolean) --

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

          • sourceIdentifier (string) --

            An identifier for this project source.

      • 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.

          • 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 build spec file overrides the artifact name. The name specified in a build spec 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.

            • 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 build spec file overrides the artifact name. The name specified in a build spec 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.

        • location (string) --

          Information about the cache location:

          • NO_CACHE : This value is ignored.

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

      • environment (dict) --

        Information about the build environment for this build project.

        • type (string) --

          The type of build environment to use for related builds.

        • 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 15 GB memory and 8 vCPUs for builds.

        • 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 environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. Environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI).

            • type (string) --

              The type of environment variable. Valid values include:

              • PARAMETER_STORE : An environment variable stored in Amazon EC2 Systems Manager Parameter Store.

              • PLAINTEXT : An environment variable in plaintext format.

        • privilegedMode (boolean) --

          Enables running the Docker daemon inside a Docker container. Set to true only if the build project is be used to build Docker images, and the specified build environment image is not provided by AWS CodeBuild with Docker support. Otherwise, all associated builds that attempt to interact with the Docker daemon fail. You must also start the Docker daemon so that builds can interact with it. One way to do this is to initialize the Docker daemon during the install phase of your build spec by running the following build commands. (Do not run these commands if the specified build environment image is provided by AWS CodeBuild with Docker support.)

          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, 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 15 -t 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 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) --

        The tags for 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 five webhook filter types: EVENT , ACTOR_ACCOUNT_ID , HEAD_REF , BASE_REF , and FILE_PATH .

                EVENT

                A webhook event triggers a build when the provided pattern matches one of four event types: PUSH , PULL_REQUEST_CREATED , PULL_REQUEST_UPDATED , and PULL_REQUEST_REOPENED . 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 GitHub Enterprise push events only.

              • 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.

        • 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 .

CreateWebhook (updated) Link ¶
Changes (request, response)
Request
{'filterGroups': [[{'excludeMatchedPattern': 'boolean',
                    'pattern': 'string',
                    'type': 'EVENT | BASE_REF | HEAD_REF | ACTOR_ACCOUNT_ID | '
                            'FILE_PATH'}]]}
Response
{'webhook': {'filterGroups': [[{'excludeMatchedPattern': 'boolean',
                                'pattern': 'string',
                                'type': 'EVENT | BASE_REF | HEAD_REF | '
                                        'ACTOR_ACCOUNT_ID | FILE_PATH'}]]}}

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',
                'pattern': 'string',
                'excludeMatchedPattern': True|False
            },
        ],
    ]
)
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 five webhook filter types: EVENT , ACTOR_ACCOUNT_ID , HEAD_REF , BASE_REF , and FILE_PATH .

        EVENT

        A webhook event triggers a build when the provided pattern matches one of four event types: PUSH , PULL_REQUEST_CREATED , PULL_REQUEST_UPDATED , and PULL_REQUEST_REOPENED . 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 GitHub Enterprise push events only.

      • 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.

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',
                    'pattern': 'string',
                    'excludeMatchedPattern': True|False
                },
            ],
        ],
        '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 five webhook filter types: EVENT , ACTOR_ACCOUNT_ID , HEAD_REF , BASE_REF , and FILE_PATH .

              EVENT

              A webhook event triggers a build when the provided pattern matches one of four event types: PUSH , PULL_REQUEST_CREATED , PULL_REQUEST_UPDATED , and PULL_REQUEST_REOPENED . 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 GitHub Enterprise push events only.

            • 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.

      • lastModifiedSecret (datetime) --

        A timestamp that indicates the last time a repository's secret token was modified.

UpdateProject (updated) Link ¶
Changes (response)
{'project': {'webhook': {'filterGroups': [[{'excludeMatchedPattern': 'boolean',
                                            'pattern': 'string',
                                            'type': 'EVENT | BASE_REF | '
                                                    'HEAD_REF | '
                                                    'ACTOR_ACCOUNT_ID | '
                                                    'FILE_PATH'}]]}}}

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,
        'buildspec': 'string',
        'auth': {
            'type': 'OAUTH',
            'resource': 'string'
        },
        'reportBuildStatus': True|False,
        'insecureSsl': True|False,
        'sourceIdentifier': 'string'
    },
    secondarySources=[
        {
            'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
            'location': 'string',
            'gitCloneDepth': 123,
            'buildspec': 'string',
            'auth': {
                'type': 'OAUTH',
                'resource': 'string'
            },
            'reportBuildStatus': True|False,
            'insecureSsl': True|False,
            'sourceIdentifier': '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',
        'location': 'string'
    },
    environment={
        'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER',
        'image': 'string',
        'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE',
        'environmentVariables': [
            {
                'name': 'string',
                'value': 'string',
                'type': 'PLAINTEXT'|'PARAMETER_STORE'
            },
        ],
        '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'
        }
    }
)
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 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 build spec (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 build spec. 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 build spec. 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.

  • buildspec (string) --

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

    If this value is not specified, a build spec must be included along with the source code to be built.

  • 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.

  • 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 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 build spec (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 build spec. 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 build spec. 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.

    • buildspec (string) --

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

      If this value is not specified, a build spec must be included along with the source code to be built.

    • 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.

    • 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 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.

    • 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 build spec file overrides the artifact name. The name specified in a build spec 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.

      • 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 build spec file overrides the artifact name. The name specified in a build spec 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.

  • location (string) --

    Information about the cache location:

    • NO_CACHE : This value is ignored.

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

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.

  • 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 15 GB memory and 8 vCPUs for builds.

  • 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 environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. Environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI).

      • type (string) --

        The type of environment variable. Valid values include:

        • PARAMETER_STORE : An environment variable stored in Amazon EC2 Systems Manager Parameter Store.

        • PLAINTEXT : An environment variable in plaintext format.

  • privilegedMode (boolean) --

    Enables running the Docker daemon inside a Docker container. Set to true only if the build project is be used to build Docker images, and the specified build environment image is not provided by AWS CodeBuild with Docker support. Otherwise, all associated builds that attempt to interact with the Docker daemon fail. You must also start the Docker daemon so that builds can interact with it. One way to do this is to initialize the Docker daemon during the install phase of your build spec by running the following build commands. (Do not run these commands if the specified build environment image is provided by AWS CodeBuild with Docker support.)

    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, 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 15 -t 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 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

The replacement set of tags for 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 .

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,
            'buildspec': 'string',
            'auth': {
                'type': 'OAUTH',
                'resource': 'string'
            },
            'reportBuildStatus': True|False,
            'insecureSsl': True|False,
            'sourceIdentifier': 'string'
        },
        'secondarySources': [
            {
                'type': 'CODECOMMIT'|'CODEPIPELINE'|'GITHUB'|'S3'|'BITBUCKET'|'GITHUB_ENTERPRISE'|'NO_SOURCE',
                'location': 'string',
                'gitCloneDepth': 123,
                'buildspec': 'string',
                'auth': {
                    'type': 'OAUTH',
                    'resource': 'string'
                },
                'reportBuildStatus': True|False,
                'insecureSsl': True|False,
                'sourceIdentifier': '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',
            'location': 'string'
        },
        'environment': {
            'type': 'WINDOWS_CONTAINER'|'LINUX_CONTAINER',
            'image': 'string',
            'computeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE',
            'environmentVariables': [
                {
                    'name': 'string',
                    'value': 'string',
                    'type': 'PLAINTEXT'|'PARAMETER_STORE'
                },
            ],
            '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',
                        'pattern': 'string',
                        'excludeMatchedPattern': True|False
                    },
                ],
            ],
            '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'
            }
        }
    }
}

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 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 build spec (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 build spec. 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 build spec. 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.

        • buildspec (string) --

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

          If this value is not specified, a build spec must be included along with the source code to be built.

        • 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.

        • 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 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 build spec (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 build spec. 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 build spec. 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.

          • buildspec (string) --

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

            If this value is not specified, a build spec must be included along with the source code to be built.

          • 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.

          • insecureSsl (boolean) --

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

          • sourceIdentifier (string) --

            An identifier for this project source.

      • 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.

          • 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 build spec file overrides the artifact name. The name specified in a build spec 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.

            • 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 build spec file overrides the artifact name. The name specified in a build spec 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.

        • location (string) --

          Information about the cache location:

          • NO_CACHE : This value is ignored.

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

      • environment (dict) --

        Information about the build environment for this build project.

        • type (string) --

          The type of build environment to use for related builds.

        • 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 15 GB memory and 8 vCPUs for builds.

        • 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 environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. Environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI).

            • type (string) --

              The type of environment variable. Valid values include:

              • PARAMETER_STORE : An environment variable stored in Amazon EC2 Systems Manager Parameter Store.

              • PLAINTEXT : An environment variable in plaintext format.

        • privilegedMode (boolean) --

          Enables running the Docker daemon inside a Docker container. Set to true only if the build project is be used to build Docker images, and the specified build environment image is not provided by AWS CodeBuild with Docker support. Otherwise, all associated builds that attempt to interact with the Docker daemon fail. You must also start the Docker daemon so that builds can interact with it. One way to do this is to initialize the Docker daemon during the install phase of your build spec by running the following build commands. (Do not run these commands if the specified build environment image is provided by AWS CodeBuild with Docker support.)

          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, 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 15 -t 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 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) --

        The tags for 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 five webhook filter types: EVENT , ACTOR_ACCOUNT_ID , HEAD_REF , BASE_REF , and FILE_PATH .

                EVENT

                A webhook event triggers a build when the provided pattern matches one of four event types: PUSH , PULL_REQUEST_CREATED , PULL_REQUEST_UPDATED , and PULL_REQUEST_REOPENED . 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 GitHub Enterprise push events only.

              • 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.

        • 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 .

UpdateWebhook (updated) Link ¶
Changes (request, response)
Request
{'filterGroups': [[{'excludeMatchedPattern': 'boolean',
                    'pattern': 'string',
                    'type': 'EVENT | BASE_REF | HEAD_REF | ACTOR_ACCOUNT_ID | '
                            'FILE_PATH'}]]}
Response
{'webhook': {'filterGroups': [[{'excludeMatchedPattern': 'boolean',
                                'pattern': 'string',
                                'type': 'EVENT | BASE_REF | HEAD_REF | '
                                        'ACTOR_ACCOUNT_ID | FILE_PATH'}]]}}

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',
    filterGroups=[
        [
            {
                'type': 'EVENT'|'BASE_REF'|'HEAD_REF'|'ACTOR_ACCOUNT_ID'|'FILE_PATH',
                'pattern': 'string',
                'excludeMatchedPattern': True|False
            },
        ],
    ],
    rotateSecret=True|False
)
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 if a webhook event can trigger a build. A filter group must pcontain 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 five webhook filter types: EVENT , ACTOR_ACCOUNT_ID , HEAD_REF , BASE_REF , and FILE_PATH .

        EVENT

        A webhook event triggers a build when the provided pattern matches one of four event types: PUSH , PULL_REQUEST_CREATED , PULL_REQUEST_UPDATED , and PULL_REQUEST_REOPENED . 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 GitHub Enterprise push events only.

      • 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 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.

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',
                    'pattern': 'string',
                    'excludeMatchedPattern': True|False
                },
            ],
        ],
        '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 five webhook filter types: EVENT , ACTOR_ACCOUNT_ID , HEAD_REF , BASE_REF , and FILE_PATH .

              EVENT

              A webhook event triggers a build when the provided pattern matches one of four event types: PUSH , PULL_REQUEST_CREATED , PULL_REQUEST_UPDATED , and PULL_REQUEST_REOPENED . 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 GitHub Enterprise push events only.

            • 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.

      • lastModifiedSecret (datetime) --

        A timestamp that indicates the last time a repository's secret token was modified.