Class: Aws::SageMakerGeospatial::Types::ViewOffNadirInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMakerGeospatial::Types::ViewOffNadirInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemakergeospatial/types.rb
Overview
The input structure for specifying ViewOffNadir property filter. ViewOffNadir refers to the angle from the sensor between nadir (straight down) and the scene center. Measured in degrees (0-90).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#lower_bound ⇒ Float
The minimum value for ViewOffNadir property filter.
-
#upper_bound ⇒ Float
The maximum value for ViewOffNadir property filter.
Instance Attribute Details
#lower_bound ⇒ Float
The minimum value for ViewOffNadir property filter. This filters items having ViewOffNadir greater than or equal to this value.
2539 2540 2541 2542 2543 2544 |
# File 'lib/aws-sdk-sagemakergeospatial/types.rb', line 2539 class ViewOffNadirInput < Struct.new( :lower_bound, :upper_bound) SENSITIVE = [] include Aws::Structure end |
#upper_bound ⇒ Float
The maximum value for ViewOffNadir property filter. This filters items having ViewOffNadir lesser than or equal to this value.
2539 2540 2541 2542 2543 2544 |
# File 'lib/aws-sdk-sagemakergeospatial/types.rb', line 2539 class ViewOffNadirInput < Struct.new( :lower_bound, :upper_bound) SENSITIVE = [] include Aws::Structure end |