aws_sdk_arczonalshift/client/delete_practice_run_configuration.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 [`DeletePracticeRunConfiguration`](crate::operation::delete_practice_run_configuration::builders::DeletePracticeRunConfigurationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`resource_identifier(impl Into<String>)`](crate::operation::delete_practice_run_configuration::builders::DeletePracticeRunConfigurationFluentBuilder::resource_identifier) / [`set_resource_identifier(Option<String>)`](crate::operation::delete_practice_run_configuration::builders::DeletePracticeRunConfigurationFluentBuilder::set_resource_identifier):<br>required: **true**<br><p>The identifier for the resource that you want to delete the practice run configuration for. The identifier is the Amazon Resource Name (ARN) for the resource.</p><br>
7 /// - On success, responds with [`DeletePracticeRunConfigurationOutput`](crate::operation::delete_practice_run_configuration::DeletePracticeRunConfigurationOutput) with field(s):
8 /// - [`arn(String)`](crate::operation::delete_practice_run_configuration::DeletePracticeRunConfigurationOutput::arn): <p>The Amazon Resource Name (ARN) of the resource that you deleted the practice run for.</p>
9 /// - [`name(String)`](crate::operation::delete_practice_run_configuration::DeletePracticeRunConfigurationOutput::name): <p>The name of the resource that you deleted the practice run for.</p>
10 /// - [`zonal_autoshift_status(ZonalAutoshiftStatus)`](crate::operation::delete_practice_run_configuration::DeletePracticeRunConfigurationOutput::zonal_autoshift_status): <p>The status of zonal autoshift for the resource.</p>
11 /// - On failure, responds with [`SdkError<DeletePracticeRunConfigurationError>`](crate::operation::delete_practice_run_configuration::DeletePracticeRunConfigurationError)
12 pub fn delete_practice_run_configuration(
13 &self,
14 ) -> crate::operation::delete_practice_run_configuration::builders::DeletePracticeRunConfigurationFluentBuilder {
15 crate::operation::delete_practice_run_configuration::builders::DeletePracticeRunConfigurationFluentBuilder::new(self.handle.clone())
16 }
17}