aws_sdk_devicefarm/client/delete_run.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 [`DeleteRun`](crate::operation::delete_run::builders::DeleteRunFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`arn(impl Into<String>)`](crate::operation::delete_run::builders::DeleteRunFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::delete_run::builders::DeleteRunFluentBuilder::set_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) for the run to delete.</p><br>
7 /// - On success, responds with [`DeleteRunOutput`](crate::operation::delete_run::DeleteRunOutput)
8 /// - On failure, responds with [`SdkError<DeleteRunError>`](crate::operation::delete_run::DeleteRunError)
9 pub fn delete_run(&self) -> crate::operation::delete_run::builders::DeleteRunFluentBuilder {
10 crate::operation::delete_run::builders::DeleteRunFluentBuilder::new(self.handle.clone())
11 }
12}