Show / Hide Table of Contents

Interface CfnPipeline.IOutputArtifactProperty

Represents information about the output of an action.

Namespace: Amazon.CDK.AWS.CodePipeline
Assembly: Amazon.CDK.AWS.CodePipeline.dll
Syntax (csharp)
public interface IOutputArtifactProperty
Syntax (vb)
Public Interface IOutputArtifactProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions-outputartifacts.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodePipeline;

OutputArtifactProperty outputArtifactProperty = new OutputArtifactProperty {
    Name = "name"
};

Synopsis

Properties

Name

The name of the output of an artifact, such as "My App".

Properties

Name

The name of the output of an artifact, such as "My App".

string Name { get; }
Property Value

System.String

Remarks

The output artifact name must exactly match the input artifact declared for a downstream action. However, the downstream action's 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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions-outputartifacts.html#cfn-codepipeline-pipeline-stages-actions-outputartifacts-name

Back to top Generated by DocFX