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

Amazonka.AppRunner.Types.CodeRepository

Description

 
Synopsis

Documentation

data CodeRepository Source #

Describes a source code repository.

See: newCodeRepository smart constructor.

Constructors

CodeRepository' 

Fields

Instances

Instances details
Eq CodeRepository Source # 
Instance details

Defined in Amazonka.AppRunner.Types.CodeRepository

Show CodeRepository Source # 
Instance details

Defined in Amazonka.AppRunner.Types.CodeRepository

Generic CodeRepository Source # 
Instance details

Defined in Amazonka.AppRunner.Types.CodeRepository

Associated Types

type Rep CodeRepository :: Type -> Type #

NFData CodeRepository Source # 
Instance details

Defined in Amazonka.AppRunner.Types.CodeRepository

Methods

rnf :: CodeRepository -> () #

Hashable CodeRepository Source # 
Instance details

Defined in Amazonka.AppRunner.Types.CodeRepository

ToJSON CodeRepository Source # 
Instance details

Defined in Amazonka.AppRunner.Types.CodeRepository

FromJSON CodeRepository Source # 
Instance details

Defined in Amazonka.AppRunner.Types.CodeRepository

type Rep CodeRepository Source # 
Instance details

Defined in Amazonka.AppRunner.Types.CodeRepository

type Rep CodeRepository = D1 ('MetaData "CodeRepository" "Amazonka.AppRunner.Types.CodeRepository" "libZSservicesZSamazonka-apprunnerZSamazonka-apprunner" 'False) (C1 ('MetaCons "CodeRepository'" 'PrefixI 'True) (S1 ('MetaSel ('Just "codeConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CodeConfiguration)) :*: (S1 ('MetaSel ('Just "repositoryUrl") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "sourceCodeVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 SourceCodeVersion))))

newCodeRepository Source #

Create a value of CodeRepository with all optional fields omitted.

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

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

$sel:codeConfiguration:CodeRepository', codeRepository_codeConfiguration - Configuration for building and running the service from a source code repository.

$sel:repositoryUrl:CodeRepository', codeRepository_repositoryUrl - The location of the repository that contains the source code.

$sel:sourceCodeVersion:CodeRepository', codeRepository_sourceCodeVersion - The version that should be used within the source code repository.

codeRepository_codeConfiguration :: Lens' CodeRepository (Maybe CodeConfiguration) Source #

Configuration for building and running the service from a source code repository.

codeRepository_repositoryUrl :: Lens' CodeRepository Text Source #

The location of the repository that contains the source code.

codeRepository_sourceCodeVersion :: Lens' CodeRepository SourceCodeVersion Source #

The version that should be used within the source code repository.