1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetCatalogItem`](crate::operation::get_catalog_item::builders::GetCatalogItemFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`catalog_item_id(impl ::std::convert::Into<String>)`](crate::operation::get_catalog_item::builders::GetCatalogItemFluentBuilder::catalog_item_id) / [`set_catalog_item_id(Option<String>)`](crate::operation::get_catalog_item::builders::GetCatalogItemFluentBuilder::set_catalog_item_id): <p>The ID of the catalog item.</p>
    /// - On success, responds with [`GetCatalogItemOutput`](crate::operation::get_catalog_item::GetCatalogItemOutput) with field(s):
    ///   - [`catalog_item(Option<CatalogItem>)`](crate::operation::get_catalog_item::GetCatalogItemOutput::catalog_item): <p>Information about this catalog item.</p>
    /// - On failure, responds with [`SdkError<GetCatalogItemError>`](crate::operation::get_catalog_item::GetCatalogItemError)
    pub fn get_catalog_item(
        &self,
    ) -> crate::operation::get_catalog_item::builders::GetCatalogItemFluentBuilder {
        crate::operation::get_catalog_item::builders::GetCatalogItemFluentBuilder::new(
            self.handle.clone(),
        )
    }
}