aws_sdk_devicefarm/client/
create_test_grid_project.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`CreateTestGridProject`](crate::operation::create_test_grid_project::builders::CreateTestGridProjectFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::create_test_grid_project::builders::CreateTestGridProjectFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_test_grid_project::builders::CreateTestGridProjectFluentBuilder::set_name):<br>required: **true**<br><p>Human-readable name of the Selenium testing project.</p><br>
    ///   - [`description(impl Into<String>)`](crate::operation::create_test_grid_project::builders::CreateTestGridProjectFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::create_test_grid_project::builders::CreateTestGridProjectFluentBuilder::set_description):<br>required: **false**<br><p>Human-readable description of the project.</p><br>
    ///   - [`vpc_config(TestGridVpcConfig)`](crate::operation::create_test_grid_project::builders::CreateTestGridProjectFluentBuilder::vpc_config) / [`set_vpc_config(Option<TestGridVpcConfig>)`](crate::operation::create_test_grid_project::builders::CreateTestGridProjectFluentBuilder::set_vpc_config):<br>required: **false**<br><p>The VPC security groups and subnets that are attached to a project.</p><br>
    /// - On success, responds with [`CreateTestGridProjectOutput`](crate::operation::create_test_grid_project::CreateTestGridProjectOutput) with field(s):
    ///   - [`test_grid_project(Option<TestGridProject>)`](crate::operation::create_test_grid_project::CreateTestGridProjectOutput::test_grid_project): <p>ARN of the Selenium testing project that was created.</p>
    /// - On failure, responds with [`SdkError<CreateTestGridProjectError>`](crate::operation::create_test_grid_project::CreateTestGridProjectError)
    pub fn create_test_grid_project(&self) -> crate::operation::create_test_grid_project::builders::CreateTestGridProjectFluentBuilder {
        crate::operation::create_test_grid_project::builders::CreateTestGridProjectFluentBuilder::new(self.handle.clone())
    }
}