Struct aws_sdk_sagemakergeospatial::operation::search_raster_data_collection::SearchRasterDataCollectionInput
source · #[non_exhaustive]pub struct SearchRasterDataCollectionInput {
pub arn: Option<String>,
pub raster_data_collection_query: Option<RasterDataCollectionQueryWithBandFilterInput>,
pub next_token: Option<String>,
}
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.arn: Option<String>
The Amazon Resource Name (ARN) of the raster data collection.
raster_data_collection_query: Option<RasterDataCollectionQueryWithBandFilterInput>
RasterDataCollectionQuery consisting of AreaOfInterest(AOI), PropertyFilters and TimeRangeFilterInput used in SearchRasterDataCollection.
next_token: Option<String>
If the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results.
Implementations§
source§impl SearchRasterDataCollectionInput
impl SearchRasterDataCollectionInput
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the raster data collection.
sourcepub fn raster_data_collection_query(
&self
) -> Option<&RasterDataCollectionQueryWithBandFilterInput>
pub fn raster_data_collection_query( &self ) -> Option<&RasterDataCollectionQueryWithBandFilterInput>
RasterDataCollectionQuery consisting of AreaOfInterest(AOI), PropertyFilters and TimeRangeFilterInput used in SearchRasterDataCollection.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results.
source§impl SearchRasterDataCollectionInput
impl SearchRasterDataCollectionInput
sourcepub fn builder() -> SearchRasterDataCollectionInputBuilder
pub fn builder() -> SearchRasterDataCollectionInputBuilder
Creates a new builder-style object to manufacture SearchRasterDataCollectionInput
.
Trait Implementations§
source§impl Clone for SearchRasterDataCollectionInput
impl Clone for SearchRasterDataCollectionInput
source§fn clone(&self) -> SearchRasterDataCollectionInput
fn clone(&self) -> SearchRasterDataCollectionInput
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 SearchRasterDataCollectionInput
impl PartialEq for SearchRasterDataCollectionInput
source§fn eq(&self, other: &SearchRasterDataCollectionInput) -> bool
fn eq(&self, other: &SearchRasterDataCollectionInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SearchRasterDataCollectionInput
Auto Trait Implementations§
impl RefUnwindSafe for SearchRasterDataCollectionInput
impl Send for SearchRasterDataCollectionInput
impl Sync for SearchRasterDataCollectionInput
impl Unpin for SearchRasterDataCollectionInput
impl UnwindSafe for SearchRasterDataCollectionInput
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.