Class: Aws::SageMakerGeospatial::Types::BandMathConfigInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemakergeospatial/types.rb

Overview

Input structure for the BandMath operation type. Defines Predefined and CustomIndices to be computed using BandMath.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#custom_indicesTypes::CustomIndicesInput

CustomIndices that are computed.



109
110
111
112
113
114
# File 'lib/aws-sdk-sagemakergeospatial/types.rb', line 109

class BandMathConfigInput < Struct.new(
  :custom_indices,
  :predefined_indices)
  SENSITIVE = []
  include Aws::Structure
end

#predefined_indicesArray<String>

One or many of the supported predefined indices to compute. Allowed values: ‘NDVI`, `EVI2`, `MSAVI`, `NDWI`, `NDMI`, `NDSI`, and `WDRVI`.

Returns:

  • (Array<String>)


109
110
111
112
113
114
# File 'lib/aws-sdk-sagemakergeospatial/types.rb', line 109

class BandMathConfigInput < Struct.new(
  :custom_indices,
  :predefined_indices)
  SENSITIVE = []
  include Aws::Structure
end