aws_sdk_fms/client/delete_resource_set.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 [`DeleteResourceSet`](crate::operation::delete_resource_set::builders::DeleteResourceSetFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`identifier(impl Into<String>)`](crate::operation::delete_resource_set::builders::DeleteResourceSetFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::delete_resource_set::builders::DeleteResourceSetFluentBuilder::set_identifier):<br>required: **true**<br><p>A unique identifier for the resource set, used in a request to refer to the resource set.</p><br>
7 /// - On success, responds with [`DeleteResourceSetOutput`](crate::operation::delete_resource_set::DeleteResourceSetOutput)
8 /// - On failure, responds with [`SdkError<DeleteResourceSetError>`](crate::operation::delete_resource_set::DeleteResourceSetError)
9 pub fn delete_resource_set(&self) -> crate::operation::delete_resource_set::builders::DeleteResourceSetFluentBuilder {
10 crate::operation::delete_resource_set::builders::DeleteResourceSetFluentBuilder::new(self.handle.clone())
11 }
12}