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