aws_sdk_devicefarm/client/
update_test_grid_project.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateTestGridProject`](crate::operation::update_test_grid_project::builders::UpdateTestGridProjectFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`project_arn(impl Into<String>)`](crate::operation::update_test_grid_project::builders::UpdateTestGridProjectFluentBuilder::project_arn) / [`set_project_arn(Option<String>)`](crate::operation::update_test_grid_project::builders::UpdateTestGridProjectFluentBuilder::set_project_arn):<br>required: **true**<br><p>ARN of the project to update.</p><br>
    ///   - [`name(impl Into<String>)`](crate::operation::update_test_grid_project::builders::UpdateTestGridProjectFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_test_grid_project::builders::UpdateTestGridProjectFluentBuilder::set_name):<br>required: **false**<br><p>Human-readable name for the project.</p><br>
    ///   - [`description(impl Into<String>)`](crate::operation::update_test_grid_project::builders::UpdateTestGridProjectFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_test_grid_project::builders::UpdateTestGridProjectFluentBuilder::set_description):<br>required: **false**<br><p>Human-readable description for the project.</p><br>
    ///   - [`vpc_config(TestGridVpcConfig)`](crate::operation::update_test_grid_project::builders::UpdateTestGridProjectFluentBuilder::vpc_config) / [`set_vpc_config(Option<TestGridVpcConfig>)`](crate::operation::update_test_grid_project::builders::UpdateTestGridProjectFluentBuilder::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 [`UpdateTestGridProjectOutput`](crate::operation::update_test_grid_project::UpdateTestGridProjectOutput) with field(s):
    ///   - [`test_grid_project(Option<TestGridProject>)`](crate::operation::update_test_grid_project::UpdateTestGridProjectOutput::test_grid_project): <p>The project, including updated information.</p>
    /// - On failure, responds with [`SdkError<UpdateTestGridProjectError>`](crate::operation::update_test_grid_project::UpdateTestGridProjectError)
    pub fn update_test_grid_project(&self) -> crate::operation::update_test_grid_project::builders::UpdateTestGridProjectFluentBuilder {
        crate::operation::update_test_grid_project::builders::UpdateTestGridProjectFluentBuilder::new(self.handle.clone())
    }
}