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
Modifier and TypeInterfaceDescriptionstatic final class
Deprecated.static final class
Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Deprecated.default BuildSpec
Deprecated.default String
Deprecated.Deprecated.default List<DockerCredential>
Deprecated.Deprecated.default String
Deprecated.UsepipelineStackHierarchicalId
instead.default Boolean
Deprecated.default String
Deprecated.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
pipelineStackHierarchicalId
instead.
(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.Builder
ofUpdatePipelineActionProps
-
CodePipeline
class instead