Class: Aws::SageMakerGeospatial::Types::ViewSunAzimuthInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMakerGeospatial::Types::ViewSunAzimuthInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemakergeospatial/types.rb
Overview
The input structure for specifying ViewSunAzimuth property filter. ViewSunAzimuth refers to the Sun azimuth angle. From the scene center point on the ground, this is the angle between truth north and the sun. Measured clockwise in degrees (0-360).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#lower_bound ⇒ Float
The minimum value for ViewSunAzimuth property filter.
-
#upper_bound ⇒ Float
The maximum value for ViewSunAzimuth property filter.
Instance Attribute Details
#lower_bound ⇒ Float
The minimum value for ViewSunAzimuth property filter. This filters items having ViewSunAzimuth greater than or equal to this value.
2563 2564 2565 2566 2567 2568 |
# File 'lib/aws-sdk-sagemakergeospatial/types.rb', line 2563 class ViewSunAzimuthInput < Struct.new( :lower_bound, :upper_bound) SENSITIVE = [] include Aws::Structure end |
#upper_bound ⇒ Float
The maximum value for ViewSunAzimuth property filter. This filters items having ViewSunAzimuth lesser than or equal to this value.
2563 2564 2565 2566 2567 2568 |
# File 'lib/aws-sdk-sagemakergeospatial/types.rb', line 2563 class ViewSunAzimuthInput < Struct.new( :lower_bound, :upper_bound) SENSITIVE = [] include Aws::Structure end |