Class: Aws::SageMakerGeospatial::Types::Operation
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMakerGeospatial::Types::Operation
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemakergeospatial/types.rb
Overview
Represents an arithmetic operation to compute spectral index.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#equation ⇒ String
Textual representation of the math operation; Equation used to compute the spectral index.
-
#name ⇒ String
The name of the operation.
-
#output_type ⇒ String
The type of the operation.
Instance Attribute Details
#equation ⇒ String
Textual representation of the math operation; Equation used to compute the spectral index.
1399 1400 1401 1402 1403 1404 1405 |
# File 'lib/aws-sdk-sagemakergeospatial/types.rb', line 1399 class Operation < Struct.new( :equation, :name, :output_type) SENSITIVE = [] include Aws::Structure end |