aws_sdk_devicefarm/client/create_test_grid_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 [`CreateTestGridProject`](crate::operation::create_test_grid_project::builders::CreateTestGridProjectFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - [`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>
9 /// - On success, responds with [`CreateTestGridProjectOutput`](crate::operation::create_test_grid_project::CreateTestGridProjectOutput) with field(s):
10 /// - [`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>
11 /// - On failure, responds with [`SdkError<CreateTestGridProjectError>`](crate::operation::create_test_grid_project::CreateTestGridProjectError)
12 pub fn create_test_grid_project(&self) -> crate::operation::create_test_grid_project::builders::CreateTestGridProjectFluentBuilder {
13 crate::operation::create_test_grid_project::builders::CreateTestGridProjectFluentBuilder::new(self.handle.clone())
14 }
15}