1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetRepositoryCatalogData`](crate::operation::get_repository_catalog_data::builders::GetRepositoryCatalogDataFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`registry_id(impl ::std::convert::Into<String>)`](crate::operation::get_repository_catalog_data::builders::GetRepositoryCatalogDataFluentBuilder::registry_id) / [`set_registry_id(Option<String>)`](crate::operation::get_repository_catalog_data::builders::GetRepositoryCatalogDataFluentBuilder::set_registry_id): <p>The Amazon Web Services account ID that's associated with the registry that contains the repositories to be described. If you do not specify a registry, the default public registry is assumed.</p>
    ///   - [`repository_name(impl ::std::convert::Into<String>)`](crate::operation::get_repository_catalog_data::builders::GetRepositoryCatalogDataFluentBuilder::repository_name) / [`set_repository_name(Option<String>)`](crate::operation::get_repository_catalog_data::builders::GetRepositoryCatalogDataFluentBuilder::set_repository_name): <p>The name of the repository to retrieve the catalog metadata for.</p>
    /// - On success, responds with [`GetRepositoryCatalogDataOutput`](crate::operation::get_repository_catalog_data::GetRepositoryCatalogDataOutput) with field(s):
    ///   - [`catalog_data(Option<RepositoryCatalogData>)`](crate::operation::get_repository_catalog_data::GetRepositoryCatalogDataOutput::catalog_data): <p>The catalog metadata for the repository.</p>
    /// - On failure, responds with [`SdkError<GetRepositoryCatalogDataError>`](crate::operation::get_repository_catalog_data::GetRepositoryCatalogDataError)
    pub fn get_repository_catalog_data(&self) -> crate::operation::get_repository_catalog_data::builders::GetRepositoryCatalogDataFluentBuilder {
        crate::operation::get_repository_catalog_data::builders::GetRepositoryCatalogDataFluentBuilder::new(self.handle.clone())
    }
}