Package software.amazon.awscdk.pipelines
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.
(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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Deprecated.default BuildSpecDeprecated.default StringDeprecated.Deprecated.default List<DockerCredential>Deprecated.Deprecated.default StringDeprecated.UsepipelineStackHierarchicalIdinstead.default BooleanDeprecated.default StringDeprecated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudAssemblyInput
Deprecated.(deprecated) The CodePipeline artifact that holds the Cloud Assembly. -
getPipelineStackHierarchicalId
Deprecated.(deprecated) Hierarchical id of the pipeline stack. -
getBuildSpec
Deprecated.(deprecated) Custom BuildSpec that is merged with generated one.Default: - none
-
getCdkCliVersion
Deprecated.(deprecated) Version of CDK CLI to 'npm install'.Default: - Latest version
-
getDockerCredentials
Deprecated.(deprecated) Docker registries and associated credentials necessary during the pipeline self-update stage.Default: []
-
getPipelineStackName
Deprecated.- Use
pipelineStackHierarchicalIdinstead.
(deprecated) Name of the pipeline stack.Default: - none
- Use
-
getPrivileged
Deprecated.(deprecated) Whether the build step should run in privileged mode.Default: - false
-
getProjectName
Deprecated.(deprecated) Name of the CodeBuild project.Default: - Automatically generated
-
builder
Deprecated.- Returns:
- a
UpdatePipelineActionProps.BuilderofUpdatePipelineActionProps
-
CodePipelineclass instead