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

Description

 
Synopsis

Documentation

data OutputArtifact Source #

Represents information about the output of an action.

See: newOutputArtifact smart constructor.

Constructors

OutputArtifact' 

Fields

  • name :: Text

    The name of the output of an artifact, such as "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.

    Output artifact names must be unique within a pipeline.

Instances

Instances details
Eq OutputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.OutputArtifact

Read OutputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.OutputArtifact

Show OutputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.OutputArtifact

Generic OutputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.OutputArtifact

Associated Types

type Rep OutputArtifact :: Type -> Type #

NFData OutputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.OutputArtifact

Methods

rnf :: OutputArtifact -> () #

Hashable OutputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.OutputArtifact

ToJSON OutputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.OutputArtifact

FromJSON OutputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.OutputArtifact

type Rep OutputArtifact Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.OutputArtifact

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

newOutputArtifact Source #

Create a value of OutputArtifact 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:OutputArtifact', outputArtifact_name - The name of the output of an artifact, such as "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.

Output artifact names must be unique within a pipeline.

outputArtifact_name :: Lens' OutputArtifact Text Source #

The name of the output of an artifact, such as "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.

Output artifact names must be unique within a pipeline.