aws_sdk_devicefarm/client/
delete_test_grid_project.rs

1
2
3
4
5
6
7
8
9
10
11
12
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteTestGridProject`](crate::operation::delete_test_grid_project::builders::DeleteTestGridProjectFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`project_arn(impl Into<String>)`](crate::operation::delete_test_grid_project::builders::DeleteTestGridProjectFluentBuilder::project_arn) / [`set_project_arn(Option<String>)`](crate::operation::delete_test_grid_project::builders::DeleteTestGridProjectFluentBuilder::set_project_arn):<br>required: **true**<br><p>The ARN of the project to delete, from <code>CreateTestGridProject</code> or <code>ListTestGridProjects</code>.</p><br>
    /// - On success, responds with [`DeleteTestGridProjectOutput`](crate::operation::delete_test_grid_project::DeleteTestGridProjectOutput)
    /// - On failure, responds with [`SdkError<DeleteTestGridProjectError>`](crate::operation::delete_test_grid_project::DeleteTestGridProjectError)
    pub fn delete_test_grid_project(&self) -> crate::operation::delete_test_grid_project::builders::DeleteTestGridProjectFluentBuilder {
        crate::operation::delete_test_grid_project::builders::DeleteTestGridProjectFluentBuilder::new(self.handle.clone())
    }
}