libZSservicesZSamazonka-codebuildZSamazonka-codebuild
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.CodeBuild.Types.Build

Description

 
Synopsis

Documentation

data Build Source #

Information about a build.

See: newBuild smart constructor.

Constructors

Build' 

Fields

  • phases :: Maybe [BuildPhase]

    Information about all previous build phases that are complete and information about any current build phase that is not yet complete.

  • buildComplete :: Maybe Bool

    Whether the build is complete. True if complete; otherwise, false.

  • secondaryArtifacts :: Maybe [BuildArtifacts]

    An array of ProjectArtifacts objects.

  • arn :: Maybe Text

    The Amazon Resource Name (ARN) of the build.

  • exportedEnvironmentVariables :: Maybe [ExportedEnvironmentVariable]

    A list of exported environment variables for this build.

    Exported environment variables are used in conjunction with CodePipeline to export environment variables from the current build stage to subsequent stages in the pipeline. For more information, see Working with variables in the CodePipeline User Guide.

  • buildNumber :: Maybe Integer

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

  • startTime :: Maybe POSIX

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

  • artifacts :: Maybe BuildArtifacts

    Information about the output artifacts for the build.

  • environment :: Maybe ProjectEnvironment

    Information about the build environment for this build.

  • initiator :: Maybe Text

    The entity that started the build. Valid values include:

    • If CodePipeline started the build, the pipeline's name (for example, codepipeline/my-demo-pipeline).
    • If an IAM user started the build, the user's name (for example, MyUserName).
    • If the Jenkins plugin for CodeBuild started the build, the string CodeBuild-Jenkins-Plugin.
  • networkInterface :: Maybe NetworkInterface

    Describes a network interface.

  • secondarySourceVersions :: Maybe [ProjectSourceVersion]

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

    • For CodeCommit: the commit ID, branch, or Git tag to use.
    • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.
    • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.
    • For Amazon S3: the version ID of the object that represents the build input ZIP file to use.
  • currentPhase :: Maybe Text

    The current build phase.

  • queuedTimeoutInMinutes :: Maybe Int

    The number of minutes a build is allowed to be queued before it times out.

  • cache :: Maybe ProjectCache

    Information about the cache for the build.

  • secondarySources :: Maybe [ProjectSource]

    An array of ProjectSource objects.

  • debugSession :: Maybe DebugSession

    Contains information about the debug session for this build.

  • sourceVersion :: Maybe Text

    Any version identifier for the version of the source code to be built. If sourceVersion is specified at the project level, then this sourceVersion (at the build level) takes precedence.

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

  • buildBatchArn :: Maybe Text

    The ARN of the batch build that this build is a member of, if applicable.

  • logs :: Maybe LogsLocation

    Information about the build's logs in CloudWatch Logs.

  • resolvedSourceVersion :: Maybe Text

    An identifier for the version of this build's source code.

    • For CodeCommit, GitHub, GitHub Enterprise, and BitBucket, the commit ID.
    • For CodePipeline, the source revision provided by CodePipeline.
    • For Amazon S3, this does not apply.
  • vpcConfig :: Maybe VpcConfig

    If your CodeBuild project accesses resources in an Amazon VPC, you provide this parameter that identifies the VPC ID and the list of security group IDs and subnet IDs. The security groups and subnets must belong to the same VPC. You must provide at least one security group and one subnet ID.

  • endTime :: Maybe POSIX

    When the build process ended, expressed in Unix time format.

  • projectName :: Maybe Text

    The name of the CodeBuild project.

  • buildStatus :: Maybe StatusType

    The current status of the build. Valid values include:

    • FAILED: The build failed.
    • FAULT: The build faulted.
    • IN_PROGRESS: The build is still in progress.
    • STOPPED: The build stopped.
    • SUCCEEDED: The build succeeded.
    • TIMED_OUT: The build timed out.
  • source :: Maybe ProjectSource

    Information about the source code to be built.

  • id :: Maybe Text

    The unique ID for the build.

  • fileSystemLocations :: Maybe [ProjectFileSystemLocation]

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

  • reportArns :: Maybe [Text]

    An array of the ARNs associated with this build's reports.

  • encryptionKey :: Maybe Text

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

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

  • serviceRole :: Maybe Text

    The name of a service role used for this build.

  • timeoutInMinutes :: Maybe Int

    How long, in minutes, for CodeBuild to wait before timing out this build if it does not get marked as completed.

Instances

Instances details
Eq Build Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.Build

Methods

(==) :: Build -> Build -> Bool #

(/=) :: Build -> Build -> Bool #

Read Build Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.Build

Show Build Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.Build

Methods

showsPrec :: Int -> Build -> ShowS #

show :: Build -> String #

showList :: [Build] -> ShowS #

Generic Build Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.Build

Associated Types

type Rep Build :: Type -> Type #

Methods

from :: Build -> Rep Build x #

to :: Rep Build x -> Build #

NFData Build Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.Build

Methods

rnf :: Build -> () #

Hashable Build Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.Build

Methods

hashWithSalt :: Int -> Build -> Int #

hash :: Build -> Int #

FromJSON Build Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.Build

type Rep Build Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.Build

type Rep Build = D1 ('MetaData "Build" "Amazonka.CodeBuild.Types.Build" "libZSservicesZSamazonka-codebuildZSamazonka-codebuild" 'False) (C1 ('MetaCons "Build'" 'PrefixI 'True) (((((S1 ('MetaSel ('Just "phases") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [BuildPhase])) :*: S1 ('MetaSel ('Just "buildComplete") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 ('MetaSel ('Just "secondaryArtifacts") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [BuildArtifacts])) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "exportedEnvironmentVariables") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ExportedEnvironmentVariable])) :*: S1 ('MetaSel ('Just "buildNumber") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer))) :*: (S1 ('MetaSel ('Just "startTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "artifacts") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe BuildArtifacts))))) :*: (((S1 ('MetaSel ('Just "environment") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ProjectEnvironment)) :*: S1 ('MetaSel ('Just "initiator") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "networkInterface") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe NetworkInterface)) :*: S1 ('MetaSel ('Just "secondarySourceVersions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ProjectSourceVersion])))) :*: ((S1 ('MetaSel ('Just "currentPhase") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "queuedTimeoutInMinutes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))) :*: (S1 ('MetaSel ('Just "cache") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ProjectCache)) :*: S1 ('MetaSel ('Just "secondarySources") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ProjectSource])))))) :*: ((((S1 ('MetaSel ('Just "debugSession") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DebugSession)) :*: S1 ('MetaSel ('Just "sourceVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "buildBatchArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "logs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LogsLocation)))) :*: ((S1 ('MetaSel ('Just "resolvedSourceVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "vpcConfig") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VpcConfig))) :*: (S1 ('MetaSel ('Just "endTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) :*: (((S1 ('MetaSel ('Just "buildStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe StatusType)) :*: S1 ('MetaSel ('Just "source") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ProjectSource))) :*: (S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "fileSystemLocations") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ProjectFileSystemLocation])))) :*: ((S1 ('MetaSel ('Just "reportArns") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "encryptionKey") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "serviceRole") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "timeoutInMinutes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))))))))

newBuild :: Build Source #

Create a value of Build with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:phases:Build', build_phases - Information about all previous build phases that are complete and information about any current build phase that is not yet complete.

$sel:buildComplete:Build', build_buildComplete - Whether the build is complete. True if complete; otherwise, false.

$sel:secondaryArtifacts:Build', build_secondaryArtifacts - An array of ProjectArtifacts objects.

$sel:arn:Build', build_arn - The Amazon Resource Name (ARN) of the build.

$sel:exportedEnvironmentVariables:Build', build_exportedEnvironmentVariables - A list of exported environment variables for this build.

Exported environment variables are used in conjunction with CodePipeline to export environment variables from the current build stage to subsequent stages in the pipeline. For more information, see Working with variables in the CodePipeline User Guide.

$sel:buildNumber:Build', build_buildNumber - The number of the build. For each project, the buildNumber of its first build is 1. The buildNumber of each subsequent build is incremented by 1. If a build is deleted, the buildNumber of other builds does not change.

$sel:startTime:Build', build_startTime - When the build process started, expressed in Unix time format.

$sel:artifacts:Build', build_artifacts - Information about the output artifacts for the build.

$sel:environment:Build', build_environment - Information about the build environment for this build.

$sel:initiator:Build', build_initiator - The entity that started the build. Valid values include:

  • If CodePipeline started the build, the pipeline's name (for example, codepipeline/my-demo-pipeline).
  • If an IAM user started the build, the user's name (for example, MyUserName).
  • If the Jenkins plugin for CodeBuild started the build, the string CodeBuild-Jenkins-Plugin.

$sel:networkInterface:Build', build_networkInterface - Describes a network interface.

$sel:secondarySourceVersions:Build', build_secondarySourceVersions - An array of ProjectSourceVersion objects. Each ProjectSourceVersion must be one of:

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

$sel:currentPhase:Build', build_currentPhase - The current build phase.

$sel:queuedTimeoutInMinutes:Build', build_queuedTimeoutInMinutes - The number of minutes a build is allowed to be queued before it times out.

$sel:cache:Build', build_cache - Information about the cache for the build.

$sel:secondarySources:Build', build_secondarySources - An array of ProjectSource objects.

$sel:debugSession:Build', build_debugSession - Contains information about the debug session for this build.

$sel:sourceVersion:Build', build_sourceVersion - Any version identifier for the version of the source code to be built. If sourceVersion is specified at the project level, then this sourceVersion (at the build level) takes precedence.

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

$sel:buildBatchArn:Build', build_buildBatchArn - The ARN of the batch build that this build is a member of, if applicable.

$sel:logs:Build', build_logs - Information about the build's logs in CloudWatch Logs.

$sel:resolvedSourceVersion:Build', build_resolvedSourceVersion - An identifier for the version of this build's source code.

  • For CodeCommit, GitHub, GitHub Enterprise, and BitBucket, the commit ID.
  • For CodePipeline, the source revision provided by CodePipeline.
  • For Amazon S3, this does not apply.

$sel:vpcConfig:Build', build_vpcConfig - If your CodeBuild project accesses resources in an Amazon VPC, you provide this parameter that identifies the VPC ID and the list of security group IDs and subnet IDs. The security groups and subnets must belong to the same VPC. You must provide at least one security group and one subnet ID.

$sel:endTime:Build', build_endTime - When the build process ended, expressed in Unix time format.

$sel:projectName:Build', build_projectName - The name of the CodeBuild project.

$sel:buildStatus:Build', build_buildStatus - The current status of the build. Valid values include:

  • FAILED: The build failed.
  • FAULT: The build faulted.
  • IN_PROGRESS: The build is still in progress.
  • STOPPED: The build stopped.
  • SUCCEEDED: The build succeeded.
  • TIMED_OUT: The build timed out.

$sel:source:Build', build_source - Information about the source code to be built.

$sel:id:Build', build_id - The unique ID for the build.

$sel:fileSystemLocations:Build', build_fileSystemLocations - An array of ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier, location, mountOptions, mountPoint, and type of a file system created using Amazon Elastic File System.

$sel:reportArns:Build', build_reportArns - An array of the ARNs associated with this build's reports.

$sel:encryptionKey:Build', build_encryptionKey - The Key Management Service customer master key (CMK) to be used for encrypting the build output artifacts.

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

$sel:serviceRole:Build', build_serviceRole - The name of a service role used for this build.

$sel:timeoutInMinutes:Build', build_timeoutInMinutes - How long, in minutes, for CodeBuild to wait before timing out this build if it does not get marked as completed.

build_phases :: Lens' Build (Maybe [BuildPhase]) Source #

Information about all previous build phases that are complete and information about any current build phase that is not yet complete.

build_buildComplete :: Lens' Build (Maybe Bool) Source #

Whether the build is complete. True if complete; otherwise, false.

build_secondaryArtifacts :: Lens' Build (Maybe [BuildArtifacts]) Source #

An array of ProjectArtifacts objects.

build_arn :: Lens' Build (Maybe Text) Source #

The Amazon Resource Name (ARN) of the build.

build_exportedEnvironmentVariables :: Lens' Build (Maybe [ExportedEnvironmentVariable]) Source #

A list of exported environment variables for this build.

Exported environment variables are used in conjunction with CodePipeline to export environment variables from the current build stage to subsequent stages in the pipeline. For more information, see Working with variables in the CodePipeline User Guide.

build_buildNumber :: Lens' Build (Maybe Integer) Source #

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

build_startTime :: Lens' Build (Maybe UTCTime) Source #

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

build_artifacts :: Lens' Build (Maybe BuildArtifacts) Source #

Information about the output artifacts for the build.

build_environment :: Lens' Build (Maybe ProjectEnvironment) Source #

Information about the build environment for this build.

build_initiator :: Lens' Build (Maybe Text) Source #

The entity that started the build. Valid values include:

  • If CodePipeline started the build, the pipeline's name (for example, codepipeline/my-demo-pipeline).
  • If an IAM user started the build, the user's name (for example, MyUserName).
  • If the Jenkins plugin for CodeBuild started the build, the string CodeBuild-Jenkins-Plugin.

build_networkInterface :: Lens' Build (Maybe NetworkInterface) Source #

Describes a network interface.

build_secondarySourceVersions :: Lens' Build (Maybe [ProjectSourceVersion]) Source #

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

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

build_currentPhase :: Lens' Build (Maybe Text) Source #

The current build phase.

build_queuedTimeoutInMinutes :: Lens' Build (Maybe Int) Source #

The number of minutes a build is allowed to be queued before it times out.

build_cache :: Lens' Build (Maybe ProjectCache) Source #

Information about the cache for the build.

build_secondarySources :: Lens' Build (Maybe [ProjectSource]) Source #

An array of ProjectSource objects.

build_debugSession :: Lens' Build (Maybe DebugSession) Source #

Contains information about the debug session for this build.

build_sourceVersion :: Lens' Build (Maybe Text) Source #

Any version identifier for the version of the source code to be built. If sourceVersion is specified at the project level, then this sourceVersion (at the build level) takes precedence.

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

build_buildBatchArn :: Lens' Build (Maybe Text) Source #

The ARN of the batch build that this build is a member of, if applicable.

build_logs :: Lens' Build (Maybe LogsLocation) Source #

Information about the build's logs in CloudWatch Logs.

build_resolvedSourceVersion :: Lens' Build (Maybe Text) Source #

An identifier for the version of this build's source code.

  • For CodeCommit, GitHub, GitHub Enterprise, and BitBucket, the commit ID.
  • For CodePipeline, the source revision provided by CodePipeline.
  • For Amazon S3, this does not apply.

build_vpcConfig :: Lens' Build (Maybe VpcConfig) Source #

If your CodeBuild project accesses resources in an Amazon VPC, you provide this parameter that identifies the VPC ID and the list of security group IDs and subnet IDs. The security groups and subnets must belong to the same VPC. You must provide at least one security group and one subnet ID.

build_endTime :: Lens' Build (Maybe UTCTime) Source #

When the build process ended, expressed in Unix time format.

build_projectName :: Lens' Build (Maybe Text) Source #

The name of the CodeBuild project.

build_buildStatus :: Lens' Build (Maybe StatusType) Source #

The current status of the build. Valid values include:

  • FAILED: The build failed.
  • FAULT: The build faulted.
  • IN_PROGRESS: The build is still in progress.
  • STOPPED: The build stopped.
  • SUCCEEDED: The build succeeded.
  • TIMED_OUT: The build timed out.

build_source :: Lens' Build (Maybe ProjectSource) Source #

Information about the source code to be built.

build_id :: Lens' Build (Maybe Text) Source #

The unique ID for the build.

build_fileSystemLocations :: Lens' Build (Maybe [ProjectFileSystemLocation]) Source #

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

build_reportArns :: Lens' Build (Maybe [Text]) Source #

An array of the ARNs associated with this build's reports.

build_encryptionKey :: Lens' Build (Maybe Text) Source #

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

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

build_serviceRole :: Lens' Build (Maybe Text) Source #

The name of a service role used for this build.

build_timeoutInMinutes :: Lens' Build (Maybe Int) Source #

How long, in minutes, for CodeBuild to wait before timing out this build if it does not get marked as completed.