aws_sdk_sagemakergeospatial/client/
get_raster_data_collection.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`GetRasterDataCollection`](crate::operation::get_raster_data_collection::builders::GetRasterDataCollectionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`arn(impl Into<String>)`](crate::operation::get_raster_data_collection::builders::GetRasterDataCollectionFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::get_raster_data_collection::builders::GetRasterDataCollectionFluentBuilder::set_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the raster data collection.</p><br>
7    /// - On success, responds with [`GetRasterDataCollectionOutput`](crate::operation::get_raster_data_collection::GetRasterDataCollectionOutput) with field(s):
8    ///   - [`name(String)`](crate::operation::get_raster_data_collection::GetRasterDataCollectionOutput::name): <p>The name of the raster data collection.</p>
9    ///   - [`arn(String)`](crate::operation::get_raster_data_collection::GetRasterDataCollectionOutput::arn): <p>The Amazon Resource Name (ARN) of the raster data collection.</p>
10    ///   - [`r#type(DataCollectionType)`](crate::operation::get_raster_data_collection::GetRasterDataCollectionOutput::type): <p>The raster data collection type.</p>
11    ///   - [`description(String)`](crate::operation::get_raster_data_collection::GetRasterDataCollectionOutput::description): <p>A description of the raster data collection.</p>
12    ///   - [`description_page_url(String)`](crate::operation::get_raster_data_collection::GetRasterDataCollectionOutput::description_page_url): <p>The URL of the description page.</p>
13    ///   - [`supported_filters(Vec::<Filter>)`](crate::operation::get_raster_data_collection::GetRasterDataCollectionOutput::supported_filters): <p>The filters supported by the raster data collection.</p>
14    ///   - [`image_source_bands(Vec::<String>)`](crate::operation::get_raster_data_collection::GetRasterDataCollectionOutput::image_source_bands): <p>The list of image source bands in the raster data collection.</p>
15    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_raster_data_collection::GetRasterDataCollectionOutput::tags): <p>Each tag consists of a key and a value.</p>
16    /// - On failure, responds with [`SdkError<GetRasterDataCollectionError>`](crate::operation::get_raster_data_collection::GetRasterDataCollectionError)
17    pub fn get_raster_data_collection(&self) -> crate::operation::get_raster_data_collection::builders::GetRasterDataCollectionFluentBuilder {
18        crate::operation::get_raster_data_collection::builders::GetRasterDataCollectionFluentBuilder::new(self.handle.clone())
19    }
20}