#[non_exhaustive]pub struct RasterDataCollectionQueryInput {
pub raster_data_collection_arn: String,
pub time_range_filter: Option<TimeRangeFilterInput>,
pub area_of_interest: Option<AreaOfInterest>,
pub property_filters: Option<PropertyFilters>,
}
Expand description
The input structure for Raster Data Collection Query containing the Area of Interest, TimeRange Filters, and Property Filters.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.raster_data_collection_arn: String
The Amazon Resource Name (ARN) of the raster data collection.
time_range_filter: Option<TimeRangeFilterInput>
The TimeRange Filter used in the RasterDataCollection Query.
area_of_interest: Option<AreaOfInterest>
The area of interest being queried for the raster data collection.
property_filters: Option<PropertyFilters>
The list of Property filters used in the Raster Data Collection Query.
Implementations§
source§impl RasterDataCollectionQueryInput
impl RasterDataCollectionQueryInput
sourcepub fn raster_data_collection_arn(&self) -> &str
pub fn raster_data_collection_arn(&self) -> &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 for RasterDataCollectionQueryInput
impl PartialEq 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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.