Interface StaticFile.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StaticFile.Builder,StaticFile>,SdkBuilder<StaticFile.Builder,StaticFile>,SdkPojo
- Enclosing class:
- StaticFile
@Mutable @NotThreadSafe public static interface StaticFile.Builder extends SdkPojo, CopyableBuilder<StaticFile.Builder,StaticFile>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default StaticFile.BuilderimageStaticFile(Consumer<ImageStaticFile.Builder> imageStaticFile)The image static file.StaticFile.BuilderimageStaticFile(ImageStaticFile imageStaticFile)The image static file.default StaticFile.BuilderspatialStaticFile(Consumer<SpatialStaticFile.Builder> spatialStaticFile)The spacial static file.StaticFile.BuilderspatialStaticFile(SpatialStaticFile spatialStaticFile)The spacial static file.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
imageStaticFile
StaticFile.Builder imageStaticFile(ImageStaticFile imageStaticFile)
The image static file.
- Parameters:
imageStaticFile- The image static file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
imageStaticFile
default StaticFile.Builder imageStaticFile(Consumer<ImageStaticFile.Builder> imageStaticFile)
The image static file.
This is a convenience method that creates an instance of theImageStaticFile.Builderavoiding the need to create one manually viaImageStaticFile.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toimageStaticFile(ImageStaticFile).- Parameters:
imageStaticFile- a consumer that will call methods onImageStaticFile.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
imageStaticFile(ImageStaticFile)
-
spatialStaticFile
StaticFile.Builder spatialStaticFile(SpatialStaticFile spatialStaticFile)
The spacial static file.
- Parameters:
spatialStaticFile- The spacial static file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
spatialStaticFile
default StaticFile.Builder spatialStaticFile(Consumer<SpatialStaticFile.Builder> spatialStaticFile)
The spacial static file.
This is a convenience method that creates an instance of theSpatialStaticFile.Builderavoiding the need to create one manually viaSpatialStaticFile.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tospatialStaticFile(SpatialStaticFile).- Parameters:
spatialStaticFile- a consumer that will call methods onSpatialStaticFile.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
spatialStaticFile(SpatialStaticFile)
-
-