Interface Attachments.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Attachments.Builder,Attachments>,SdkBuilder<Attachments.Builder,Attachments>,SdkPojo
- Enclosing class:
- Attachments
public static interface Attachments.Builder extends SdkPojo, CopyableBuilder<Attachments.Builder,Attachments>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Attachments.BuilderfileSystem(String fileSystem)The file system.Attachments.BuilderfileSystem(JobAttachmentsFileSystem fileSystem)The file system.Attachments.Buildermanifests(Collection<ManifestProperties> manifests)A list of manifests which describe job attachment configurations.Attachments.Buildermanifests(Consumer<ManifestProperties.Builder>... manifests)A list of manifests which describe job attachment configurations.Attachments.Buildermanifests(ManifestProperties... manifests)A list of manifests which describe job attachment configurations.-
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
-
fileSystem
Attachments.Builder fileSystem(String fileSystem)
The file system.
- Parameters:
fileSystem- The file system.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JobAttachmentsFileSystem,JobAttachmentsFileSystem
-
fileSystem
Attachments.Builder fileSystem(JobAttachmentsFileSystem fileSystem)
The file system.
- Parameters:
fileSystem- The file system.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JobAttachmentsFileSystem,JobAttachmentsFileSystem
-
manifests
Attachments.Builder manifests(Collection<ManifestProperties> manifests)
A list of manifests which describe job attachment configurations.
- Parameters:
manifests- A list of manifests which describe job attachment configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
manifests
Attachments.Builder manifests(ManifestProperties... manifests)
A list of manifests which describe job attachment configurations.
- Parameters:
manifests- A list of manifests which describe job attachment configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
manifests
Attachments.Builder manifests(Consumer<ManifestProperties.Builder>... manifests)
A list of manifests which describe job attachment configurations.
This is a convenience method that creates an instance of theManifestProperties.Builderavoiding the need to create one manually viaManifestProperties.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#manifests(List.) - Parameters:
manifests- a consumer that will call methods onManifestProperties.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#manifests(java.util.Collection)
-
-