amazonka-codebuild-1.6.1: Amazon CodeBuild SDK.

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

Network.AWS.CodeBuild

Contents

Description

AWS CodeBuild

AWS CodeBuild is a fully managed build service in the cloud. AWS CodeBuild compiles your source code, runs unit tests, and produces artifacts that are ready to deploy. AWS CodeBuild eliminates the need to provision, manage, and scale your own build servers. It provides prepackaged build environments for the most popular programming languages and build tools, such as Apache Maven, Gradle, and more. You can also fully customize build environments in AWS CodeBuild to use your own build tools. AWS CodeBuild scales automatically to meet peak build requests, and you pay only for the build time you consume. For more information about AWS CodeBuild, see the AWS CodeBuild User Guide .

AWS CodeBuild supports these operations:

  • BatchDeleteBuilds : Deletes one or more builds.
  • BatchGetProjects : Gets information about one or more build projects. A build project defines how AWS CodeBuild will run a build. This includes information such as where to get the source code to build, the build environment to use, the build commands to run, and where to store the build output. A build environment represents a combination of operating system, programming language runtime, and tools that AWS CodeBuild will use to run a build. Also, you can add tags to build projects to help manage your resources and costs.
  • CreateProject : Creates a build project.
  • CreateWebhook : For an existing AWS CodeBuild build project that has its source code stored in a GitHub repository, enables AWS CodeBuild to begin automatically rebuilding the source code every time a code change is pushed to the repository.
  • UpdateWebhook : Changes the settings of an existing webhook.
  • DeleteProject : Deletes a build project.
  • DeleteWebhook : For an existing AWS CodeBuild build project that has its source code stored in a GitHub repository, stops AWS CodeBuild from automatically rebuilding the source code every time a code change is pushed to the repository.
  • ListProjects : Gets a list of build project names, with each build project name representing a single build project.
  • UpdateProject : Changes the settings of an existing build project.
  • BatchGetBuilds : Gets information about one or more builds.
  • ListBuilds : Gets a list of build IDs, with each build ID representing a single build.
  • ListBuildsForProject : Gets a list of build IDs for the specified build project, with each build ID representing a single build.
  • StartBuild : Starts running a build.
  • StopBuild : Attempts to stop running a build.
  • ListCuratedEnvironmentImages : Gets information about Docker images that are managed by AWS CodeBuild.
Synopsis

Service Configuration

codeBuild :: Service Source #

API version 2016-10-06 of the Amazon CodeBuild SDK configuration.

Errors

Error matchers are designed for use with the functions provided by Control.Exception.Lens. This allows catching (and rethrowing) service specific errors returned by CodeBuild.

ResourceAlreadyExistsException

_ResourceAlreadyExistsException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified AWS resource cannot be created, because an AWS resource with the same settings already exists.

OAuthProviderException

_OAuthProviderException :: AsError a => Getting (First ServiceError) a ServiceError Source #

There was a problem with the underlying OAuth provider.

AccountLimitExceededException

_AccountLimitExceededException :: AsError a => Getting (First ServiceError) a ServiceError Source #

An AWS service limit was exceeded for the calling AWS account.

InvalidInputException

_InvalidInputException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The input value that was provided is not valid.

ResourceNotFoundException

_ResourceNotFoundException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified AWS resource cannot be found.

Waiters

Waiters poll by repeatedly sending a request until some remote success condition configured by the Wait specification is fulfilled. The Wait specification determines how many attempts should be made, in addition to delay and retry strategies.

Operations

Some AWS operations return results that are incomplete and require subsequent requests in order to obtain the entire result set. The process of sending subsequent requests to continue where a previous request left off is called pagination. For example, the ListObjects operation of Amazon S3 returns up to 1000 objects at a time, and you must send subsequent requests with the appropriate Marker in order to retrieve the next page of results.

Operations that have an AWSPager instance can transparently perform subsequent requests, correctly setting Markers and other request facets to iterate through the entire result set of a truncated API operation. Operations which support this have an additional note in the documentation.

Many operations have the ability to filter results on the server side. See the individual operation parameters for details.

ListProjects (Paginated)

DeleteProject

UpdateProject

ListBuilds (Paginated)

CreateWebhook

StartBuild

ListBuildsForProject (Paginated)

BatchGetProjects

BatchGetBuilds

UpdateWebhook

DeleteWebhook

InvalidateProjectCache

BatchDeleteBuilds

ListCuratedEnvironmentImages

StopBuild

CreateProject

Types

ArtifactNamespace

data ArtifactNamespace Source #

Constructors

ANBuildId 
ANNone 
Instances
Bounded ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Enum ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Eq ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Data ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ArtifactNamespace -> c ArtifactNamespace #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ArtifactNamespace #

toConstr :: ArtifactNamespace -> Constr #

dataTypeOf :: ArtifactNamespace -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c ArtifactNamespace) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ArtifactNamespace) #

gmapT :: (forall b. Data b => b -> b) -> ArtifactNamespace -> ArtifactNamespace #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ArtifactNamespace -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ArtifactNamespace -> r #

gmapQ :: (forall d. Data d => d -> u) -> ArtifactNamespace -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ArtifactNamespace -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ArtifactNamespace -> m ArtifactNamespace #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ArtifactNamespace -> m ArtifactNamespace #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ArtifactNamespace -> m ArtifactNamespace #

Ord ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Read ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Show ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Generic ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Associated Types

type Rep ArtifactNamespace :: Type -> Type #

Hashable ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToJSON ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromJSON ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToHeader ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToQuery ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToByteString ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromText ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToText ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

NFData ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

rnf :: ArtifactNamespace -> () #

type Rep ArtifactNamespace Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

type Rep ArtifactNamespace = D1 (MetaData "ArtifactNamespace" "Network.AWS.CodeBuild.Types.Sum" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "ANBuildId" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "ANNone" PrefixI False) (U1 :: Type -> Type))

ArtifactPackaging

data ArtifactPackaging Source #

Constructors

None 
Zip 
Instances
Bounded ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Enum ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Eq ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Data ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ArtifactPackaging -> c ArtifactPackaging #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ArtifactPackaging #

toConstr :: ArtifactPackaging -> Constr #

dataTypeOf :: ArtifactPackaging -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c ArtifactPackaging) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ArtifactPackaging) #

gmapT :: (forall b. Data b => b -> b) -> ArtifactPackaging -> ArtifactPackaging #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ArtifactPackaging -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ArtifactPackaging -> r #

gmapQ :: (forall d. Data d => d -> u) -> ArtifactPackaging -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ArtifactPackaging -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ArtifactPackaging -> m ArtifactPackaging #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ArtifactPackaging -> m ArtifactPackaging #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ArtifactPackaging -> m ArtifactPackaging #

Ord ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Read ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Show ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Generic ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Associated Types

type Rep ArtifactPackaging :: Type -> Type #

Hashable ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToJSON ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromJSON ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToHeader ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToQuery ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToByteString ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromText ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToText ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

NFData ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

rnf :: ArtifactPackaging -> () #

type Rep ArtifactPackaging Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

type Rep ArtifactPackaging = D1 (MetaData "ArtifactPackaging" "Network.AWS.CodeBuild.Types.Sum" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "None" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Zip" PrefixI False) (U1 :: Type -> Type))

ArtifactsType

data ArtifactsType Source #

Constructors

Codepipeline 
NoArtifacts 
S3 
Instances
Bounded ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Enum ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Eq ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Data ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ArtifactsType -> c ArtifactsType #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ArtifactsType #

toConstr :: ArtifactsType -> Constr #

dataTypeOf :: ArtifactsType -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c ArtifactsType) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ArtifactsType) #

gmapT :: (forall b. Data b => b -> b) -> ArtifactsType -> ArtifactsType #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ArtifactsType -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ArtifactsType -> r #

gmapQ :: (forall d. Data d => d -> u) -> ArtifactsType -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ArtifactsType -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ArtifactsType -> m ArtifactsType #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ArtifactsType -> m ArtifactsType #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ArtifactsType -> m ArtifactsType #

Ord ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Read ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Show ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Generic ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Associated Types

type Rep ArtifactsType :: Type -> Type #

Hashable ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToJSON ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromJSON ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToHeader ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToQuery ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToByteString ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromText ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToText ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

toText :: ArtifactsType -> Text #

NFData ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

rnf :: ArtifactsType -> () #

type Rep ArtifactsType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

type Rep ArtifactsType = D1 (MetaData "ArtifactsType" "Network.AWS.CodeBuild.Types.Sum" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "Codepipeline" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "NoArtifacts" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "S3" PrefixI False) (U1 :: Type -> Type)))

BuildPhaseType

data BuildPhaseType Source #

Instances
Bounded BuildPhaseType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Enum BuildPhaseType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Eq BuildPhaseType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Data BuildPhaseType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> BuildPhaseType -> c BuildPhaseType #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c BuildPhaseType #

toConstr :: BuildPhaseType -> Constr #

dataTypeOf :: BuildPhaseType -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c BuildPhaseType) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c BuildPhaseType) #

gmapT :: (forall b. Data b => b -> b) -> BuildPhaseType -> BuildPhaseType #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> BuildPhaseType -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> BuildPhaseType -> r #

gmapQ :: (forall d. Data d => d -> u) -> BuildPhaseType -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> BuildPhaseType -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> BuildPhaseType -> m BuildPhaseType #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> BuildPhaseType -> m BuildPhaseType #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> BuildPhaseType -> m BuildPhaseType #

Ord BuildPhaseType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Read BuildPhaseType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Show BuildPhaseType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Generic BuildPhaseType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Associated Types

type Rep BuildPhaseType :: Type -> Type #

Hashable BuildPhaseType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromJSON BuildPhaseType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToHeader BuildPhaseType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToQuery BuildPhaseType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToByteString BuildPhaseType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromText BuildPhaseType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToText BuildPhaseType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

NFData BuildPhaseType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

rnf :: BuildPhaseType -> () #

type Rep BuildPhaseType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

type Rep BuildPhaseType = D1 (MetaData "BuildPhaseType" "Network.AWS.CodeBuild.Types.Sum" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (((C1 (MetaCons "Build" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Completed" PrefixI False) (U1 :: Type -> Type)) :+: (C1 (MetaCons "DownloadSource" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "Finalizing" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Install" PrefixI False) (U1 :: Type -> Type)))) :+: ((C1 (MetaCons "PostBuild" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "PreBuild" PrefixI False) (U1 :: Type -> Type)) :+: (C1 (MetaCons "Provisioning" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "Submitted" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "UploadArtifacts" PrefixI False) (U1 :: Type -> Type)))))

CacheType

data CacheType Source #

Constructors

CTNoCache 
CTS3 
Instances
Bounded CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Enum CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Eq CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Data CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> CacheType -> c CacheType #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c CacheType #

toConstr :: CacheType -> Constr #

dataTypeOf :: CacheType -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c CacheType) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c CacheType) #

gmapT :: (forall b. Data b => b -> b) -> CacheType -> CacheType #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> CacheType -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> CacheType -> r #

gmapQ :: (forall d. Data d => d -> u) -> CacheType -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> CacheType -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> CacheType -> m CacheType #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> CacheType -> m CacheType #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> CacheType -> m CacheType #

Ord CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Read CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Show CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Generic CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Associated Types

type Rep CacheType :: Type -> Type #

Hashable CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToJSON CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromJSON CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToHeader CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToQuery CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToByteString CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

toBS :: CacheType -> ByteString #

FromText CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToText CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

toText :: CacheType -> Text #

NFData CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

rnf :: CacheType -> () #

type Rep CacheType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

type Rep CacheType = D1 (MetaData "CacheType" "Network.AWS.CodeBuild.Types.Sum" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "CTNoCache" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "CTS3" PrefixI False) (U1 :: Type -> Type))

ComputeType

data ComputeType Source #

Instances
Bounded ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Enum ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Eq ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Data ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ComputeType -> c ComputeType #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ComputeType #

toConstr :: ComputeType -> Constr #

dataTypeOf :: ComputeType -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c ComputeType) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ComputeType) #

gmapT :: (forall b. Data b => b -> b) -> ComputeType -> ComputeType #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ComputeType -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ComputeType -> r #

gmapQ :: (forall d. Data d => d -> u) -> ComputeType -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ComputeType -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ComputeType -> m ComputeType #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ComputeType -> m ComputeType #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ComputeType -> m ComputeType #

Ord ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Read ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Show ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Generic ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Associated Types

type Rep ComputeType :: Type -> Type #

Hashable ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToJSON ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromJSON ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToHeader ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToQuery ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToByteString ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromText ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToText ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

toText :: ComputeType -> Text #

NFData ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

rnf :: ComputeType -> () #

type Rep ComputeType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

type Rep ComputeType = D1 (MetaData "ComputeType" "Network.AWS.CodeBuild.Types.Sum" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "BuildGENERAL1Large" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "BuildGENERAL1Medium" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "BuildGENERAL1Small" PrefixI False) (U1 :: Type -> Type)))

EnvironmentType

data EnvironmentType Source #

Constructors

LinuxContainer 
Instances
Bounded EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Enum EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Eq EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Data EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> EnvironmentType -> c EnvironmentType #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c EnvironmentType #

toConstr :: EnvironmentType -> Constr #

dataTypeOf :: EnvironmentType -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c EnvironmentType) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c EnvironmentType) #

gmapT :: (forall b. Data b => b -> b) -> EnvironmentType -> EnvironmentType #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentType -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentType -> r #

gmapQ :: (forall d. Data d => d -> u) -> EnvironmentType -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> EnvironmentType -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> EnvironmentType -> m EnvironmentType #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentType -> m EnvironmentType #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentType -> m EnvironmentType #

Ord EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Read EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Show EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Generic EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Associated Types

type Rep EnvironmentType :: Type -> Type #

Hashable EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToJSON EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromJSON EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToHeader EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToQuery EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToByteString EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromText EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToText EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

NFData EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

rnf :: EnvironmentType -> () #

type Rep EnvironmentType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

type Rep EnvironmentType = D1 (MetaData "EnvironmentType" "Network.AWS.CodeBuild.Types.Sum" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "LinuxContainer" PrefixI False) (U1 :: Type -> Type))

EnvironmentVariableType

data EnvironmentVariableType Source #

Constructors

ParameterStore 
Plaintext 
Instances
Bounded EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Enum EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Eq EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Data EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> EnvironmentVariableType -> c EnvironmentVariableType #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c EnvironmentVariableType #

toConstr :: EnvironmentVariableType -> Constr #

dataTypeOf :: EnvironmentVariableType -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c EnvironmentVariableType) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c EnvironmentVariableType) #

gmapT :: (forall b. Data b => b -> b) -> EnvironmentVariableType -> EnvironmentVariableType #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentVariableType -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentVariableType -> r #

gmapQ :: (forall d. Data d => d -> u) -> EnvironmentVariableType -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> EnvironmentVariableType -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> EnvironmentVariableType -> m EnvironmentVariableType #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentVariableType -> m EnvironmentVariableType #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentVariableType -> m EnvironmentVariableType #

Ord EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Read EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Show EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Generic EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Associated Types

type Rep EnvironmentVariableType :: Type -> Type #

Hashable EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToJSON EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromJSON EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToHeader EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToQuery EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToByteString EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromText EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToText EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

NFData EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

rnf :: EnvironmentVariableType -> () #

type Rep EnvironmentVariableType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

type Rep EnvironmentVariableType = D1 (MetaData "EnvironmentVariableType" "Network.AWS.CodeBuild.Types.Sum" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "ParameterStore" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Plaintext" PrefixI False) (U1 :: Type -> Type))

LanguageType

data LanguageType Source #

Instances
Bounded LanguageType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Enum LanguageType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Eq LanguageType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Data LanguageType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> LanguageType -> c LanguageType #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c LanguageType #

toConstr :: LanguageType -> Constr #

dataTypeOf :: LanguageType -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c LanguageType) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c LanguageType) #

gmapT :: (forall b. Data b => b -> b) -> LanguageType -> LanguageType #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> LanguageType -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> LanguageType -> r #

gmapQ :: (forall d. Data d => d -> u) -> LanguageType -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> LanguageType -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> LanguageType -> m LanguageType #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> LanguageType -> m LanguageType #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> LanguageType -> m LanguageType #

Ord LanguageType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Read LanguageType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Show LanguageType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Generic LanguageType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Associated Types

type Rep LanguageType :: Type -> Type #

Hashable LanguageType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromJSON LanguageType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToHeader LanguageType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToQuery LanguageType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToByteString LanguageType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromText LanguageType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToText LanguageType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

toText :: LanguageType -> Text #

NFData LanguageType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

rnf :: LanguageType -> () #

type Rep LanguageType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

type Rep LanguageType = D1 (MetaData "LanguageType" "Network.AWS.CodeBuild.Types.Sum" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (((C1 (MetaCons "Android" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Base" PrefixI False) (U1 :: Type -> Type)) :+: (C1 (MetaCons "Docker" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Dotnet" PrefixI False) (U1 :: Type -> Type))) :+: ((C1 (MetaCons "Golang" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Java" PrefixI False) (U1 :: Type -> Type)) :+: (C1 (MetaCons "NodeJs" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "Python" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Ruby" PrefixI False) (U1 :: Type -> Type)))))

PlatformType

data PlatformType Source #

Constructors

AmazonLinux 
Debian 
Ubuntu 
Instances
Bounded PlatformType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Enum PlatformType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Eq PlatformType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Data PlatformType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PlatformType -> c PlatformType #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PlatformType #

toConstr :: PlatformType -> Constr #

dataTypeOf :: PlatformType -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c PlatformType) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PlatformType) #

gmapT :: (forall b. Data b => b -> b) -> PlatformType -> PlatformType #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PlatformType -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PlatformType -> r #

gmapQ :: (forall d. Data d => d -> u) -> PlatformType -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PlatformType -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PlatformType -> m PlatformType #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PlatformType -> m PlatformType #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PlatformType -> m PlatformType #

Ord PlatformType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Read PlatformType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Show PlatformType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Generic PlatformType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Associated Types

type Rep PlatformType :: Type -> Type #

Hashable PlatformType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromJSON PlatformType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToHeader PlatformType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToQuery PlatformType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToByteString PlatformType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromText PlatformType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToText PlatformType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

toText :: PlatformType -> Text #

NFData PlatformType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

rnf :: PlatformType -> () #

type Rep PlatformType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

type Rep PlatformType = D1 (MetaData "PlatformType" "Network.AWS.CodeBuild.Types.Sum" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "AmazonLinux" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "Debian" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Ubuntu" PrefixI False) (U1 :: Type -> Type)))

ProjectSortByType

data ProjectSortByType Source #

Instances
Bounded ProjectSortByType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Enum ProjectSortByType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Eq ProjectSortByType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Data ProjectSortByType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ProjectSortByType -> c ProjectSortByType #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ProjectSortByType #

toConstr :: ProjectSortByType -> Constr #

dataTypeOf :: ProjectSortByType -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c ProjectSortByType) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ProjectSortByType) #

gmapT :: (forall b. Data b => b -> b) -> ProjectSortByType -> ProjectSortByType #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ProjectSortByType -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ProjectSortByType -> r #

gmapQ :: (forall d. Data d => d -> u) -> ProjectSortByType -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ProjectSortByType -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ProjectSortByType -> m ProjectSortByType #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ProjectSortByType -> m ProjectSortByType #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ProjectSortByType -> m ProjectSortByType #

Ord ProjectSortByType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Read ProjectSortByType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Show ProjectSortByType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Generic ProjectSortByType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Associated Types

type Rep ProjectSortByType :: Type -> Type #

Hashable ProjectSortByType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToJSON ProjectSortByType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToHeader ProjectSortByType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToQuery ProjectSortByType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToByteString ProjectSortByType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromText ProjectSortByType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToText ProjectSortByType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

NFData ProjectSortByType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

rnf :: ProjectSortByType -> () #

type Rep ProjectSortByType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

type Rep ProjectSortByType = D1 (MetaData "ProjectSortByType" "Network.AWS.CodeBuild.Types.Sum" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "CreatedTime" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "LastModifiedTime" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Name" PrefixI False) (U1 :: Type -> Type)))

SortOrderType

data SortOrderType Source #

Constructors

Ascending 
Descending 
Instances
Bounded SortOrderType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Enum SortOrderType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Eq SortOrderType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Data SortOrderType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SortOrderType -> c SortOrderType #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SortOrderType #

toConstr :: SortOrderType -> Constr #

dataTypeOf :: SortOrderType -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c SortOrderType) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SortOrderType) #

gmapT :: (forall b. Data b => b -> b) -> SortOrderType -> SortOrderType #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SortOrderType -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SortOrderType -> r #

gmapQ :: (forall d. Data d => d -> u) -> SortOrderType -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SortOrderType -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SortOrderType -> m SortOrderType #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SortOrderType -> m SortOrderType #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SortOrderType -> m SortOrderType #

Ord SortOrderType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Read SortOrderType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Show SortOrderType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Generic SortOrderType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Associated Types

type Rep SortOrderType :: Type -> Type #

Hashable SortOrderType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToJSON SortOrderType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToHeader SortOrderType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToQuery SortOrderType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToByteString SortOrderType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromText SortOrderType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToText SortOrderType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

toText :: SortOrderType -> Text #

NFData SortOrderType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

rnf :: SortOrderType -> () #

type Rep SortOrderType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

type Rep SortOrderType = D1 (MetaData "SortOrderType" "Network.AWS.CodeBuild.Types.Sum" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "Ascending" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Descending" PrefixI False) (U1 :: Type -> Type))

SourceAuthType

data SourceAuthType Source #

Constructors

Oauth 
Instances
Bounded SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Enum SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Eq SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Data SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SourceAuthType -> c SourceAuthType #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SourceAuthType #

toConstr :: SourceAuthType -> Constr #

dataTypeOf :: SourceAuthType -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c SourceAuthType) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SourceAuthType) #

gmapT :: (forall b. Data b => b -> b) -> SourceAuthType -> SourceAuthType #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SourceAuthType -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SourceAuthType -> r #

gmapQ :: (forall d. Data d => d -> u) -> SourceAuthType -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SourceAuthType -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SourceAuthType -> m SourceAuthType #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceAuthType -> m SourceAuthType #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceAuthType -> m SourceAuthType #

Ord SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Read SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Show SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Generic SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Associated Types

type Rep SourceAuthType :: Type -> Type #

Hashable SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToJSON SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromJSON SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToHeader SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToQuery SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToByteString SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromText SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToText SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

NFData SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

rnf :: SourceAuthType -> () #

type Rep SourceAuthType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

type Rep SourceAuthType = D1 (MetaData "SourceAuthType" "Network.AWS.CodeBuild.Types.Sum" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "Oauth" PrefixI False) (U1 :: Type -> Type))

SourceType

data SourceType Source #

Instances
Bounded SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Enum SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Eq SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Data SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SourceType -> c SourceType #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SourceType #

toConstr :: SourceType -> Constr #

dataTypeOf :: SourceType -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c SourceType) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SourceType) #

gmapT :: (forall b. Data b => b -> b) -> SourceType -> SourceType #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SourceType -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SourceType -> r #

gmapQ :: (forall d. Data d => d -> u) -> SourceType -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SourceType -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SourceType -> m SourceType #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceType -> m SourceType #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceType -> m SourceType #

Ord SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Read SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Show SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Generic SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Associated Types

type Rep SourceType :: Type -> Type #

Hashable SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToJSON SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromJSON SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToHeader SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToQuery SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToByteString SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromText SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToText SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

toText :: SourceType -> Text #

NFData SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

rnf :: SourceType -> () #

type Rep SourceType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

type Rep SourceType = D1 (MetaData "SourceType" "Network.AWS.CodeBuild.Types.Sum" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) ((C1 (MetaCons "STBitbucket" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "STCodecommit" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "STCodepipeline" PrefixI False) (U1 :: Type -> Type))) :+: (C1 (MetaCons "STGithub" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "STGithubEnterprise" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "STS3" PrefixI False) (U1 :: Type -> Type))))

StatusType

data StatusType Source #

Instances
Bounded StatusType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Enum StatusType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Eq StatusType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Data StatusType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> StatusType -> c StatusType #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c StatusType #

toConstr :: StatusType -> Constr #

dataTypeOf :: StatusType -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c StatusType) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c StatusType) #

gmapT :: (forall b. Data b => b -> b) -> StatusType -> StatusType #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> StatusType -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> StatusType -> r #

gmapQ :: (forall d. Data d => d -> u) -> StatusType -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> StatusType -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> StatusType -> m StatusType #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> StatusType -> m StatusType #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> StatusType -> m StatusType #

Ord StatusType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Read StatusType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Show StatusType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Generic StatusType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Associated Types

type Rep StatusType :: Type -> Type #

Hashable StatusType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromJSON StatusType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToHeader StatusType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToQuery StatusType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToByteString StatusType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

FromText StatusType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

ToText StatusType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

toText :: StatusType -> Text #

NFData StatusType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

Methods

rnf :: StatusType -> () #

type Rep StatusType Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Sum

type Rep StatusType = D1 (MetaData "StatusType" "Network.AWS.CodeBuild.Types.Sum" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) ((C1 (MetaCons "Failed" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "Fault" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "InProgress" PrefixI False) (U1 :: Type -> Type))) :+: (C1 (MetaCons "Stopped" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "Succeeded" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "TimedOut" PrefixI False) (U1 :: Type -> Type))))

Build

data Build Source #

Information about a build.

See: build smart constructor.

Instances
Eq Build Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

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

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

Data Build Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Build -> c Build #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Build #

toConstr :: Build -> Constr #

dataTypeOf :: Build -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c Build) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Build) #

gmapT :: (forall b. Data b => b -> b) -> Build -> Build #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Build -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Build -> r #

gmapQ :: (forall d. Data d => d -> u) -> Build -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Build -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Build -> m Build #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Build -> m Build #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Build -> m Build #

Read Build Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show Build Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

showsPrec :: Int -> Build -> ShowS #

show :: Build -> String #

showList :: [Build] -> ShowS #

Generic Build Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep Build :: Type -> Type #

Methods

from :: Build -> Rep Build x #

to :: Rep Build x -> Build #

Hashable Build Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

hashWithSalt :: Int -> Build -> Int #

hash :: Build -> Int #

FromJSON Build Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData Build Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: Build -> () #

type Rep Build Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep Build = D1 (MetaData "Build" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "Build'" PrefixI True) ((((S1 (MetaSel (Just "_bPhases") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [BuildPhase])) :*: S1 (MetaSel (Just "_bBuildComplete") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 (MetaSel (Just "_bArn") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_bStartTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX)))) :*: ((S1 (MetaSel (Just "_bArtifacts") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe BuildArtifacts)) :*: S1 (MetaSel (Just "_bEnvironment") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ProjectEnvironment))) :*: (S1 (MetaSel (Just "_bInitiator") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_bNetworkInterface") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe NetworkInterface)) :*: S1 (MetaSel (Just "_bCurrentPhase") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))) :*: (((S1 (MetaSel (Just "_bCache") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ProjectCache)) :*: S1 (MetaSel (Just "_bSourceVersion") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_bLogs") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe LogsLocation)) :*: (S1 (MetaSel (Just "_bVpcConfig") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe VPCConfig)) :*: S1 (MetaSel (Just "_bEndTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX))))) :*: ((S1 (MetaSel (Just "_bProjectName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_bBuildStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe StatusType))) :*: (S1 (MetaSel (Just "_bSource") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ProjectSource)) :*: (S1 (MetaSel (Just "_bId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_bTimeoutInMinutes") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Int))))))))

build :: Build Source #

Creates a value of Build with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • bPhases - Information about all previous build phases that are completed and information about any current build phase that is not yet complete.
  • bBuildComplete - Whether the build has finished. True if completed; otherwise, false.
  • bArn - The Amazon Resource Name (ARN) of the build.
  • bStartTime - When the build process started, expressed in Unix time format.
  • bArtifacts - Information about the output artifacts for the build.
  • bEnvironment - Information about the build environment for this build.
  • bInitiator - The entity that started the build. Valid values include: * If AWS CodePipeline started the build, the pipeline's name (for example, codepipeline/my-demo-pipeline ). * If an AWS Identity and Access Management (IAM) user started the build, the user's name (for example MyUserName ). * If the Jenkins plugin for AWS CodeBuild started the build, the string CodeBuild-Jenkins-Plugin .
  • bNetworkInterface - Describes a network interface.
  • bCurrentPhase - The current build phase.
  • bCache - Information about the cache for the build.
  • bSourceVersion - Any version identifier for the version of the source code to be built.
  • bLogs - Information about the build's logs in Amazon CloudWatch Logs.
  • bVpcConfig - If your AWS CodeBuild project accesses resources in an Amazon VPC, you provide this parameter that identifies the VPC ID and the list of security group IDs and subnet IDs. The security groups and subnets must belong to the same VPC. You must provide at least one security group and one subnet ID.
  • bEndTime - When the build process ended, expressed in Unix time format.
  • bProjectName - The name of the AWS CodeBuild project.
  • bBuildStatus - 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.
  • bSource - Information about the source code to be built.
  • bId - The unique ID for the build.
  • bTimeoutInMinutes - How long, in minutes, for AWS CodeBuild to wait before timing out this build if it does not get marked as completed.

bPhases :: Lens' Build [BuildPhase] Source #

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

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

Whether the build has finished. True if completed; otherwise, false.

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

The Amazon Resource Name (ARN) of the build.

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

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

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

Information about the output artifacts for the build.

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

Information about the build environment for this build.

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

The entity that started the build. Valid values include: * If AWS CodePipeline started the build, the pipeline's name (for example, codepipeline/my-demo-pipeline ). * If an AWS Identity and Access Management (IAM) user started the build, the user's name (for example MyUserName ). * If the Jenkins plugin for AWS CodeBuild started the build, the string CodeBuild-Jenkins-Plugin .

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

Describes a network interface.

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

The current build phase.

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

Information about the cache for the build.

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

Any version identifier for the version of the source code to be built.

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

Information about the build's logs in Amazon CloudWatch Logs.

bVpcConfig :: Lens' Build (Maybe VPCConfig) Source #

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

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

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

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

The name of the AWS CodeBuild project.

bBuildStatus :: 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.

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

Information about the source code to be built.

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

The unique ID for the build.

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

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

BuildArtifacts

data BuildArtifacts Source #

Information about build output artifacts.

See: buildArtifacts smart constructor.

Instances
Eq BuildArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Data BuildArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> BuildArtifacts -> c BuildArtifacts #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c BuildArtifacts #

toConstr :: BuildArtifacts -> Constr #

dataTypeOf :: BuildArtifacts -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c BuildArtifacts) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c BuildArtifacts) #

gmapT :: (forall b. Data b => b -> b) -> BuildArtifacts -> BuildArtifacts #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> BuildArtifacts -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> BuildArtifacts -> r #

gmapQ :: (forall d. Data d => d -> u) -> BuildArtifacts -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> BuildArtifacts -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> BuildArtifacts -> m BuildArtifacts #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> BuildArtifacts -> m BuildArtifacts #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> BuildArtifacts -> m BuildArtifacts #

Read BuildArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show BuildArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic BuildArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep BuildArtifacts :: Type -> Type #

Hashable BuildArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON BuildArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData BuildArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: BuildArtifacts -> () #

type Rep BuildArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep BuildArtifacts = D1 (MetaData "BuildArtifacts" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "BuildArtifacts'" PrefixI True) (S1 (MetaSel (Just "_baLocation") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_baMd5sum") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_baSha256sum") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

buildArtifacts :: BuildArtifacts Source #

Creates a value of BuildArtifacts with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • baLocation - Information about the location of the build artifacts.
  • baMd5sum - The MD5 hash of the build artifact. You can use this hash along with a checksum tool to confirm both file integrity and authenticity.
  • baSha256sum - The SHA-256 hash of the build artifact. You can use this hash along with a checksum tool to confirm both file integrity and authenticity.

baLocation :: Lens' BuildArtifacts (Maybe Text) Source #

Information about the location of the build artifacts.

baMd5sum :: Lens' BuildArtifacts (Maybe Text) Source #

The MD5 hash of the build artifact. You can use this hash along with a checksum tool to confirm both file integrity and authenticity.

baSha256sum :: Lens' BuildArtifacts (Maybe Text) Source #

The SHA-256 hash of the build artifact. You can use this hash along with a checksum tool to confirm both file integrity and authenticity.

BuildNotDeleted

data BuildNotDeleted Source #

Information about a build that could not be successfully deleted.

See: buildNotDeleted smart constructor.

Instances
Eq BuildNotDeleted Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Data BuildNotDeleted Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> BuildNotDeleted -> c BuildNotDeleted #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c BuildNotDeleted #

toConstr :: BuildNotDeleted -> Constr #

dataTypeOf :: BuildNotDeleted -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c BuildNotDeleted) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c BuildNotDeleted) #

gmapT :: (forall b. Data b => b -> b) -> BuildNotDeleted -> BuildNotDeleted #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> BuildNotDeleted -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> BuildNotDeleted -> r #

gmapQ :: (forall d. Data d => d -> u) -> BuildNotDeleted -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> BuildNotDeleted -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> BuildNotDeleted -> m BuildNotDeleted #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> BuildNotDeleted -> m BuildNotDeleted #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> BuildNotDeleted -> m BuildNotDeleted #

Read BuildNotDeleted Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show BuildNotDeleted Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic BuildNotDeleted Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep BuildNotDeleted :: Type -> Type #

Hashable BuildNotDeleted Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON BuildNotDeleted Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData BuildNotDeleted Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: BuildNotDeleted -> () #

type Rep BuildNotDeleted Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep BuildNotDeleted = D1 (MetaData "BuildNotDeleted" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "BuildNotDeleted'" PrefixI True) (S1 (MetaSel (Just "_bndId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_bndStatusCode") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))

buildNotDeleted :: BuildNotDeleted Source #

Creates a value of BuildNotDeleted with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • bndId - The ID of the build that could not be successfully deleted.
  • bndStatusCode - Additional information about the build that could not be successfully deleted.

bndId :: Lens' BuildNotDeleted (Maybe Text) Source #

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

bndStatusCode :: Lens' BuildNotDeleted (Maybe Text) Source #

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

BuildPhase

data BuildPhase Source #

Information about a stage for a build.

See: buildPhase smart constructor.

Instances
Eq BuildPhase Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Data BuildPhase Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> BuildPhase -> c BuildPhase #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c BuildPhase #

toConstr :: BuildPhase -> Constr #

dataTypeOf :: BuildPhase -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c BuildPhase) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c BuildPhase) #

gmapT :: (forall b. Data b => b -> b) -> BuildPhase -> BuildPhase #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> BuildPhase -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> BuildPhase -> r #

gmapQ :: (forall d. Data d => d -> u) -> BuildPhase -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> BuildPhase -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> BuildPhase -> m BuildPhase #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> BuildPhase -> m BuildPhase #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> BuildPhase -> m BuildPhase #

Read BuildPhase Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show BuildPhase Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic BuildPhase Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep BuildPhase :: Type -> Type #

Hashable BuildPhase Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON BuildPhase Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData BuildPhase Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: BuildPhase -> () #

type Rep BuildPhase Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep BuildPhase = D1 (MetaData "BuildPhase" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "BuildPhase'" PrefixI True) ((S1 (MetaSel (Just "_bpContexts") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [PhaseContext])) :*: (S1 (MetaSel (Just "_bpStartTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 (MetaSel (Just "_bpPhaseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe StatusType)))) :*: (S1 (MetaSel (Just "_bpPhaseType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe BuildPhaseType)) :*: (S1 (MetaSel (Just "_bpEndTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 (MetaSel (Just "_bpDurationInSeconds") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Integer))))))

buildPhase :: BuildPhase Source #

Creates a value of BuildPhase with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • bpContexts - Additional information about a build phase, especially to help troubleshoot a failed build.
  • bpStartTime - When the build phase started, expressed in Unix time format.
  • bpPhaseStatus - The current status of the build phase. Valid values include: * FAILED : The build phase failed. * FAULT : The build phase faulted. * IN_PROGRESS : The build phase is still in progress. * STOPPED : The build phase stopped. * SUCCEEDED : The build phase succeeded. * TIMED_OUT : The build phase timed out.
  • bpPhaseType - The name of the build phase. Valid values include: * BUILD : Core build activities typically occur in this build phase. * COMPLETED : The build has been completed. * DOWNLOAD_SOURCE : Source code is being downloaded in this build phase. * FINALIZING : The build process is completing in this build phase. * INSTALL : Installation activities typically occur in this build phase. * POST_BUILD : Post-build activities typically occur in this build phase. * PRE_BUILD : Pre-build activities typically occur in this build phase. * PROVISIONING : The build environment is being set up. * SUBMITTED : The build has been submitted. * UPLOAD_ARTIFACTS : Build output artifacts are being uploaded to the output location.
  • bpEndTime - When the build phase ended, expressed in Unix time format.
  • bpDurationInSeconds - How long, in seconds, between the starting and ending times of the build's phase.

bpContexts :: Lens' BuildPhase [PhaseContext] Source #

Additional information about a build phase, especially to help troubleshoot a failed build.

bpStartTime :: Lens' BuildPhase (Maybe UTCTime) Source #

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

bpPhaseStatus :: Lens' BuildPhase (Maybe StatusType) Source #

The current status of the build phase. Valid values include: * FAILED : The build phase failed. * FAULT : The build phase faulted. * IN_PROGRESS : The build phase is still in progress. * STOPPED : The build phase stopped. * SUCCEEDED : The build phase succeeded. * TIMED_OUT : The build phase timed out.

bpPhaseType :: Lens' BuildPhase (Maybe BuildPhaseType) Source #

The name of the build phase. Valid values include: * BUILD : Core build activities typically occur in this build phase. * COMPLETED : The build has been completed. * DOWNLOAD_SOURCE : Source code is being downloaded in this build phase. * FINALIZING : The build process is completing in this build phase. * INSTALL : Installation activities typically occur in this build phase. * POST_BUILD : Post-build activities typically occur in this build phase. * PRE_BUILD : Pre-build activities typically occur in this build phase. * PROVISIONING : The build environment is being set up. * SUBMITTED : The build has been submitted. * UPLOAD_ARTIFACTS : Build output artifacts are being uploaded to the output location.

bpEndTime :: Lens' BuildPhase (Maybe UTCTime) Source #

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

bpDurationInSeconds :: Lens' BuildPhase (Maybe Integer) Source #

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

EnvironmentImage

data EnvironmentImage Source #

Information about a Docker image that is managed by AWS CodeBuild.

See: environmentImage smart constructor.

Instances
Eq EnvironmentImage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Data EnvironmentImage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> EnvironmentImage -> c EnvironmentImage #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c EnvironmentImage #

toConstr :: EnvironmentImage -> Constr #

dataTypeOf :: EnvironmentImage -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c EnvironmentImage) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c EnvironmentImage) #

gmapT :: (forall b. Data b => b -> b) -> EnvironmentImage -> EnvironmentImage #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentImage -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentImage -> r #

gmapQ :: (forall d. Data d => d -> u) -> EnvironmentImage -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> EnvironmentImage -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> EnvironmentImage -> m EnvironmentImage #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentImage -> m EnvironmentImage #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentImage -> m EnvironmentImage #

Read EnvironmentImage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show EnvironmentImage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic EnvironmentImage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep EnvironmentImage :: Type -> Type #

Hashable EnvironmentImage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON EnvironmentImage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData EnvironmentImage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: EnvironmentImage -> () #

type Rep EnvironmentImage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep EnvironmentImage = D1 (MetaData "EnvironmentImage" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "EnvironmentImage'" PrefixI True) (S1 (MetaSel (Just "_eiVersions") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text])) :*: (S1 (MetaSel (Just "_eiName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_eiDescription") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

environmentImage :: EnvironmentImage Source #

Creates a value of EnvironmentImage with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

eiVersions :: Lens' EnvironmentImage [Text] Source #

A list of environment image versions.

eiName :: Lens' EnvironmentImage (Maybe Text) Source #

The name of the Docker image.

eiDescription :: Lens' EnvironmentImage (Maybe Text) Source #

The description of the Docker image.

EnvironmentLanguage

data EnvironmentLanguage Source #

A set of Docker images that are related by programming language and are managed by AWS CodeBuild.

See: environmentLanguage smart constructor.

Instances
Eq EnvironmentLanguage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Data EnvironmentLanguage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> EnvironmentLanguage -> c EnvironmentLanguage #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c EnvironmentLanguage #

toConstr :: EnvironmentLanguage -> Constr #

dataTypeOf :: EnvironmentLanguage -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c EnvironmentLanguage) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c EnvironmentLanguage) #

gmapT :: (forall b. Data b => b -> b) -> EnvironmentLanguage -> EnvironmentLanguage #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentLanguage -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentLanguage -> r #

gmapQ :: (forall d. Data d => d -> u) -> EnvironmentLanguage -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> EnvironmentLanguage -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> EnvironmentLanguage -> m EnvironmentLanguage #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentLanguage -> m EnvironmentLanguage #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentLanguage -> m EnvironmentLanguage #

Read EnvironmentLanguage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show EnvironmentLanguage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic EnvironmentLanguage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep EnvironmentLanguage :: Type -> Type #

Hashable EnvironmentLanguage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON EnvironmentLanguage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData EnvironmentLanguage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: EnvironmentLanguage -> () #

type Rep EnvironmentLanguage Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep EnvironmentLanguage = D1 (MetaData "EnvironmentLanguage" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "EnvironmentLanguage'" PrefixI True) (S1 (MetaSel (Just "_elImages") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [EnvironmentImage])) :*: S1 (MetaSel (Just "_elLanguage") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe LanguageType))))

environmentLanguage :: EnvironmentLanguage Source #

Creates a value of EnvironmentLanguage with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • elImages - The list of Docker images that are related by the specified programming language.
  • elLanguage - The programming language for the Docker images.

elImages :: Lens' EnvironmentLanguage [EnvironmentImage] Source #

The list of Docker images that are related by the specified programming language.

elLanguage :: Lens' EnvironmentLanguage (Maybe LanguageType) Source #

The programming language for the Docker images.

EnvironmentPlatform

data EnvironmentPlatform Source #

A set of Docker images that are related by platform and are managed by AWS CodeBuild.

See: environmentPlatform smart constructor.

Instances
Eq EnvironmentPlatform Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Data EnvironmentPlatform Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> EnvironmentPlatform -> c EnvironmentPlatform #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c EnvironmentPlatform #

toConstr :: EnvironmentPlatform -> Constr #

dataTypeOf :: EnvironmentPlatform -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c EnvironmentPlatform) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c EnvironmentPlatform) #

gmapT :: (forall b. Data b => b -> b) -> EnvironmentPlatform -> EnvironmentPlatform #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentPlatform -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentPlatform -> r #

gmapQ :: (forall d. Data d => d -> u) -> EnvironmentPlatform -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> EnvironmentPlatform -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> EnvironmentPlatform -> m EnvironmentPlatform #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentPlatform -> m EnvironmentPlatform #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentPlatform -> m EnvironmentPlatform #

Read EnvironmentPlatform Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show EnvironmentPlatform Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic EnvironmentPlatform Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep EnvironmentPlatform :: Type -> Type #

Hashable EnvironmentPlatform Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON EnvironmentPlatform Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData EnvironmentPlatform Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: EnvironmentPlatform -> () #

type Rep EnvironmentPlatform Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep EnvironmentPlatform = D1 (MetaData "EnvironmentPlatform" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "EnvironmentPlatform'" PrefixI True) (S1 (MetaSel (Just "_epPlatform") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe PlatformType)) :*: S1 (MetaSel (Just "_epLanguages") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [EnvironmentLanguage]))))

environmentPlatform :: EnvironmentPlatform Source #

Creates a value of EnvironmentPlatform with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • epPlatform - The platform's name.
  • epLanguages - The list of programming languages that are available for the specified platform.

epLanguages :: Lens' EnvironmentPlatform [EnvironmentLanguage] Source #

The list of programming languages that are available for the specified platform.

EnvironmentVariable

data EnvironmentVariable Source #

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

See: environmentVariable smart constructor.

Instances
Eq EnvironmentVariable Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Data EnvironmentVariable Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> EnvironmentVariable -> c EnvironmentVariable #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c EnvironmentVariable #

toConstr :: EnvironmentVariable -> Constr #

dataTypeOf :: EnvironmentVariable -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c EnvironmentVariable) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c EnvironmentVariable) #

gmapT :: (forall b. Data b => b -> b) -> EnvironmentVariable -> EnvironmentVariable #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentVariable -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentVariable -> r #

gmapQ :: (forall d. Data d => d -> u) -> EnvironmentVariable -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> EnvironmentVariable -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> EnvironmentVariable -> m EnvironmentVariable #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentVariable -> m EnvironmentVariable #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentVariable -> m EnvironmentVariable #

Read EnvironmentVariable Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show EnvironmentVariable Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic EnvironmentVariable Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep EnvironmentVariable :: Type -> Type #

Hashable EnvironmentVariable Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

ToJSON EnvironmentVariable Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON EnvironmentVariable Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData EnvironmentVariable Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: EnvironmentVariable -> () #

type Rep EnvironmentVariable Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep EnvironmentVariable = D1 (MetaData "EnvironmentVariable" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "EnvironmentVariable'" PrefixI True) (S1 (MetaSel (Just "_evType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe EnvironmentVariableType)) :*: (S1 (MetaSel (Just "_evName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_evValue") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))))

environmentVariable Source #

Creates a value of EnvironmentVariable with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • evType - 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.
  • evName - The name or key of the environment variable.
  • evValue - The value of the environment variable. Important: We strongly discourage using environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. Environment variables can be displayed in plain text using tools such as the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI).

evType :: Lens' EnvironmentVariable (Maybe EnvironmentVariableType) Source #

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.

evName :: Lens' EnvironmentVariable Text Source #

The name or key of the environment variable.

evValue :: Lens' EnvironmentVariable Text Source #

The value of the environment variable. Important: We strongly discourage using environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. Environment variables can be displayed in plain text using tools such as the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI).

LogsLocation

data LogsLocation Source #

Information about build logs in Amazon CloudWatch Logs.

See: logsLocation smart constructor.

Instances
Eq LogsLocation Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Data LogsLocation Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> LogsLocation -> c LogsLocation #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c LogsLocation #

toConstr :: LogsLocation -> Constr #

dataTypeOf :: LogsLocation -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c LogsLocation) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c LogsLocation) #

gmapT :: (forall b. Data b => b -> b) -> LogsLocation -> LogsLocation #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> LogsLocation -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> LogsLocation -> r #

gmapQ :: (forall d. Data d => d -> u) -> LogsLocation -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> LogsLocation -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> LogsLocation -> m LogsLocation #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> LogsLocation -> m LogsLocation #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> LogsLocation -> m LogsLocation #

Read LogsLocation Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show LogsLocation Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic LogsLocation Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep LogsLocation :: Type -> Type #

Hashable LogsLocation Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON LogsLocation Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData LogsLocation Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: LogsLocation -> () #

type Rep LogsLocation Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep LogsLocation = D1 (MetaData "LogsLocation" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "LogsLocation'" PrefixI True) (S1 (MetaSel (Just "_llDeepLink") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_llGroupName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_llStreamName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

logsLocation :: LogsLocation Source #

Creates a value of LogsLocation with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • llDeepLink - The URL to an individual build log in Amazon CloudWatch Logs.
  • llGroupName - The name of the Amazon CloudWatch Logs group for the build logs.
  • llStreamName - The name of the Amazon CloudWatch Logs stream for the build logs.

llDeepLink :: Lens' LogsLocation (Maybe Text) Source #

The URL to an individual build log in Amazon CloudWatch Logs.

llGroupName :: Lens' LogsLocation (Maybe Text) Source #

The name of the Amazon CloudWatch Logs group for the build logs.

llStreamName :: Lens' LogsLocation (Maybe Text) Source #

The name of the Amazon CloudWatch Logs stream for the build logs.

NetworkInterface

data NetworkInterface Source #

Describes a network interface.

See: networkInterface smart constructor.

Instances
Eq NetworkInterface Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Data NetworkInterface Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> NetworkInterface -> c NetworkInterface #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c NetworkInterface #

toConstr :: NetworkInterface -> Constr #

dataTypeOf :: NetworkInterface -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c NetworkInterface) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c NetworkInterface) #

gmapT :: (forall b. Data b => b -> b) -> NetworkInterface -> NetworkInterface #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> NetworkInterface -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> NetworkInterface -> r #

gmapQ :: (forall d. Data d => d -> u) -> NetworkInterface -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> NetworkInterface -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> NetworkInterface -> m NetworkInterface #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> NetworkInterface -> m NetworkInterface #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> NetworkInterface -> m NetworkInterface #

Read NetworkInterface Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show NetworkInterface Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic NetworkInterface Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep NetworkInterface :: Type -> Type #

Hashable NetworkInterface Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON NetworkInterface Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData NetworkInterface Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: NetworkInterface -> () #

type Rep NetworkInterface Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep NetworkInterface = D1 (MetaData "NetworkInterface" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "NetworkInterface'" PrefixI True) (S1 (MetaSel (Just "_niSubnetId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_niNetworkInterfaceId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))

networkInterface :: NetworkInterface Source #

Creates a value of NetworkInterface with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

niSubnetId :: Lens' NetworkInterface (Maybe Text) Source #

The ID of the subnet.

niNetworkInterfaceId :: Lens' NetworkInterface (Maybe Text) Source #

The ID of the network interface.

PhaseContext

data PhaseContext Source #

Additional information about a build phase that has an error. You can use this information to help troubleshoot a failed build.

See: phaseContext smart constructor.

Instances
Eq PhaseContext Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Data PhaseContext Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PhaseContext -> c PhaseContext #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PhaseContext #

toConstr :: PhaseContext -> Constr #

dataTypeOf :: PhaseContext -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c PhaseContext) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PhaseContext) #

gmapT :: (forall b. Data b => b -> b) -> PhaseContext -> PhaseContext #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PhaseContext -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PhaseContext -> r #

gmapQ :: (forall d. Data d => d -> u) -> PhaseContext -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PhaseContext -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PhaseContext -> m PhaseContext #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PhaseContext -> m PhaseContext #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PhaseContext -> m PhaseContext #

Read PhaseContext Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show PhaseContext Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic PhaseContext Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep PhaseContext :: Type -> Type #

Hashable PhaseContext Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON PhaseContext Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData PhaseContext Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: PhaseContext -> () #

type Rep PhaseContext Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep PhaseContext = D1 (MetaData "PhaseContext" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "PhaseContext'" PrefixI True) (S1 (MetaSel (Just "_pcMessage") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_pcStatusCode") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))

phaseContext :: PhaseContext Source #

Creates a value of PhaseContext with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • pcMessage - An explanation of the build phase's context. This explanation might include a command ID and an exit code.
  • pcStatusCode - The status code for the context of the build phase.

pcMessage :: Lens' PhaseContext (Maybe Text) Source #

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

pcStatusCode :: Lens' PhaseContext (Maybe Text) Source #

The status code for the context of the build phase.

Project

data Project Source #

Information about a build project.

See: project smart constructor.

Instances
Eq Project Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

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

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

Data Project Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Project -> c Project #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Project #

toConstr :: Project -> Constr #

dataTypeOf :: Project -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c Project) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Project) #

gmapT :: (forall b. Data b => b -> b) -> Project -> Project #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Project -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Project -> r #

gmapQ :: (forall d. Data d => d -> u) -> Project -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Project -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Project -> m Project #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Project -> m Project #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Project -> m Project #

Read Project Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show Project Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic Project Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep Project :: Type -> Type #

Methods

from :: Project -> Rep Project x #

to :: Rep Project x -> Project #

Hashable Project Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

hashWithSalt :: Int -> Project -> Int #

hash :: Project -> Int #

FromJSON Project Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData Project Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: Project -> () #

type Rep Project Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep Project = D1 (MetaData "Project" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "Project'" PrefixI True) ((((S1 (MetaSel (Just "_pArn") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_pArtifacts") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ProjectArtifacts))) :*: (S1 (MetaSel (Just "_pEnvironment") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ProjectEnvironment)) :*: S1 (MetaSel (Just "_pCreated") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX)))) :*: ((S1 (MetaSel (Just "_pCache") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ProjectCache)) :*: S1 (MetaSel (Just "_pName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_pVpcConfig") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe VPCConfig)) :*: S1 (MetaSel (Just "_pSource") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ProjectSource))))) :*: (((S1 (MetaSel (Just "_pBadge") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ProjectBadge)) :*: S1 (MetaSel (Just "_pEncryptionKey") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_pLastModified") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 (MetaSel (Just "_pWebhook") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Webhook)))) :*: ((S1 (MetaSel (Just "_pDescription") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_pServiceRole") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_pTags") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Tag])) :*: S1 (MetaSel (Just "_pTimeoutInMinutes") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Nat)))))))

project :: Project Source #

Creates a value of Project with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • pArn - The Amazon Resource Name (ARN) of the build project.
  • pArtifacts - Information about the build output artifacts for the build project.
  • pEnvironment - Information about the build environment for this build project.
  • pCreated - When the build project was created, expressed in Unix time format.
  • pCache - Information about the cache for the build project.
  • pName - The name of the build project.
  • pVpcConfig - Information about the VPC configuration that AWS CodeBuild will access.
  • pSource - Information about the build input source code for this build project.
  • pBadge - Information about the build badge for the build project.
  • pEncryptionKey - The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts. This is expressed either as the CMK's Amazon Resource Name (ARN) or, if specified, the CMK's alias (using the format alias/alias-name ).
  • pLastModified - When the build project's settings were last modified, expressed in Unix time format.
  • pWebhook - Information about a webhook in GitHub that connects repository events to a build project in AWS CodeBuild.
  • pDescription - A description that makes the build project easy to identify.
  • pServiceRole - 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.
  • pTags - The tags for this build project. These tags are available for use by AWS services that support AWS CodeBuild build project tags.
  • pTimeoutInMinutes - 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.

pArn :: Lens' Project (Maybe Text) Source #

The Amazon Resource Name (ARN) of the build project.

pArtifacts :: Lens' Project (Maybe ProjectArtifacts) Source #

Information about the build output artifacts for the build project.

pEnvironment :: Lens' Project (Maybe ProjectEnvironment) Source #

Information about the build environment for this build project.

pCreated :: Lens' Project (Maybe UTCTime) Source #

When the build project was created, expressed in Unix time format.

pCache :: Lens' Project (Maybe ProjectCache) Source #

Information about the cache for the build project.

pName :: Lens' Project (Maybe Text) Source #

The name of the build project.

pVpcConfig :: Lens' Project (Maybe VPCConfig) Source #

Information about the VPC configuration that AWS CodeBuild will access.

pSource :: Lens' Project (Maybe ProjectSource) Source #

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

pBadge :: Lens' Project (Maybe ProjectBadge) Source #

Information about the build badge for the build project.

pEncryptionKey :: Lens' Project (Maybe Text) Source #

The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts. This is expressed either as the CMK's Amazon Resource Name (ARN) or, if specified, the CMK's alias (using the format alias/alias-name ).

pLastModified :: Lens' Project (Maybe UTCTime) Source #

When the build project's settings were last modified, expressed in Unix time format.

pWebhook :: Lens' Project (Maybe Webhook) Source #

Information about a webhook in GitHub that connects repository events to a build project in AWS CodeBuild.

pDescription :: Lens' Project (Maybe Text) Source #

A description that makes the build project easy to identify.

pServiceRole :: Lens' Project (Maybe Text) Source #

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.

pTags :: Lens' Project [Tag] Source #

The tags for this build project. These tags are available for use by AWS services that support AWS CodeBuild build project tags.

pTimeoutInMinutes :: Lens' Project (Maybe Natural) Source #

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.

ProjectArtifacts

data ProjectArtifacts Source #

Information about the build output artifacts for the build project.

See: projectArtifacts smart constructor.

Instances
Eq ProjectArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Data ProjectArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ProjectArtifacts -> c ProjectArtifacts #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ProjectArtifacts #

toConstr :: ProjectArtifacts -> Constr #

dataTypeOf :: ProjectArtifacts -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c ProjectArtifacts) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ProjectArtifacts) #

gmapT :: (forall b. Data b => b -> b) -> ProjectArtifacts -> ProjectArtifacts #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ProjectArtifacts -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ProjectArtifacts -> r #

gmapQ :: (forall d. Data d => d -> u) -> ProjectArtifacts -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ProjectArtifacts -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ProjectArtifacts -> m ProjectArtifacts #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ProjectArtifacts -> m ProjectArtifacts #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ProjectArtifacts -> m ProjectArtifacts #

Read ProjectArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show ProjectArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic ProjectArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep ProjectArtifacts :: Type -> Type #

Hashable ProjectArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

ToJSON ProjectArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON ProjectArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData ProjectArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: ProjectArtifacts -> () #

type Rep ProjectArtifacts Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

projectArtifacts Source #

Creates a value of ProjectArtifacts with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • paPackaging - The type of build output artifact to create, as follows: * If type is set to CODEPIPELINE , then AWS CodePipeline will ignore 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 , then this value will be ignored if specified, because no build output will be produced. * If type is set to S3 , valid values include: * NONE : AWS CodeBuild will create in the output bucket a folder containing the build output. This is the default if packaging is not specified. * ZIP : AWS CodeBuild will create in the output bucket a ZIP file containing the build output.
  • paPath - Along with namespaceType and name , the pattern that AWS CodeBuild will use to name and store the output artifact, as follows: * If type is set to CODEPIPELINE , then AWS CodePipeline will ignore 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 , then this value will be ignored if specified, because no build output will be produced. * If type is set to S3 , this is the path to the output artifact. If path is not specified, then path will not be used. For example, if path is set to MyArtifacts , namespaceType is set to NONE , and name is set to MyArtifact.zip , then the output artifact would be stored in the output bucket at MyArtifacts/MyArtifact.zip .
  • paLocation - Information about the build output artifact location, as follows: * If type is set to CODEPIPELINE , then AWS CodePipeline will ignore 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 , then this value will be ignored if specified, because no build output will be produced. * If type is set to S3 , this is the name of the output bucket.
  • paName - Along with path and namespaceType , the pattern that AWS CodeBuild will use to name and store the output artifact, as follows: * If type is set to CODEPIPELINE , then AWS CodePipeline will ignore 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 , then this value will be ignored if specified, because no build output will be produced. * If type is set to S3 , this is the name of the output artifact object. 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 would be stored in MyArtifacts/build-ID /MyArtifact.zip .
  • paNamespaceType - Along with path and name , the pattern that AWS CodeBuild will use to determine the name and location to store the output artifact, as follows: * If type is set to CODEPIPELINE , then AWS CodePipeline will ignore 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 , then this value will be ignored if specified, because no build output will be produced. * If type is set to S3 , then 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 , then the output artifact would be stored in MyArtifacts/build-ID /MyArtifact.zip .
  • paType - The type of build output artifact. Valid values include: * CODEPIPELINE : The build project will have build output generated through AWS CodePipeline. * NO_ARTIFACTS : The build project will not produce any build output. * S3 : The build project will store build output in Amazon Simple Storage Service (Amazon S3).

paPackaging :: Lens' ProjectArtifacts (Maybe ArtifactPackaging) Source #

The type of build output artifact to create, as follows: * If type is set to CODEPIPELINE , then AWS CodePipeline will ignore 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 , then this value will be ignored if specified, because no build output will be produced. * If type is set to S3 , valid values include: * NONE : AWS CodeBuild will create in the output bucket a folder containing the build output. This is the default if packaging is not specified. * ZIP : AWS CodeBuild will create in the output bucket a ZIP file containing the build output.

paPath :: Lens' ProjectArtifacts (Maybe Text) Source #

Along with namespaceType and name , the pattern that AWS CodeBuild will use to name and store the output artifact, as follows: * If type is set to CODEPIPELINE , then AWS CodePipeline will ignore 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 , then this value will be ignored if specified, because no build output will be produced. * If type is set to S3 , this is the path to the output artifact. If path is not specified, then path will not be used. For example, if path is set to MyArtifacts , namespaceType is set to NONE , and name is set to MyArtifact.zip , then the output artifact would be stored in the output bucket at MyArtifacts/MyArtifact.zip .

paLocation :: Lens' ProjectArtifacts (Maybe Text) Source #

Information about the build output artifact location, as follows: * If type is set to CODEPIPELINE , then AWS CodePipeline will ignore 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 , then this value will be ignored if specified, because no build output will be produced. * If type is set to S3 , this is the name of the output bucket.

paName :: Lens' ProjectArtifacts (Maybe Text) Source #

Along with path and namespaceType , the pattern that AWS CodeBuild will use to name and store the output artifact, as follows: * If type is set to CODEPIPELINE , then AWS CodePipeline will ignore 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 , then this value will be ignored if specified, because no build output will be produced. * If type is set to S3 , this is the name of the output artifact object. 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 would be stored in MyArtifacts/build-ID /MyArtifact.zip .

paNamespaceType :: Lens' ProjectArtifacts (Maybe ArtifactNamespace) Source #

Along with path and name , the pattern that AWS CodeBuild will use to determine the name and location to store the output artifact, as follows: * If type is set to CODEPIPELINE , then AWS CodePipeline will ignore 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 , then this value will be ignored if specified, because no build output will be produced. * If type is set to S3 , then 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 , then the output artifact would be stored in MyArtifacts/build-ID /MyArtifact.zip .

paType :: Lens' ProjectArtifacts ArtifactsType Source #

The type of build output artifact. Valid values include: * CODEPIPELINE : The build project will have build output generated through AWS CodePipeline. * NO_ARTIFACTS : The build project will not produce any build output. * S3 : The build project will store build output in Amazon Simple Storage Service (Amazon S3).

ProjectBadge

data ProjectBadge Source #

Information about the build badge for the build project.

See: projectBadge smart constructor.

Instances
Eq ProjectBadge Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Data ProjectBadge Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ProjectBadge -> c ProjectBadge #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ProjectBadge #

toConstr :: ProjectBadge -> Constr #

dataTypeOf :: ProjectBadge -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c ProjectBadge) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ProjectBadge) #

gmapT :: (forall b. Data b => b -> b) -> ProjectBadge -> ProjectBadge #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ProjectBadge -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ProjectBadge -> r #

gmapQ :: (forall d. Data d => d -> u) -> ProjectBadge -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ProjectBadge -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ProjectBadge -> m ProjectBadge #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ProjectBadge -> m ProjectBadge #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ProjectBadge -> m ProjectBadge #

Read ProjectBadge Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show ProjectBadge Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic ProjectBadge Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep ProjectBadge :: Type -> Type #

Hashable ProjectBadge Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON ProjectBadge Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData ProjectBadge Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: ProjectBadge -> () #

type Rep ProjectBadge Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep ProjectBadge = D1 (MetaData "ProjectBadge" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "ProjectBadge'" PrefixI True) (S1 (MetaSel (Just "_pbBadgeEnabled") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 (MetaSel (Just "_pbBadgeRequestURL") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))

projectBadge :: ProjectBadge Source #

Creates a value of ProjectBadge with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • pbBadgeEnabled - Set this to true to generate a publicly-accessible URL for your project's build badge.
  • pbBadgeRequestURL - The publicly-accessible URL through which you can access the build badge for your project.

pbBadgeEnabled :: Lens' ProjectBadge (Maybe Bool) Source #

Set this to true to generate a publicly-accessible URL for your project's build badge.

pbBadgeRequestURL :: Lens' ProjectBadge (Maybe Text) Source #

The publicly-accessible URL through which you can access the build badge for your project.

ProjectCache

data ProjectCache Source #

Information about the cache for the build project.

See: projectCache smart constructor.

Instances
Eq ProjectCache Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Data ProjectCache Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ProjectCache -> c ProjectCache #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ProjectCache #

toConstr :: ProjectCache -> Constr #

dataTypeOf :: ProjectCache -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c ProjectCache) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ProjectCache) #

gmapT :: (forall b. Data b => b -> b) -> ProjectCache -> ProjectCache #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ProjectCache -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ProjectCache -> r #

gmapQ :: (forall d. Data d => d -> u) -> ProjectCache -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ProjectCache -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ProjectCache -> m ProjectCache #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ProjectCache -> m ProjectCache #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ProjectCache -> m ProjectCache #

Read ProjectCache Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show ProjectCache Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic ProjectCache Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep ProjectCache :: Type -> Type #

Hashable ProjectCache Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

ToJSON ProjectCache Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON ProjectCache Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData ProjectCache Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: ProjectCache -> () #

type Rep ProjectCache Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep ProjectCache = D1 (MetaData "ProjectCache" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "ProjectCache'" PrefixI True) (S1 (MetaSel (Just "_pcLocation") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_pcType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 CacheType)))

projectCache Source #

Creates a value of ProjectCache with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • pcLocation - Information about the cache location, as follows: * NO_CACHE : This value will be ignored. * S3 : This is the S3 bucket name/prefix.
  • pcType - The type of cache used by the build project. Valid values include: * NO_CACHE : The build project will not use any cache. * S3 : The build project will read and write from/to S3.

pcLocation :: Lens' ProjectCache (Maybe Text) Source #

Information about the cache location, as follows: * NO_CACHE : This value will be ignored. * S3 : This is the S3 bucket name/prefix.

pcType :: Lens' ProjectCache CacheType Source #

The type of cache used by the build project. Valid values include: * NO_CACHE : The build project will not use any cache. * S3 : The build project will read and write from/to S3.

ProjectEnvironment

data ProjectEnvironment Source #

Information about the build environment of the build project.

See: projectEnvironment smart constructor.

Instances
Eq ProjectEnvironment Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Data ProjectEnvironment Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ProjectEnvironment -> c ProjectEnvironment #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ProjectEnvironment #

toConstr :: ProjectEnvironment -> Constr #

dataTypeOf :: ProjectEnvironment -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c ProjectEnvironment) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ProjectEnvironment) #

gmapT :: (forall b. Data b => b -> b) -> ProjectEnvironment -> ProjectEnvironment #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ProjectEnvironment -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ProjectEnvironment -> r #

gmapQ :: (forall d. Data d => d -> u) -> ProjectEnvironment -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ProjectEnvironment -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ProjectEnvironment -> m ProjectEnvironment #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ProjectEnvironment -> m ProjectEnvironment #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ProjectEnvironment -> m ProjectEnvironment #

Read ProjectEnvironment Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show ProjectEnvironment Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic ProjectEnvironment Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep ProjectEnvironment :: Type -> Type #

Hashable ProjectEnvironment Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

ToJSON ProjectEnvironment Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON ProjectEnvironment Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData ProjectEnvironment Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: ProjectEnvironment -> () #

type Rep ProjectEnvironment Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep ProjectEnvironment = D1 (MetaData "ProjectEnvironment" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "ProjectEnvironment'" PrefixI True) ((S1 (MetaSel (Just "_pePrivilegedMode") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 (MetaSel (Just "_peCertificate") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_peEnvironmentVariables") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [EnvironmentVariable])))) :*: (S1 (MetaSel (Just "_peType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 EnvironmentType) :*: (S1 (MetaSel (Just "_peImage") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_peComputeType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 ComputeType)))))

projectEnvironment Source #

Creates a value of ProjectEnvironment with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • pePrivilegedMode - 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 will fail. Note that 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 the following build commands if the specified build environment image is provided by AWS CodeBuild with Docker support.) - nohup usrlocalbindockerd --host=unix://varrundocker.sock --host=tcp:/0.0.0.0:2375 --storage-driver=overlay& - timeout -t 15 sh -c "until docker info; do echo .; sleep 1; done"
  • peCertificate - The certificate to use with this build project.
  • peEnvironmentVariables - A set of environment variables to make available to builds for this build project.
  • peType - The type of build environment to use for related builds.
  • peImage - The ID of the Docker image to use for this build project.
  • peComputeType - Information about the compute resources the build project will use. 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.

pePrivilegedMode :: Lens' ProjectEnvironment (Maybe Bool) Source #

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 will fail. Note that 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 the following build commands if the specified build environment image is provided by AWS CodeBuild with Docker support.) - nohup usrlocalbindockerd --host=unix://varrundocker.sock --host=tcp:/0.0.0.0:2375 --storage-driver=overlay& - timeout -t 15 sh -c "until docker info; do echo .; sleep 1; done"

peCertificate :: Lens' ProjectEnvironment (Maybe Text) Source #

The certificate to use with this build project.

peEnvironmentVariables :: Lens' ProjectEnvironment [EnvironmentVariable] Source #

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

peType :: Lens' ProjectEnvironment EnvironmentType Source #

The type of build environment to use for related builds.

peImage :: Lens' ProjectEnvironment Text Source #

The ID of the Docker image to use for this build project.

peComputeType :: Lens' ProjectEnvironment ComputeType Source #

Information about the compute resources the build project will use. 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.

ProjectSource

data ProjectSource Source #

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

See: projectSource smart constructor.

Instances
Eq ProjectSource Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Data ProjectSource Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ProjectSource -> c ProjectSource #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ProjectSource #

toConstr :: ProjectSource -> Constr #

dataTypeOf :: ProjectSource -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c ProjectSource) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ProjectSource) #

gmapT :: (forall b. Data b => b -> b) -> ProjectSource -> ProjectSource #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ProjectSource -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ProjectSource -> r #

gmapQ :: (forall d. Data d => d -> u) -> ProjectSource -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ProjectSource -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ProjectSource -> m ProjectSource #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ProjectSource -> m ProjectSource #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ProjectSource -> m ProjectSource #

Read ProjectSource Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show ProjectSource Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic ProjectSource Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep ProjectSource :: Type -> Type #

Hashable ProjectSource Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

ToJSON ProjectSource Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON ProjectSource Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData ProjectSource Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: ProjectSource -> () #

type Rep ProjectSource Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep ProjectSource = D1 (MetaData "ProjectSource" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "ProjectSource'" PrefixI True) ((S1 (MetaSel (Just "_psInsecureSSL") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 (MetaSel (Just "_psLocation") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_psAuth") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SourceAuth)))) :*: (S1 (MetaSel (Just "_psBuildspec") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_psGitCloneDepth") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Nat)) :*: S1 (MetaSel (Just "_psType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 SourceType)))))

projectSource Source #

Creates a value of ProjectSource with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • psInsecureSSL - Enable this flag to ignore SSL warnings while connecting to the project source code.
  • psLocation - 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 will ignore 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.comv1repos/repo-name ). * For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, the path to the ZIP file that contains the source code (for example, bucket-name /path /to /object-name .zip ) * For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the build spec. Also, you must connect your AWS account to your GitHub account. To do this, use the AWS CodeBuild console to begin creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page that displays, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to. Then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project, and you may then leave the AWS CodeBuild console.) To instruct AWS CodeBuild to then 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. Also, you must connect your AWS account to your Bitbucket account. To do this, use the AWS CodeBuild console to begin creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page that displays, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project, and you may then leave the AWS CodeBuild console.) To instruct AWS CodeBuild to then use this connection, in the source object, set the auth object's type value to OAUTH .
  • psAuth - 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 (unless the build project's source type value is BITBUCKET or GITHUB ).
  • psBuildspec - 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.
  • psGitCloneDepth - Information about the git clone depth for the build project.
  • psType - 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. * S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

psInsecureSSL :: Lens' ProjectSource (Maybe Bool) Source #

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

psLocation :: Lens' ProjectSource (Maybe Text) Source #

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 will ignore 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.comv1repos/repo-name ). * For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, the path to the ZIP file that contains the source code (for example, bucket-name /path /to /object-name .zip ) * For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the build spec. Also, you must connect your AWS account to your GitHub account. To do this, use the AWS CodeBuild console to begin creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page that displays, for Organization access , choose Request access next to each repository you want to allow AWS CodeBuild to have access to. Then choose Authorize application . (After you have connected to your GitHub account, you do not need to finish creating the build project, and you may then leave the AWS CodeBuild console.) To instruct AWS CodeBuild to then 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. Also, you must connect your AWS account to your Bitbucket account. To do this, use the AWS CodeBuild console to begin creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page that displays, choose Grant access . (After you have connected to your Bitbucket account, you do not need to finish creating the build project, and you may then leave the AWS CodeBuild console.) To instruct AWS CodeBuild to then use this connection, in the source object, set the auth object's type value to OAUTH .

psAuth :: Lens' ProjectSource (Maybe SourceAuth) Source #

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 (unless the build project's source type value is BITBUCKET or GITHUB ).

psBuildspec :: Lens' ProjectSource (Maybe Text) Source #

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.

psGitCloneDepth :: Lens' ProjectSource (Maybe Natural) Source #

Information about the git clone depth for the build project.

psType :: Lens' ProjectSource SourceType Source #

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. * S3 : The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.

SourceAuth

data SourceAuth Source #

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 (unless the build project's source type value is BITBUCKET or GITHUB ).

See: sourceAuth smart constructor.

Instances
Eq SourceAuth Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Data SourceAuth Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SourceAuth -> c SourceAuth #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SourceAuth #

toConstr :: SourceAuth -> Constr #

dataTypeOf :: SourceAuth -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c SourceAuth) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SourceAuth) #

gmapT :: (forall b. Data b => b -> b) -> SourceAuth -> SourceAuth #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SourceAuth -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SourceAuth -> r #

gmapQ :: (forall d. Data d => d -> u) -> SourceAuth -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SourceAuth -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SourceAuth -> m SourceAuth #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceAuth -> m SourceAuth #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceAuth -> m SourceAuth #

Read SourceAuth Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show SourceAuth Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic SourceAuth Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep SourceAuth :: Type -> Type #

Hashable SourceAuth Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

ToJSON SourceAuth Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON SourceAuth Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData SourceAuth Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: SourceAuth -> () #

type Rep SourceAuth Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep SourceAuth = D1 (MetaData "SourceAuth" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "SourceAuth'" PrefixI True) (S1 (MetaSel (Just "_saResource") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_saType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 SourceAuthType)))

sourceAuth Source #

Creates a value of SourceAuth with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • saResource - The resource value that applies to the specified authorization type.
  • saType - The authorization type to use. The only valid value is OAUTH , which represents the OAuth authorization type.

saResource :: Lens' SourceAuth (Maybe Text) Source #

The resource value that applies to the specified authorization type.

saType :: Lens' SourceAuth SourceAuthType Source #

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

Tag

data Tag Source #

A tag, consisting of a key and a value.

This tag is available for use by AWS services that support tags in AWS CodeBuild.

See: tag smart constructor.

Instances
Eq Tag Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

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

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

Data Tag Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Tag -> c Tag #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Tag #

toConstr :: Tag -> Constr #

dataTypeOf :: Tag -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c Tag) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Tag) #

gmapT :: (forall b. Data b => b -> b) -> Tag -> Tag #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Tag -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Tag -> r #

gmapQ :: (forall d. Data d => d -> u) -> Tag -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Tag -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Tag -> m Tag #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Tag -> m Tag #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Tag -> m Tag #

Read Tag Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show Tag Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

showsPrec :: Int -> Tag -> ShowS #

show :: Tag -> String #

showList :: [Tag] -> ShowS #

Generic Tag Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep Tag :: Type -> Type #

Methods

from :: Tag -> Rep Tag x #

to :: Rep Tag x -> Tag #

Hashable Tag Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

hashWithSalt :: Int -> Tag -> Int #

hash :: Tag -> Int #

ToJSON Tag Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON Tag Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData Tag Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: Tag -> () #

type Rep Tag Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep Tag = D1 (MetaData "Tag" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "Tag'" PrefixI True) (S1 (MetaSel (Just "_tagValue") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_tagKey") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))

tag :: Tag Source #

Creates a value of Tag with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

tagValue :: Lens' Tag (Maybe Text) Source #

The tag's value.

tagKey :: Lens' Tag (Maybe Text) Source #

The tag's key.

VPCConfig

data VPCConfig Source #

Information about the VPC configuration that AWS CodeBuild will access.

See: vpcConfig smart constructor.

Instances
Eq VPCConfig Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Data VPCConfig Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VPCConfig -> c VPCConfig #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c VPCConfig #

toConstr :: VPCConfig -> Constr #

dataTypeOf :: VPCConfig -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c VPCConfig) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c VPCConfig) #

gmapT :: (forall b. Data b => b -> b) -> VPCConfig -> VPCConfig #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VPCConfig -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VPCConfig -> r #

gmapQ :: (forall d. Data d => d -> u) -> VPCConfig -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VPCConfig -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VPCConfig -> m VPCConfig #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VPCConfig -> m VPCConfig #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VPCConfig -> m VPCConfig #

Read VPCConfig Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show VPCConfig Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic VPCConfig Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep VPCConfig :: Type -> Type #

Hashable VPCConfig Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

ToJSON VPCConfig Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

FromJSON VPCConfig Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData VPCConfig Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: VPCConfig -> () #

type Rep VPCConfig Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep VPCConfig = D1 (MetaData "VPCConfig" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "VPCConfig'" PrefixI True) (S1 (MetaSel (Just "_vcSecurityGroupIds") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text])) :*: (S1 (MetaSel (Just "_vcVpcId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_vcSubnets") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text])))))

vpcConfig :: VPCConfig Source #

Creates a value of VPCConfig with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • vcSecurityGroupIds - A list of one or more security groups IDs in your Amazon VPC.
  • vcVpcId - The ID of the Amazon VPC.
  • vcSubnets - A list of one or more subnet IDs in your Amazon VPC.

vcSecurityGroupIds :: Lens' VPCConfig [Text] Source #

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

vcVpcId :: Lens' VPCConfig (Maybe Text) Source #

The ID of the Amazon VPC.

vcSubnets :: Lens' VPCConfig [Text] Source #

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

Webhook

data Webhook Source #

Information about a webhook in GitHub that connects repository events to a build project in AWS CodeBuild.

See: webhook smart constructor.

Instances
Eq Webhook Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

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

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

Data Webhook Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Webhook -> c Webhook #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Webhook #

toConstr :: Webhook -> Constr #

dataTypeOf :: Webhook -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c Webhook) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Webhook) #

gmapT :: (forall b. Data b => b -> b) -> Webhook -> Webhook #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Webhook -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Webhook -> r #

gmapQ :: (forall d. Data d => d -> u) -> Webhook -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Webhook -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Webhook -> m Webhook #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Webhook -> m Webhook #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Webhook -> m Webhook #

Read Webhook Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Show Webhook Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Generic Webhook Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Associated Types

type Rep Webhook :: Type -> Type #

Methods

from :: Webhook -> Rep Webhook x #

to :: Rep Webhook x -> Webhook #

Hashable Webhook Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

hashWithSalt :: Int -> Webhook -> Int #

hash :: Webhook -> Int #

FromJSON Webhook Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

NFData Webhook Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

Methods

rnf :: Webhook -> () #

type Rep Webhook Source # 
Instance details

Defined in Network.AWS.CodeBuild.Types.Product

type Rep Webhook = D1 (MetaData "Webhook" "Network.AWS.CodeBuild.Types.Product" "amazonka-codebuild-1.6.1-CHtoXrKmhWY3Wp1eAVtcUH" False) (C1 (MetaCons "Webhook'" PrefixI True) ((S1 (MetaSel (Just "_wBranchFilter") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_wLastModifiedSecret") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 (MetaSel (Just "_wUrl") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_wSecret") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_wPayloadURL") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))

webhook :: Webhook Source #

Creates a value of Webhook with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • wBranchFilter - A regular expression used to determine which branches in a repository are built when a webhook is triggered. If the name of a branch matches the regular expression, then it is built. If it doesn't match, then it is not. If branchFilter is empty, then all branches are built.
  • wLastModifiedSecret - A timestamp indicating the last time a repository's secret token was modified.
  • wUrl - The URL to the webhook.
  • wSecret - The secret token of the associated repository.
  • wPayloadURL - The CodeBuild endpoint where webhook events are sent.

wBranchFilter :: Lens' Webhook (Maybe Text) Source #

A regular expression used to determine which branches in a repository are built when a webhook is triggered. If the name of a branch matches the regular expression, then it is built. If it doesn't match, then it is not. If branchFilter is empty, then all branches are built.

wLastModifiedSecret :: Lens' Webhook (Maybe UTCTime) Source #

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

wUrl :: Lens' Webhook (Maybe Text) Source #

The URL to the webhook.

wSecret :: Lens' Webhook (Maybe Text) Source #

The secret token of the associated repository.

wPayloadURL :: Lens' Webhook (Maybe Text) Source #

The CodeBuild endpoint where webhook events are sent.