Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(aws-codepipeline): make input and output artifact names optional when creating Actions #845

Merged
merged 1 commit into from
Oct 11, 2018

Commits on Oct 11, 2018

  1. feat(aws-codepipeline): make input and output artifact names optional…

    … when creating Actions.
    
    BREAKING CHANGE: this commit contains the following breaking changes:
    * Rename 'artifactName' in Action construction properties to 'outputArtifactName'
    * Rename the 'artifact' property of Actions to 'outputArtifact'
    * No longer allow adding output artifacts to Actions by instantiating the Artifact class
    * Rename Action#input/outputArtifacts properties to _input/_outputArtifacts
    
    Previously, we always required customers to explicitly name the output artifacts the Actions used in the Pipeline,
    and to explicitly "wire together" the outputs of one Action as inputs to another.
    With this change, the CodePipeline Construct generates artifact names,
    if the customer didn't provide one explicitly,
    and tries to find the first available output artifact to use as input to a newly created Action that needs it,
    thus turning both the input and output artifacts from required to optional properties.
    skinny85 committed Oct 11, 2018
    Configuration menu
    Copy the full SHA
    fedc18e View commit details
    Browse the repository at this point in the history