aws_sdk_codeguruprofiler/client/delete_profiling_group.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 [`DeleteProfilingGroup`](crate::operation::delete_profiling_group::builders::DeleteProfilingGroupFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`profiling_group_name(impl Into<String>)`](crate::operation::delete_profiling_group::builders::DeleteProfilingGroupFluentBuilder::profiling_group_name) / [`set_profiling_group_name(Option<String>)`](crate::operation::delete_profiling_group::builders::DeleteProfilingGroupFluentBuilder::set_profiling_group_name):<br>required: **true**<br><p>The name of the profiling group to delete.</p><br>
7 /// - On success, responds with [`DeleteProfilingGroupOutput`](crate::operation::delete_profiling_group::DeleteProfilingGroupOutput)
8 /// - On failure, responds with [`SdkError<DeleteProfilingGroupError>`](crate::operation::delete_profiling_group::DeleteProfilingGroupError)
9 pub fn delete_profiling_group(&self) -> crate::operation::delete_profiling_group::builders::DeleteProfilingGroupFluentBuilder {
10 crate::operation::delete_profiling_group::builders::DeleteProfilingGroupFluentBuilder::new(self.handle.clone())
11 }
12}