#[non_exhaustive]pub struct RasterDataCollectionQueryOutputBuilder { /* private fields */ }
Expand description
A builder for RasterDataCollectionQueryOutput
.
Implementations§
source§impl RasterDataCollectionQueryOutputBuilder
impl RasterDataCollectionQueryOutputBuilder
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 ARN of the Raster Data Collection against which the search is done.
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 ARN of the Raster Data Collection against which the search is done.
sourcepub fn get_raster_data_collection_arn(&self) -> &Option<String>
pub fn get_raster_data_collection_arn(&self) -> &Option<String>
The ARN of the Raster Data Collection against which the search is done.
sourcepub fn raster_data_collection_name(self, input: impl Into<String>) -> Self
pub fn raster_data_collection_name(self, input: impl Into<String>) -> Self
The name of the raster data collection.
This field is required.sourcepub fn set_raster_data_collection_name(self, input: Option<String>) -> Self
pub fn set_raster_data_collection_name(self, input: Option<String>) -> Self
The name of the raster data collection.
sourcepub fn get_raster_data_collection_name(&self) -> &Option<String>
pub fn get_raster_data_collection_name(&self) -> &Option<String>
The name of the raster data collection.
sourcepub fn time_range_filter(self, input: TimeRangeFilterOutput) -> Self
pub fn time_range_filter(self, input: TimeRangeFilterOutput) -> Self
The TimeRange filter used in the search.
This field is required.sourcepub fn set_time_range_filter(self, input: Option<TimeRangeFilterOutput>) -> Self
pub fn set_time_range_filter(self, input: Option<TimeRangeFilterOutput>) -> Self
The TimeRange filter used in the search.
sourcepub fn get_time_range_filter(&self) -> &Option<TimeRangeFilterOutput>
pub fn get_time_range_filter(&self) -> &Option<TimeRangeFilterOutput>
The TimeRange filter used in the search.
sourcepub fn area_of_interest(self, input: AreaOfInterest) -> Self
pub fn area_of_interest(self, input: AreaOfInterest) -> Self
The Area of Interest used in the search.
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 used in the search.
sourcepub fn get_area_of_interest(&self) -> &Option<AreaOfInterest>
pub fn get_area_of_interest(&self) -> &Option<AreaOfInterest>
The Area of Interest used in the search.
sourcepub fn property_filters(self, input: PropertyFilters) -> Self
pub fn property_filters(self, input: PropertyFilters) -> Self
Property filters used in the search.
sourcepub fn set_property_filters(self, input: Option<PropertyFilters>) -> Self
pub fn set_property_filters(self, input: Option<PropertyFilters>) -> Self
Property filters used in the search.
sourcepub fn get_property_filters(&self) -> &Option<PropertyFilters>
pub fn get_property_filters(&self) -> &Option<PropertyFilters>
Property filters used in the search.
sourcepub fn build(self) -> Result<RasterDataCollectionQueryOutput, BuildError>
pub fn build(self) -> Result<RasterDataCollectionQueryOutput, BuildError>
Consumes the builder and constructs a RasterDataCollectionQueryOutput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for RasterDataCollectionQueryOutputBuilder
impl Clone for RasterDataCollectionQueryOutputBuilder
source§fn clone(&self) -> RasterDataCollectionQueryOutputBuilder
fn clone(&self) -> RasterDataCollectionQueryOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for RasterDataCollectionQueryOutputBuilder
impl Default for RasterDataCollectionQueryOutputBuilder
source§fn default() -> RasterDataCollectionQueryOutputBuilder
fn default() -> RasterDataCollectionQueryOutputBuilder
source§impl PartialEq for RasterDataCollectionQueryOutputBuilder
impl PartialEq for RasterDataCollectionQueryOutputBuilder
source§fn eq(&self, other: &RasterDataCollectionQueryOutputBuilder) -> bool
fn eq(&self, other: &RasterDataCollectionQueryOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.