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
Modifier and TypeMethodDescriptionactionName
(String actionName) The name of the action that processes the revision.default PutActionRevisionRequest.Builder
actionRevision
(Consumer<ActionRevision.Builder> actionRevision) Represents information about the version (or revision) of an action.actionRevision
(ActionRevision actionRevision) Represents information about the version (or revision) of an action.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.pipelineName
(String pipelineName) The name of the pipeline that starts processing the revision to the source.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, sdkFields
-
Method Details
-
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
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
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
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.Builder
avoiding the need to create one manually viaActionRevision.builder()
.When the
Consumer
completes,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:
-
overrideConfiguration
PutActionRevisionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
PutActionRevisionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-