Interface PutActionRevisionRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CodePipelineRequest.Builder,CopyableBuilder<PutActionRevisionRequest.Builder,PutActionRevisionRequest>,SdkBuilder<PutActionRevisionRequest.Builder,PutActionRevisionRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- PutActionRevisionRequest
public static interface PutActionRevisionRequest.Builder extends CodePipelineRequest.Builder, SdkPojo, CopyableBuilder<PutActionRevisionRequest.Builder,PutActionRevisionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description PutActionRevisionRequest.BuilderactionName(String actionName)The name of the action that processes the revision.default PutActionRevisionRequest.BuilderactionRevision(Consumer<ActionRevision.Builder> actionRevision)Represents information about the version (or revision) of an action.PutActionRevisionRequest.BuilderactionRevision(ActionRevision actionRevision)Represents information about the version (or revision) of an action.PutActionRevisionRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)PutActionRevisionRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)PutActionRevisionRequest.BuilderpipelineName(String pipelineName)The name of the pipeline that starts processing the revision to the source.PutActionRevisionRequest.BuilderstageName(String stageName)The name of the stage that contains the action that acts on the revision.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.codepipeline.model.CodePipelineRequest.Builder
build
-
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
-
pipelineName
PutActionRevisionRequest.Builder pipelineName(String pipelineName)
The name of the pipeline that starts processing the revision to the source.
- Parameters:
pipelineName- The name of the pipeline that starts processing the revision to the source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stageName
PutActionRevisionRequest.Builder stageName(String stageName)
The name of the stage that contains the action that acts on the revision.
- Parameters:
stageName- The name of the stage that contains the action that acts on the revision.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actionName
PutActionRevisionRequest.Builder actionName(String actionName)
The name of the action that processes the revision.
- Parameters:
actionName- The name of the action that processes the revision.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actionRevision
PutActionRevisionRequest.Builder actionRevision(ActionRevision actionRevision)
Represents information about the version (or revision) of an action.
- Parameters:
actionRevision- Represents information about the version (or revision) of an action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actionRevision
default PutActionRevisionRequest.Builder actionRevision(Consumer<ActionRevision.Builder> actionRevision)
Represents information about the version (or revision) of an action.
This is a convenience method that creates an instance of theActionRevision.Builderavoiding the need to create one manually viaActionRevision.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toactionRevision(ActionRevision).- Parameters:
actionRevision- a consumer that will call methods onActionRevision.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
actionRevision(ActionRevision)
-
overrideConfiguration
PutActionRevisionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
PutActionRevisionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-