libZSservicesZSamazonka-codepipelineZSamazonka-codepipeline
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.CodePipeline.Types.InputArtifact

Description

 
Synopsis

Documentation

data InputArtifact Source #

Represents information about an artifact to be worked on, such as a test or build artifact.

See: newInputArtifact smart constructor.

Constructors

InputArtifact' 

Fields

  • name :: Text

    The name of the artifact to be worked on (for example, "My App").

    The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.

Instances

Instances details
Eq InputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.InputArtifact

Read InputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.InputArtifact

Show InputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.InputArtifact

Generic InputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.InputArtifact

Associated Types

type Rep InputArtifact :: Type -> Type #

NFData InputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.InputArtifact

Methods

rnf :: InputArtifact -> () #

Hashable InputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.InputArtifact

ToJSON InputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.InputArtifact

FromJSON InputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.InputArtifact

type Rep InputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.InputArtifact

type Rep InputArtifact = D1 ('MetaData "InputArtifact" "Amazonka.CodePipeline.Types.InputArtifact" "libZSservicesZSamazonka-codepipelineZSamazonka-codepipeline" 'False) (C1 ('MetaCons "InputArtifact'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newInputArtifact Source #

Create a value of InputArtifact 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:name:InputArtifact', inputArtifact_name - The name of the artifact to be worked on (for example, "My App").

The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.

inputArtifact_name :: Lens' InputArtifact Text Source #

The name of the artifact to be worked on (for example, "My App").

The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.