Interface StorageFlowNodeServiceConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StorageFlowNodeServiceConfiguration.Builder,StorageFlowNodeServiceConfiguration>,SdkBuilder<StorageFlowNodeServiceConfiguration.Builder,StorageFlowNodeServiceConfiguration>,SdkPojo
- Enclosing class:
- StorageFlowNodeServiceConfiguration
public static interface StorageFlowNodeServiceConfiguration.Builder extends SdkPojo, CopyableBuilder<StorageFlowNodeServiceConfiguration.Builder,StorageFlowNodeServiceConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default StorageFlowNodeServiceConfiguration.Builders3(Consumer<StorageFlowNodeS3Configuration.Builder> s3)Contains configurations for the Amazon S3 location in which to store the input into the node.StorageFlowNodeServiceConfiguration.Builders3(StorageFlowNodeS3Configuration s3)Contains configurations for the Amazon S3 location in which to store the input into the node.-
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
-
s3
StorageFlowNodeServiceConfiguration.Builder s3(StorageFlowNodeS3Configuration s3)
Contains configurations for the Amazon S3 location in which to store the input into the node.
- Parameters:
s3- Contains configurations for the Amazon S3 location in which to store the input into the node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3
default StorageFlowNodeServiceConfiguration.Builder s3(Consumer<StorageFlowNodeS3Configuration.Builder> s3)
Contains configurations for the Amazon S3 location in which to store the input into the node.
This is a convenience method that creates an instance of theStorageFlowNodeS3Configuration.Builderavoiding the need to create one manually viaStorageFlowNodeS3Configuration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3(StorageFlowNodeS3Configuration).- Parameters:
s3- a consumer that will call methods onStorageFlowNodeS3Configuration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3(StorageFlowNodeS3Configuration)
-
-