Interface UpdatePipelineActionProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
UpdatePipelineActionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:49.908Z") @Stability(Deprecated) @Deprecated public interface UpdatePipelineActionProps extends software.amazon.jsii.JsiiSerializable
Deprecated.
This class is part of the old API. Use the API based on the CodePipeline class instead
(deprecated) Props for the UpdatePipelineAction.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.codebuild.*;
 import software.amazon.awscdk.services.codepipeline.*;
 import software.amazon.awscdk.pipelines.*;
 Artifact artifact;
 BuildSpec buildSpec;
 DockerCredential dockerCredential;
 UpdatePipelineActionProps updatePipelineActionProps = UpdatePipelineActionProps.builder()
         .cloudAssemblyInput(artifact)
         .pipelineStackHierarchicalId("pipelineStackHierarchicalId")
         // the properties below are optional
         .buildSpec(buildSpec)
         .cdkCliVersion("cdkCliVersion")
         .dockerCredentials(List.of(dockerCredential))
         .pipelineStackName("pipelineStackName")
         .privileged(false)
         .projectName("projectName")
         .build();
 

  • Method Details

    • getCloudAssemblyInput

      @Stability(Deprecated) @Deprecated @NotNull Artifact getCloudAssemblyInput()
      Deprecated.
      (deprecated) The CodePipeline artifact that holds the Cloud Assembly.
    • getPipelineStackHierarchicalId

      @Stability(Deprecated) @Deprecated @NotNull String getPipelineStackHierarchicalId()
      Deprecated.
      (deprecated) Hierarchical id of the pipeline stack.
    • getBuildSpec

      @Stability(Deprecated) @Deprecated @Nullable default BuildSpec getBuildSpec()
      Deprecated.
      (deprecated) Custom BuildSpec that is merged with generated one.

      Default: - none

    • getCdkCliVersion

      @Stability(Deprecated) @Deprecated @Nullable default String getCdkCliVersion()
      Deprecated.
      (deprecated) Version of CDK CLI to 'npm install'.

      Default: - Latest version

    • getDockerCredentials

      @Stability(Deprecated) @Deprecated @Nullable default List<DockerCredential> getDockerCredentials()
      Deprecated.
      (deprecated) Docker registries and associated credentials necessary during the pipeline self-update stage.

      Default: []

    • getPipelineStackName

      @Stability(Deprecated) @Deprecated @Nullable default String getPipelineStackName()
      Deprecated.
      • Use pipelineStackHierarchicalId instead.
      (deprecated) Name of the pipeline stack.

      Default: - none

    • getPrivileged

      @Stability(Deprecated) @Deprecated @Nullable default Boolean getPrivileged()
      Deprecated.
      (deprecated) Whether the build step should run in privileged mode.

      Default: - false

    • getProjectName

      @Stability(Deprecated) @Deprecated @Nullable default String getProjectName()
      Deprecated.
      (deprecated) Name of the CodeBuild project.

      Default: - Automatically generated

    • builder

      @Stability(Deprecated) @Deprecated static UpdatePipelineActionProps.Builder builder()
      Deprecated.
      Returns:
      a UpdatePipelineActionProps.Builder of UpdatePipelineActionProps