aws_sdk_verifiedpermissions/client/delete_policy_store.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 [`DeletePolicyStore`](crate::operation::delete_policy_store::builders::DeletePolicyStoreFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - On success, responds with [`DeletePolicyStoreOutput`](crate::operation::delete_policy_store::DeletePolicyStoreOutput)
8 /// - On failure, responds with [`SdkError<DeletePolicyStoreError>`](crate::operation::delete_policy_store::DeletePolicyStoreError)
9 pub fn delete_policy_store(&self) -> crate::operation::delete_policy_store::builders::DeletePolicyStoreFluentBuilder {
10 crate::operation::delete_policy_store::builders::DeletePolicyStoreFluentBuilder::new(self.handle.clone())
11 }
12}