aws_sdk_identitystore/client/delete_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 [`DeleteGroup`](crate::operation::delete_group::builders::DeleteGroupFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`identity_store_id(impl Into<String>)`](crate::operation::delete_group::builders::DeleteGroupFluentBuilder::identity_store_id) / [`set_identity_store_id(Option<String>)`](crate::operation::delete_group::builders::DeleteGroupFluentBuilder::set_identity_store_id):<br>required: **true**<br><p>The globally unique identifier for the identity store.</p><br>
7 /// - [`group_id(impl Into<String>)`](crate::operation::delete_group::builders::DeleteGroupFluentBuilder::group_id) / [`set_group_id(Option<String>)`](crate::operation::delete_group::builders::DeleteGroupFluentBuilder::set_group_id):<br>required: **true**<br><p>The identifier for a group in the identity store.</p><br>
8 /// - On success, responds with [`DeleteGroupOutput`](crate::operation::delete_group::DeleteGroupOutput)
9 /// - On failure, responds with [`SdkError<DeleteGroupError>`](crate::operation::delete_group::DeleteGroupError)
10 pub fn delete_group(&self) -> crate::operation::delete_group::builders::DeleteGroupFluentBuilder {
11 crate::operation::delete_group::builders::DeleteGroupFluentBuilder::new(self.handle.clone())
12 }
13}