#[non_exhaustive]pub struct RasterDataCollectionMetadata {
    pub name: Option<String>,
    pub arn: Option<String>,
    pub type: Option<DataCollectionType>,
    pub description: Option<String>,
    pub description_page_url: Option<String>,
    pub supported_filters: Option<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
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>The name of the raster data collection.
arn: Option<String>The Amazon Resource Name (ARN) of the raster data collection.
type: Option<DataCollectionType>The type of raster data collection.
description: Option<String>A description of the raster data collection.
description_page_url: Option<String>The description URL of the raster data collection.
supported_filters: Option<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 arn(&self) -> Option<&str>
 
pub fn arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the raster data collection.
sourcepub fn type(&self) -> Option<&DataCollectionType>
 
pub fn type(&self) -> Option<&DataCollectionType>
The type of raster data collection.
sourcepub fn description(&self) -> Option<&str>
 
pub fn description(&self) -> Option<&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) -> Option<&[Filter]>
 
pub fn supported_filters(&self) -> Option<&[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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for RasterDataCollectionMetadata
 
impl Debug for RasterDataCollectionMetadata
source§impl PartialEq<RasterDataCollectionMetadata> for RasterDataCollectionMetadata
 
impl PartialEq<RasterDataCollectionMetadata> for RasterDataCollectionMetadata
source§fn eq(&self, other: &RasterDataCollectionMetadata) -> bool
 
fn eq(&self, other: &RasterDataCollectionMetadata) -> bool
self and other values to be equal, and is used
by ==.