amazonka-codebuild-2.0: Amazon CodeBuild SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.CodeBuild.Types.EnvironmentImage

Description

 
Synopsis

Documentation

data EnvironmentImage Source #

Information about a Docker image that is managed by CodeBuild.

See: newEnvironmentImage smart constructor.

Constructors

EnvironmentImage' 

Fields

Instances

Instances details
FromJSON EnvironmentImage Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.EnvironmentImage

Generic EnvironmentImage Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.EnvironmentImage

Associated Types

type Rep EnvironmentImage :: Type -> Type #

Read EnvironmentImage Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.EnvironmentImage

Show EnvironmentImage Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.EnvironmentImage

NFData EnvironmentImage Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.EnvironmentImage

Methods

rnf :: EnvironmentImage -> () #

Eq EnvironmentImage Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.EnvironmentImage

Hashable EnvironmentImage Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.EnvironmentImage

type Rep EnvironmentImage Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.EnvironmentImage

type Rep EnvironmentImage = D1 ('MetaData "EnvironmentImage" "Amazonka.CodeBuild.Types.EnvironmentImage" "amazonka-codebuild-2.0-3KpZspRk9Ul8Wu4D0cM13Q" 'False) (C1 ('MetaCons "EnvironmentImage'" 'PrefixI 'True) (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "versions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])))))

newEnvironmentImage :: EnvironmentImage Source #

Create a value of EnvironmentImage 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:description:EnvironmentImage', environmentImage_description - The description of the Docker image.

$sel:name:EnvironmentImage', environmentImage_name - The name of the Docker image.

$sel:versions:EnvironmentImage', environmentImage_versions - A list of environment image versions.

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

The description of the Docker image.

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

The name of the Docker image.

environmentImage_versions :: Lens' EnvironmentImage (Maybe [Text]) Source #

A list of environment image versions.