Interface SourceManifestConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SourceManifestConfig.Builder,SourceManifestConfig>,SdkBuilder<SourceManifestConfig.Builder,SourceManifestConfig>,SdkPojo
- Enclosing class:
- SourceManifestConfig
public static interface SourceManifestConfig.Builder extends SdkPojo, CopyableBuilder<SourceManifestConfig.Builder,SourceManifestConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default SourceManifestConfig.Builders3(Consumer<S3ManifestConfig.Builder> s3)Specifies the S3 bucket where you're hosting your manifest.SourceManifestConfig.Builders3(S3ManifestConfig s3)Specifies the S3 bucket where you're hosting your manifest.-
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
SourceManifestConfig.Builder s3(S3ManifestConfig s3)
Specifies the S3 bucket where you're hosting your manifest.
- Parameters:
s3- Specifies the S3 bucket where you're hosting your manifest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3
default SourceManifestConfig.Builder s3(Consumer<S3ManifestConfig.Builder> s3)
Specifies the S3 bucket where you're hosting your manifest.
This is a convenience method that creates an instance of theS3ManifestConfig.Builderavoiding the need to create one manually viaS3ManifestConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3(S3ManifestConfig).- Parameters:
s3- a consumer that will call methods onS3ManifestConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3(S3ManifestConfig)
-
-