#[non_exhaustive]pub struct RasterDataCollectionQueryInput { /* private fields */ }
Expand description
The input structure for Raster Data Collection Query containing the Area of Interest, TimeRange Filters, and Property Filters.
Implementations§
source§impl RasterDataCollectionQueryInput
impl RasterDataCollectionQueryInput
sourcepub fn raster_data_collection_arn(&self) -> Option<&str>
pub fn raster_data_collection_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the raster data collection.
sourcepub fn time_range_filter(&self) -> Option<&TimeRangeFilterInput>
pub fn time_range_filter(&self) -> Option<&TimeRangeFilterInput>
The TimeRange Filter used in the RasterDataCollection Query.
sourcepub fn area_of_interest(&self) -> Option<&AreaOfInterest>
pub fn area_of_interest(&self) -> Option<&AreaOfInterest>
The area of interest being queried for the raster data collection.
sourcepub fn property_filters(&self) -> Option<&PropertyFilters>
pub fn property_filters(&self) -> Option<&PropertyFilters>
The list of Property filters used in the Raster Data Collection Query.
source§impl RasterDataCollectionQueryInput
impl RasterDataCollectionQueryInput
sourcepub fn builder() -> RasterDataCollectionQueryInputBuilder
pub fn builder() -> RasterDataCollectionQueryInputBuilder
Creates a new builder-style object to manufacture RasterDataCollectionQueryInput
.
Trait Implementations§
source§impl Clone for RasterDataCollectionQueryInput
impl Clone for RasterDataCollectionQueryInput
source§fn clone(&self) -> RasterDataCollectionQueryInput
fn clone(&self) -> RasterDataCollectionQueryInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<RasterDataCollectionQueryInput> for RasterDataCollectionQueryInput
impl PartialEq<RasterDataCollectionQueryInput> for RasterDataCollectionQueryInput
source§fn eq(&self, other: &RasterDataCollectionQueryInput) -> bool
fn eq(&self, other: &RasterDataCollectionQueryInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RasterDataCollectionQueryInput
Auto Trait Implementations§
impl RefUnwindSafe for RasterDataCollectionQueryInput
impl Send for RasterDataCollectionQueryInput
impl Sync for RasterDataCollectionQueryInput
impl Unpin for RasterDataCollectionQueryInput
impl UnwindSafe for RasterDataCollectionQueryInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more