aws_sdk_identitystore/client/update_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 [`UpdateGroup`](crate::operation::update_group::builders::UpdateGroupFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`identity_store_id(impl Into<String>)`](crate::operation::update_group::builders::UpdateGroupFluentBuilder::identity_store_id) / [`set_identity_store_id(Option<String>)`](crate::operation::update_group::builders::UpdateGroupFluentBuilder::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::update_group::builders::UpdateGroupFluentBuilder::group_id) / [`set_group_id(Option<String>)`](crate::operation::update_group::builders::UpdateGroupFluentBuilder::set_group_id):<br>required: **true**<br><p>The identifier for a group in the identity store.</p><br>
8 /// - [`operations(AttributeOperation)`](crate::operation::update_group::builders::UpdateGroupFluentBuilder::operations) / [`set_operations(Option<Vec::<AttributeOperation>>)`](crate::operation::update_group::builders::UpdateGroupFluentBuilder::set_operations):<br>required: **true**<br><p>A list of <code>AttributeOperation</code> objects to apply to the requested group. These operations might add, replace, or remove an attribute. For more information on the attributes that can be added, replaced, or removed, see <a href="https://docs.aws.amazon.com/singlesignon/latest/IdentityStoreAPIReference/API_Group.html">Group</a>.</p><br>
9 /// - On success, responds with [`UpdateGroupOutput`](crate::operation::update_group::UpdateGroupOutput)
10 /// - On failure, responds with [`SdkError<UpdateGroupError>`](crate::operation::update_group::UpdateGroupError)
11 pub fn update_group(&self) -> crate::operation::update_group::builders::UpdateGroupFluentBuilder {
12 crate::operation::update_group::builders::UpdateGroupFluentBuilder::new(self.handle.clone())
13 }
14}