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 [`GetTestGridProject`](crate::operation::get_test_grid_project::builders::GetTestGridProjectFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`project_arn(impl Into<String>)`](crate::operation::get_test_grid_project::builders::GetTestGridProjectFluentBuilder::project_arn) / [`set_project_arn(Option<String>)`](crate::operation::get_test_grid_project::builders::GetTestGridProjectFluentBuilder::set_project_arn): <p>The ARN of the Selenium testing project, from either <code>CreateTestGridProject</code> or <code>ListTestGridProjects</code>.</p>
    /// - On success, responds with [`GetTestGridProjectOutput`](crate::operation::get_test_grid_project::GetTestGridProjectOutput) with field(s):
    ///   - [`test_grid_project(Option<TestGridProject>)`](crate::operation::get_test_grid_project::GetTestGridProjectOutput::test_grid_project): <p>A <code>TestGridProject</code>.</p>
    /// - On failure, responds with [`SdkError<GetTestGridProjectError>`](crate::operation::get_test_grid_project::GetTestGridProjectError)
    pub fn get_test_grid_project(
        &self,
    ) -> crate::operation::get_test_grid_project::builders::GetTestGridProjectFluentBuilder {
        crate::operation::get_test_grid_project::builders::GetTestGridProjectFluentBuilder::new(
            self.handle.clone(),
        )
    }
}