#[non_exhaustive]pub struct RasterDataCollectionQueryInputBuilder { /* private fields */ }
Expand description
A builder for RasterDataCollectionQueryInput
.
Implementations§
source§impl RasterDataCollectionQueryInputBuilder
impl RasterDataCollectionQueryInputBuilder
sourcepub fn raster_data_collection_arn(self, input: impl Into<String>) -> Self
pub fn raster_data_collection_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the raster data collection.
This field is required.sourcepub fn set_raster_data_collection_arn(self, input: Option<String>) -> Self
pub fn set_raster_data_collection_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the raster data collection.
sourcepub fn get_raster_data_collection_arn(&self) -> &Option<String>
pub fn get_raster_data_collection_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the raster data collection.
sourcepub fn time_range_filter(self, input: TimeRangeFilterInput) -> Self
pub fn time_range_filter(self, input: TimeRangeFilterInput) -> Self
The TimeRange Filter used in the RasterDataCollection Query.
This field is required.sourcepub fn set_time_range_filter(self, input: Option<TimeRangeFilterInput>) -> Self
pub fn set_time_range_filter(self, input: Option<TimeRangeFilterInput>) -> Self
The TimeRange Filter used in the RasterDataCollection Query.
sourcepub fn get_time_range_filter(&self) -> &Option<TimeRangeFilterInput>
pub fn get_time_range_filter(&self) -> &Option<TimeRangeFilterInput>
The TimeRange Filter used in the RasterDataCollection Query.
sourcepub fn area_of_interest(self, input: AreaOfInterest) -> Self
pub fn area_of_interest(self, input: AreaOfInterest) -> Self
The area of interest being queried for the raster data collection.
sourcepub fn set_area_of_interest(self, input: Option<AreaOfInterest>) -> Self
pub fn set_area_of_interest(self, input: Option<AreaOfInterest>) -> Self
The area of interest being queried for the raster data collection.
sourcepub fn get_area_of_interest(&self) -> &Option<AreaOfInterest>
pub fn get_area_of_interest(&self) -> &Option<AreaOfInterest>
The area of interest being queried for the raster data collection.
sourcepub fn property_filters(self, input: PropertyFilters) -> Self
pub fn property_filters(self, input: PropertyFilters) -> Self
The list of Property filters used in the Raster Data Collection Query.
sourcepub fn set_property_filters(self, input: Option<PropertyFilters>) -> Self
pub fn set_property_filters(self, input: Option<PropertyFilters>) -> Self
The list of Property filters used in the Raster Data Collection Query.
sourcepub fn get_property_filters(&self) -> &Option<PropertyFilters>
pub fn get_property_filters(&self) -> &Option<PropertyFilters>
The list of Property filters used in the Raster Data Collection Query.
sourcepub fn build(self) -> Result<RasterDataCollectionQueryInput, BuildError>
pub fn build(self) -> Result<RasterDataCollectionQueryInput, BuildError>
Consumes the builder and constructs a RasterDataCollectionQueryInput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for RasterDataCollectionQueryInputBuilder
impl Clone for RasterDataCollectionQueryInputBuilder
source§fn clone(&self) -> RasterDataCollectionQueryInputBuilder
fn clone(&self) -> RasterDataCollectionQueryInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for RasterDataCollectionQueryInputBuilder
impl Default for RasterDataCollectionQueryInputBuilder
source§fn default() -> RasterDataCollectionQueryInputBuilder
fn default() -> RasterDataCollectionQueryInputBuilder
source§impl PartialEq for RasterDataCollectionQueryInputBuilder
impl PartialEq for RasterDataCollectionQueryInputBuilder
source§fn eq(&self, other: &RasterDataCollectionQueryInputBuilder) -> bool
fn eq(&self, other: &RasterDataCollectionQueryInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.