aws_sdk_verifiedpermissions/client/
delete_policy_store.rs

1
2
3
4
5
6
7
8
9
10
11
12
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeletePolicyStore`](crate::operation::delete_policy_store::builders::DeletePolicyStoreFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`policy_store_id(impl Into<String>)`](crate::operation::delete_policy_store::builders::DeletePolicyStoreFluentBuilder::policy_store_id) / [`set_policy_store_id(Option<String>)`](crate::operation::delete_policy_store::builders::DeletePolicyStoreFluentBuilder::set_policy_store_id):<br>required: **true**<br><p>Specifies the ID of the policy store that you want to delete.</p><br>
    /// - On success, responds with [`DeletePolicyStoreOutput`](crate::operation::delete_policy_store::DeletePolicyStoreOutput)
    /// - On failure, responds with [`SdkError<DeletePolicyStoreError>`](crate::operation::delete_policy_store::DeletePolicyStoreError)
    pub fn delete_policy_store(&self) -> crate::operation::delete_policy_store::builders::DeletePolicyStoreFluentBuilder {
        crate::operation::delete_policy_store::builders::DeletePolicyStoreFluentBuilder::new(self.handle.clone())
    }
}