Interface PipeSourceRabbitMQBrokerParameters.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PipeSourceRabbitMQBrokerParameters.Builder,PipeSourceRabbitMQBrokerParameters>,SdkBuilder<PipeSourceRabbitMQBrokerParameters.Builder,PipeSourceRabbitMQBrokerParameters>,SdkPojo
- Enclosing class:
- PipeSourceRabbitMQBrokerParameters
public static interface PipeSourceRabbitMQBrokerParameters.Builder extends SdkPojo, CopyableBuilder<PipeSourceRabbitMQBrokerParameters.Builder,PipeSourceRabbitMQBrokerParameters>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description PipeSourceRabbitMQBrokerParameters.BuilderbatchSize(Integer batchSize)The maximum number of records to include in each batch.default PipeSourceRabbitMQBrokerParameters.Buildercredentials(Consumer<MQBrokerAccessCredentials.Builder> credentials)The credentials needed to access the resource.PipeSourceRabbitMQBrokerParameters.Buildercredentials(MQBrokerAccessCredentials credentials)The credentials needed to access the resource.PipeSourceRabbitMQBrokerParameters.BuildermaximumBatchingWindowInSeconds(Integer maximumBatchingWindowInSeconds)The maximum length of a time to wait for events.PipeSourceRabbitMQBrokerParameters.BuilderqueueName(String queueName)The name of the destination queue to consume.PipeSourceRabbitMQBrokerParameters.BuildervirtualHost(String virtualHost)The name of the virtual host associated with the source broker.-
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 Detail
-
batchSize
PipeSourceRabbitMQBrokerParameters.Builder batchSize(Integer batchSize)
The maximum number of records to include in each batch.
- Parameters:
batchSize- The maximum number of records to include in each batch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
credentials
PipeSourceRabbitMQBrokerParameters.Builder credentials(MQBrokerAccessCredentials credentials)
The credentials needed to access the resource.
- Parameters:
credentials- The credentials needed to access the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
credentials
default PipeSourceRabbitMQBrokerParameters.Builder credentials(Consumer<MQBrokerAccessCredentials.Builder> credentials)
The credentials needed to access the resource.
This is a convenience method that creates an instance of theMQBrokerAccessCredentials.Builderavoiding the need to create one manually viaMQBrokerAccessCredentials.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocredentials(MQBrokerAccessCredentials).- Parameters:
credentials- a consumer that will call methods onMQBrokerAccessCredentials.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
credentials(MQBrokerAccessCredentials)
-
maximumBatchingWindowInSeconds
PipeSourceRabbitMQBrokerParameters.Builder maximumBatchingWindowInSeconds(Integer maximumBatchingWindowInSeconds)
The maximum length of a time to wait for events.
- Parameters:
maximumBatchingWindowInSeconds- The maximum length of a time to wait for events.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queueName
PipeSourceRabbitMQBrokerParameters.Builder queueName(String queueName)
The name of the destination queue to consume.
- Parameters:
queueName- The name of the destination queue to consume.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
virtualHost
PipeSourceRabbitMQBrokerParameters.Builder virtualHost(String virtualHost)
The name of the virtual host associated with the source broker.
- Parameters:
virtualHost- The name of the virtual host associated with the source broker.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-