#[non_exhaustive]pub struct RasterDataCollectionMetadata {
pub name: String,
pub arn: String,
pub type: DataCollectionType,
pub description: String,
pub description_page_url: Option<String>,
pub supported_filters: Vec<Filter>,
pub tags: Option<HashMap<String, String>>,
}
Expand description
Response object containing details for a specific RasterDataCollection.
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.name: String
The name of the raster data collection.
arn: String
The Amazon Resource Name (ARN) of the raster data collection.
type: DataCollectionType
The type of raster data collection.
description: String
A description of the raster data collection.
description_page_url: Option<String>
The description URL of the raster data collection.
supported_filters: Vec<Filter>
The list of filters supported by the raster data collection.
Each tag consists of a key and a value.
Implementations§
source§impl RasterDataCollectionMetadata
impl RasterDataCollectionMetadata
sourcepub fn type(&self) -> &DataCollectionType
pub fn type(&self) -> &DataCollectionType
The type of raster data collection.
sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
A description of the raster data collection.
sourcepub fn description_page_url(&self) -> Option<&str>
pub fn description_page_url(&self) -> Option<&str>
The description URL of the raster data collection.
sourcepub fn supported_filters(&self) -> &[Filter]
pub fn supported_filters(&self) -> &[Filter]
The list of filters supported by the raster data collection.
Each tag consists of a key and a value.
source§impl RasterDataCollectionMetadata
impl RasterDataCollectionMetadata
sourcepub fn builder() -> RasterDataCollectionMetadataBuilder
pub fn builder() -> RasterDataCollectionMetadataBuilder
Creates a new builder-style object to manufacture RasterDataCollectionMetadata
.
Trait Implementations§
source§impl Clone for RasterDataCollectionMetadata
impl Clone for RasterDataCollectionMetadata
source§fn clone(&self) -> RasterDataCollectionMetadata
fn clone(&self) -> RasterDataCollectionMetadata
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 Debug for RasterDataCollectionMetadata
impl Debug for RasterDataCollectionMetadata
source§impl PartialEq for RasterDataCollectionMetadata
impl PartialEq for RasterDataCollectionMetadata
source§fn eq(&self, other: &RasterDataCollectionMetadata) -> bool
fn eq(&self, other: &RasterDataCollectionMetadata) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RasterDataCollectionMetadata
Auto Trait Implementations§
impl RefUnwindSafe for RasterDataCollectionMetadata
impl Send for RasterDataCollectionMetadata
impl Sync for RasterDataCollectionMetadata
impl Unpin for RasterDataCollectionMetadata
impl UnwindSafe for RasterDataCollectionMetadata
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.