Interface BandMathConfigInput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BandMathConfigInput.Builder,BandMathConfigInput>,SdkBuilder<BandMathConfigInput.Builder,BandMathConfigInput>,SdkPojo
- Enclosing class:
- BandMathConfigInput
public static interface BandMathConfigInput.Builder extends SdkPojo, CopyableBuilder<BandMathConfigInput.Builder,BandMathConfigInput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default BandMathConfigInput.BuildercustomIndices(Consumer<CustomIndicesInput.Builder> customIndices)CustomIndices that are computed.BandMathConfigInput.BuildercustomIndices(CustomIndicesInput customIndices)CustomIndices that are computed.BandMathConfigInput.BuilderpredefinedIndices(String... predefinedIndices)One or many of the supported predefined indices to compute.BandMathConfigInput.BuilderpredefinedIndices(Collection<String> predefinedIndices)One or many of the supported predefined indices to compute.-
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
-
customIndices
BandMathConfigInput.Builder customIndices(CustomIndicesInput customIndices)
CustomIndices that are computed.
- Parameters:
customIndices- CustomIndices that are computed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customIndices
default BandMathConfigInput.Builder customIndices(Consumer<CustomIndicesInput.Builder> customIndices)
CustomIndices that are computed.
This is a convenience method that creates an instance of theCustomIndicesInput.Builderavoiding the need to create one manually viaCustomIndicesInput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocustomIndices(CustomIndicesInput).- Parameters:
customIndices- a consumer that will call methods onCustomIndicesInput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
customIndices(CustomIndicesInput)
-
predefinedIndices
BandMathConfigInput.Builder predefinedIndices(Collection<String> predefinedIndices)
One or many of the supported predefined indices to compute. Allowed values:
NDVI,EVI2,MSAVI,NDWI,NDMI,NDSI, andWDRVI.- Parameters:
predefinedIndices- One or many of the supported predefined indices to compute. Allowed values:NDVI,EVI2,MSAVI,NDWI,NDMI,NDSI, andWDRVI.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
predefinedIndices
BandMathConfigInput.Builder predefinedIndices(String... predefinedIndices)
One or many of the supported predefined indices to compute. Allowed values:
NDVI,EVI2,MSAVI,NDWI,NDMI,NDSI, andWDRVI.- Parameters:
predefinedIndices- One or many of the supported predefined indices to compute. Allowed values:NDVI,EVI2,MSAVI,NDWI,NDMI,NDSI, andWDRVI.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-