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
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default UpdatePipelineRequest.BuilderbufferOptions(Consumer<BufferOptions.Builder> bufferOptions)Key-value pairs to configure persistent buffering for the pipeline.UpdatePipelineRequest.BuilderbufferOptions(BufferOptions bufferOptions)Key-value pairs to configure persistent buffering for the pipeline.default UpdatePipelineRequest.BuilderencryptionAtRestOptions(Consumer<EncryptionAtRestOptions.Builder> encryptionAtRestOptions)Key-value pairs to configure encryption for data that is written to a persistent buffer.UpdatePipelineRequest.BuilderencryptionAtRestOptions(EncryptionAtRestOptions encryptionAtRestOptions)Key-value pairs to configure encryption for data that is written to a persistent buffer.default UpdatePipelineRequest.BuilderlogPublishingOptions(Consumer<LogPublishingOptions.Builder> logPublishingOptions)Key-value pairs to configure log publishing.UpdatePipelineRequest.BuilderlogPublishingOptions(LogPublishingOptions logPublishingOptions)Key-value pairs to configure log publishing.UpdatePipelineRequest.BuildermaxUnits(Integer maxUnits)The maximum pipeline capacity, in Ingestion Compute Units (ICUs)UpdatePipelineRequest.BuilderminUnits(Integer minUnits)The minimum pipeline capacity, in Ingestion Compute Units (ICUs).UpdatePipelineRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdatePipelineRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdatePipelineRequest.BuilderpipelineConfigurationBody(String pipelineConfigurationBody)The pipeline configuration in YAML format.UpdatePipelineRequest.BuilderpipelineName(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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
pipelineName
UpdatePipelineRequest.Builder pipelineName(String 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
UpdatePipelineRequest.Builder minUnits(Integer 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
UpdatePipelineRequest.Builder maxUnits(Integer 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
UpdatePipelineRequest.Builder pipelineConfigurationBody(String 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
UpdatePipelineRequest.Builder logPublishingOptions(LogPublishingOptions 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.Builderavoiding the need to create one manually viaLogPublishingOptions.builder().When the
Consumercompletes,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:
logPublishingOptions(LogPublishingOptions)
-
bufferOptions
UpdatePipelineRequest.Builder bufferOptions(BufferOptions bufferOptions)
Key-value pairs to configure persistent buffering for the pipeline.
- Parameters:
bufferOptions- Key-value pairs to configure persistent buffering for the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bufferOptions
default UpdatePipelineRequest.Builder bufferOptions(Consumer<BufferOptions.Builder> bufferOptions)
Key-value pairs to configure persistent buffering for the pipeline.
This is a convenience method that creates an instance of theBufferOptions.Builderavoiding the need to create one manually viaBufferOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tobufferOptions(BufferOptions).- Parameters:
bufferOptions- a consumer that will call methods onBufferOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
bufferOptions(BufferOptions)
-
encryptionAtRestOptions
UpdatePipelineRequest.Builder encryptionAtRestOptions(EncryptionAtRestOptions encryptionAtRestOptions)
Key-value pairs to configure encryption for data that is written to a persistent buffer.
- Parameters:
encryptionAtRestOptions- Key-value pairs to configure encryption for data that is written to a persistent buffer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionAtRestOptions
default UpdatePipelineRequest.Builder encryptionAtRestOptions(Consumer<EncryptionAtRestOptions.Builder> encryptionAtRestOptions)
Key-value pairs to configure encryption for data that is written to a persistent buffer.
This is a convenience method that creates an instance of theEncryptionAtRestOptions.Builderavoiding the need to create one manually viaEncryptionAtRestOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toencryptionAtRestOptions(EncryptionAtRestOptions).- Parameters:
encryptionAtRestOptions- a consumer that will call methods onEncryptionAtRestOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
encryptionAtRestOptions(EncryptionAtRestOptions)
-
overrideConfiguration
UpdatePipelineRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdatePipelineRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-