Interface IUpdatePipelineActionProps
(deprecated) Props for the UpdatePipelineAction.
Namespace: Amazon.CDK.Pipelines
Assembly: Amazon.CDK.Pipelines.dll
Syntax (csharp)
public interface IUpdatePipelineActionProps
Syntax (vb)
Public Interface IUpdatePipelineActionProps
Remarks
Stability: Deprecated
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.CodeBuild;
using Amazon.CDK.AWS.CodePipeline;
using Amazon.CDK.Pipelines;
Artifact artifact;
BuildSpec buildSpec;
DockerCredential dockerCredential;
var updatePipelineActionProps = new UpdatePipelineActionProps {
CloudAssemblyInput = artifact,
PipelineStackHierarchicalId = "pipelineStackHierarchicalId",
// the properties below are optional
BuildSpec = buildSpec,
CdkCliVersion = "cdkCliVersion",
DockerCredentials = new [] { dockerCredential },
PipelineStackName = "pipelineStackName",
Privileged = false,
ProjectName = "projectName"
};
Synopsis
Properties
BuildSpec | (deprecated) Custom BuildSpec that is merged with generated one. |
CdkCliVersion | (deprecated) Version of CDK CLI to 'npm install'. |
CloudAssemblyInput | (deprecated) The CodePipeline artifact that holds the Cloud Assembly. |
DockerCredentials | (deprecated) Docker registries and associated credentials necessary during the pipeline self-update stage. |
PipelineStackHierarchicalId | (deprecated) Hierarchical id of the pipeline stack. |
PipelineStackName | (deprecated) Name of the pipeline stack. |
Privileged | (deprecated) Whether the build step should run in privileged mode. |
ProjectName | (deprecated) Name of the CodeBuild project. |
Properties
BuildSpec
(deprecated) Custom BuildSpec that is merged with generated one.
virtual BuildSpec BuildSpec { get; }
Property Value
Remarks
Default: - none
Stability: Deprecated
CdkCliVersion
(deprecated) Version of CDK CLI to 'npm install'.
virtual string CdkCliVersion { get; }
Property Value
System.String
Remarks
Default: - Latest version
Stability: Deprecated
CloudAssemblyInput
(deprecated) The CodePipeline artifact that holds the Cloud Assembly.
Artifact_ CloudAssemblyInput { get; }
Property Value
Remarks
Stability: Deprecated
DockerCredentials
(deprecated) Docker registries and associated credentials necessary during the pipeline self-update stage.
virtual DockerCredential[] DockerCredentials { get; }
Property Value
Remarks
Default: []
Stability: Deprecated
PipelineStackHierarchicalId
(deprecated) Hierarchical id of the pipeline stack.
string PipelineStackHierarchicalId { get; }
Property Value
System.String
Remarks
Stability: Deprecated
PipelineStackName
(deprecated) Name of the pipeline stack.
virtual string PipelineStackName { get; }
Property Value
System.String
Remarks
Default: - none
Stability: Deprecated
Privileged
(deprecated) Whether the build step should run in privileged mode.
virtual Nullable<bool> Privileged { get; }
Property Value
System.Nullable<System.Boolean>
Remarks
Default: - false
Stability: Deprecated
ProjectName
(deprecated) Name of the CodeBuild project.
virtual string ProjectName { get; }
Property Value
System.String
Remarks
Default: - Automatically generated
Stability: Deprecated