Interface SourceRevisionOverride.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SourceRevisionOverride.Builder,SourceRevisionOverride>,SdkBuilder<SourceRevisionOverride.Builder,SourceRevisionOverride>,SdkPojo
- Enclosing class:
- SourceRevisionOverride
public static interface SourceRevisionOverride.Builder extends SdkPojo, CopyableBuilder<SourceRevisionOverride.Builder,SourceRevisionOverride>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SourceRevisionOverride.BuilderactionName(String actionName)The name of the action where the override will be applied.SourceRevisionOverride.BuilderrevisionType(String revisionType)The type of source revision, based on the source provider.SourceRevisionOverride.BuilderrevisionType(SourceRevisionType revisionType)The type of source revision, based on the source provider.SourceRevisionOverride.BuilderrevisionValue(String revisionValue)The source revision, or version of your source artifact, with the changes that you want to run in the pipeline execution.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
actionName
SourceRevisionOverride.Builder actionName(String actionName)
The name of the action where the override will be applied.
- Parameters:
actionName- The name of the action where the override will be applied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
revisionType
SourceRevisionOverride.Builder revisionType(String revisionType)
The type of source revision, based on the source provider. For example, the revision type for the CodeCommit action provider is the commit ID.
- Parameters:
revisionType- The type of source revision, based on the source provider. For example, the revision type for the CodeCommit action provider is the commit ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SourceRevisionType,SourceRevisionType
-
revisionType
SourceRevisionOverride.Builder revisionType(SourceRevisionType revisionType)
The type of source revision, based on the source provider. For example, the revision type for the CodeCommit action provider is the commit ID.
- Parameters:
revisionType- The type of source revision, based on the source provider. For example, the revision type for the CodeCommit action provider is the commit ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SourceRevisionType,SourceRevisionType
-
revisionValue
SourceRevisionOverride.Builder revisionValue(String revisionValue)
The source revision, or version of your source artifact, with the changes that you want to run in the pipeline execution.
- Parameters:
revisionValue- The source revision, or version of your source artifact, with the changes that you want to run in the pipeline execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-