aws_sdk_lookoutvision/client/
describe_project.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 [`DescribeProject`](crate::operation::describe_project::builders::DescribeProjectFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`project_name(impl Into<String>)`](crate::operation::describe_project::builders::DescribeProjectFluentBuilder::project_name) / [`set_project_name(Option<String>)`](crate::operation::describe_project::builders::DescribeProjectFluentBuilder::set_project_name):<br>required: **true**<br><p>The name of the project that you want to describe.</p><br>
7    /// - On success, responds with [`DescribeProjectOutput`](crate::operation::describe_project::DescribeProjectOutput) with field(s):
8    ///   - [`project_description(Option<ProjectDescription>)`](crate::operation::describe_project::DescribeProjectOutput::project_description): <p>The description of the project.</p>
9    /// - On failure, responds with [`SdkError<DescribeProjectError>`](crate::operation::describe_project::DescribeProjectError)
10    pub fn describe_project(&self) -> crate::operation::describe_project::builders::DescribeProjectFluentBuilder {
11        crate::operation::describe_project::builders::DescribeProjectFluentBuilder::new(self.handle.clone())
12    }
13}