Interface UpdatePipelineRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdatePipelineRequest.Builder,
,UpdatePipelineRequest> OsisRequest.Builder
,SdkBuilder<UpdatePipelineRequest.Builder,
,UpdatePipelineRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
UpdatePipelineRequest
public static interface UpdatePipelineRequest.Builder
extends OsisRequest.Builder, SdkPojo, CopyableBuilder<UpdatePipelineRequest.Builder,UpdatePipelineRequest>
-
Method Summary
Modifier and TypeMethodDescriptiondefault UpdatePipelineRequest.Builder
logPublishingOptions
(Consumer<LogPublishingOptions.Builder> logPublishingOptions) Key-value pairs to configure log publishing.logPublishingOptions
(LogPublishingOptions logPublishingOptions) Key-value pairs to configure log publishing.The maximum pipeline capacity, in Ingestion Compute Units (ICUs)The minimum pipeline capacity, in Ingestion Compute Units (ICUs).overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.pipelineConfigurationBody
(String pipelineConfigurationBody) The pipeline configuration in YAML format.pipelineName
(String pipelineName) The name of the pipeline to update.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.services.osis.model.OsisRequest.Builder
build
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 to update.
- Parameters:
pipelineName
- The name of the pipeline to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minUnits
The minimum pipeline capacity, in Ingestion Compute Units (ICUs).
- Parameters:
minUnits
- The minimum pipeline capacity, in Ingestion Compute Units (ICUs).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxUnits
The maximum pipeline capacity, in Ingestion Compute Units (ICUs)
- Parameters:
maxUnits
- The maximum pipeline capacity, in Ingestion Compute Units (ICUs)- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelineConfigurationBody
The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with
\n
.- Parameters:
pipelineConfigurationBody
- The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with\n
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logPublishingOptions
Key-value pairs to configure log publishing.
- Parameters:
logPublishingOptions
- Key-value pairs to configure log publishing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logPublishingOptions
default UpdatePipelineRequest.Builder logPublishingOptions(Consumer<LogPublishingOptions.Builder> logPublishingOptions) Key-value pairs to configure log publishing.
This is a convenience method that creates an instance of theLogPublishingOptions.Builder
avoiding the need to create one manually viaLogPublishingOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tologPublishingOptions(LogPublishingOptions)
.- Parameters:
logPublishingOptions
- a consumer that will call methods onLogPublishingOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
UpdatePipelineRequest.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
UpdatePipelineRequest.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.
-