Interface JobManifest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<JobManifest.Builder,JobManifest>,SdkBuilder<JobManifest.Builder,JobManifest>,SdkPojo
- Enclosing class:
- JobManifest
public static interface JobManifest.Builder extends SdkPojo, CopyableBuilder<JobManifest.Builder,JobManifest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default JobManifest.Builderlocation(Consumer<JobManifestLocation.Builder> location)Contains the information required to locate the specified job's manifest.JobManifest.Builderlocation(JobManifestLocation location)Contains the information required to locate the specified job's manifest.default JobManifest.Builderspec(Consumer<JobManifestSpec.Builder> spec)Describes the format of the specified job's manifest.JobManifest.Builderspec(JobManifestSpec spec)Describes the format of the specified job's 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
-
spec
JobManifest.Builder spec(JobManifestSpec spec)
Describes the format of the specified job's manifest. If the manifest is in CSV format, also describes the columns contained within the manifest.
- Parameters:
spec- Describes the format of the specified job's manifest. If the manifest is in CSV format, also describes the columns contained within the manifest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
spec
default JobManifest.Builder spec(Consumer<JobManifestSpec.Builder> spec)
Describes the format of the specified job's manifest. If the manifest is in CSV format, also describes the columns contained within the manifest.
This is a convenience method that creates an instance of theJobManifestSpec.Builderavoiding the need to create one manually viaJobManifestSpec.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tospec(JobManifestSpec).- Parameters:
spec- a consumer that will call methods onJobManifestSpec.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
spec(JobManifestSpec)
-
location
JobManifest.Builder location(JobManifestLocation location)
Contains the information required to locate the specified job's manifest.
- Parameters:
location- Contains the information required to locate the specified job's manifest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
location
default JobManifest.Builder location(Consumer<JobManifestLocation.Builder> location)
Contains the information required to locate the specified job's manifest.
This is a convenience method that creates an instance of theJobManifestLocation.Builderavoiding the need to create one manually viaJobManifestLocation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tolocation(JobManifestLocation).- Parameters:
location- a consumer that will call methods onJobManifestLocation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
location(JobManifestLocation)
-
-