aws_sdk_quicksight/client/
delete_iam_policy_assignment.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 [`DeleteIAMPolicyAssignment`](crate::operation::delete_iam_policy_assignment::builders::DeleteIAMPolicyAssignmentFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::delete_iam_policy_assignment::builders::DeleteIAMPolicyAssignmentFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::delete_iam_policy_assignment::builders::DeleteIAMPolicyAssignmentFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The Amazon Web Services account ID where you want to delete the IAM policy assignment.</p><br>
7    ///   - [`assignment_name(impl Into<String>)`](crate::operation::delete_iam_policy_assignment::builders::DeleteIAMPolicyAssignmentFluentBuilder::assignment_name) / [`set_assignment_name(Option<String>)`](crate::operation::delete_iam_policy_assignment::builders::DeleteIAMPolicyAssignmentFluentBuilder::set_assignment_name):<br>required: **true**<br><p>The name of the assignment.</p><br>
8    ///   - [`namespace(impl Into<String>)`](crate::operation::delete_iam_policy_assignment::builders::DeleteIAMPolicyAssignmentFluentBuilder::namespace) / [`set_namespace(Option<String>)`](crate::operation::delete_iam_policy_assignment::builders::DeleteIAMPolicyAssignmentFluentBuilder::set_namespace):<br>required: **true**<br><p>The namespace that contains the assignment.</p><br>
9    /// - On success, responds with [`DeleteIamPolicyAssignmentOutput`](crate::operation::delete_iam_policy_assignment::DeleteIamPolicyAssignmentOutput) with field(s):
10    ///   - [`assignment_name(Option<String>)`](crate::operation::delete_iam_policy_assignment::DeleteIamPolicyAssignmentOutput::assignment_name): <p>The name of the assignment.</p>
11    ///   - [`request_id(Option<String>)`](crate::operation::delete_iam_policy_assignment::DeleteIamPolicyAssignmentOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
12    ///   - [`status(i32)`](crate::operation::delete_iam_policy_assignment::DeleteIamPolicyAssignmentOutput::status): <p>The HTTP status of the request.</p>
13    /// - On failure, responds with [`SdkError<DeleteIAMPolicyAssignmentError>`](crate::operation::delete_iam_policy_assignment::DeleteIAMPolicyAssignmentError)
14    pub fn delete_iam_policy_assignment(&self) -> crate::operation::delete_iam_policy_assignment::builders::DeleteIAMPolicyAssignmentFluentBuilder {
15        crate::operation::delete_iam_policy_assignment::builders::DeleteIAMPolicyAssignmentFluentBuilder::new(self.handle.clone())
16    }
17}