Interface OutputDataConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OutputDataConfig.Builder,OutputDataConfig>,SdkBuilder<OutputDataConfig.Builder,OutputDataConfig>,SdkPojo
- Enclosing class:
- OutputDataConfig
public static interface OutputDataConfig.Builder extends SdkPojo, CopyableBuilder<OutputDataConfig.Builder,OutputDataConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default OutputDataConfig.Builders3Configuration(Consumer<S3Configuration.Builder> s3Configuration)The output data configuration that was supplied when the export job was created.OutputDataConfig.Builders3Configuration(S3Configuration s3Configuration)The output data configuration that was supplied when the export job was created.-
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
-
s3Configuration
OutputDataConfig.Builder s3Configuration(S3Configuration s3Configuration)
The output data configuration that was supplied when the export job was created.
- Parameters:
s3Configuration- The output data configuration that was supplied when the export job was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Configuration
default OutputDataConfig.Builder s3Configuration(Consumer<S3Configuration.Builder> s3Configuration)
The output data configuration that was supplied when the export job was created.
This is a convenience method that creates an instance of theS3Configuration.Builderavoiding the need to create one manually viaS3Configuration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3Configuration(S3Configuration).- Parameters:
s3Configuration- a consumer that will call methods onS3Configuration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3Configuration(S3Configuration)
-
-