Interface ExportingConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExportingConfig.Builder,ExportingConfig>,SdkBuilder<ExportingConfig.Builder,ExportingConfig>,SdkPojo
- Enclosing class:
- ExportingConfig
public static interface ExportingConfig.Builder extends SdkPojo, CopyableBuilder<ExportingConfig.Builder,ExportingConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ExportingConfig.Builders3Exporting(Consumer<S3ExportingConfig.Builder> s3Exporting)The S3 location where Identity Resolution Jobs write result files.ExportingConfig.Builders3Exporting(S3ExportingConfig s3Exporting)The S3 location where Identity Resolution Jobs write result files.-
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
-
s3Exporting
ExportingConfig.Builder s3Exporting(S3ExportingConfig s3Exporting)
The S3 location where Identity Resolution Jobs write result files.
- Parameters:
s3Exporting- The S3 location where Identity Resolution Jobs write result files.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Exporting
default ExportingConfig.Builder s3Exporting(Consumer<S3ExportingConfig.Builder> s3Exporting)
The S3 location where Identity Resolution Jobs write result files.
This is a convenience method that creates an instance of theS3ExportingConfig.Builderavoiding the need to create one manually viaS3ExportingConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3Exporting(S3ExportingConfig).- Parameters:
s3Exporting- a consumer that will call methods onS3ExportingConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3Exporting(S3ExportingConfig)
-
-