aws_sdk_s3control/client/
dissociate_access_grants_identity_center.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 [`DissociateAccessGrantsIdentityCenter`](crate::operation::dissociate_access_grants_identity_center::builders::DissociateAccessGrantsIdentityCenterFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`account_id(impl Into<String>)`](crate::operation::dissociate_access_grants_identity_center::builders::DissociateAccessGrantsIdentityCenterFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::dissociate_access_grants_identity_center::builders::DissociateAccessGrantsIdentityCenterFluentBuilder::set_account_id):<br>required: **true**<br><p>The Amazon Web Services account ID of the S3 Access Grants instance.</p><br>
7    /// - On success, responds with [`DissociateAccessGrantsIdentityCenterOutput`](crate::operation::dissociate_access_grants_identity_center::DissociateAccessGrantsIdentityCenterOutput)
8    /// - On failure, responds with [`SdkError<DissociateAccessGrantsIdentityCenterError>`](crate::operation::dissociate_access_grants_identity_center::DissociateAccessGrantsIdentityCenterError)
9    pub fn dissociate_access_grants_identity_center(
10        &self,
11    ) -> crate::operation::dissociate_access_grants_identity_center::builders::DissociateAccessGrantsIdentityCenterFluentBuilder {
12        crate::operation::dissociate_access_grants_identity_center::builders::DissociateAccessGrantsIdentityCenterFluentBuilder::new(
13            self.handle.clone(),
14        )
15    }
16}