aws_sdk_workspacesweb/client/
delete_trust_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 [`DeleteTrustStore`](crate::operation::delete_trust_store::builders::DeleteTrustStoreFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`trust_store_arn(impl Into<String>)`](crate::operation::delete_trust_store::builders::DeleteTrustStoreFluentBuilder::trust_store_arn) / [`set_trust_store_arn(Option<String>)`](crate::operation::delete_trust_store::builders::DeleteTrustStoreFluentBuilder::set_trust_store_arn):<br>required: **true**<br><p>The ARN of the trust store.</p><br>
    /// - On success, responds with [`DeleteTrustStoreOutput`](crate::operation::delete_trust_store::DeleteTrustStoreOutput)
    /// - On failure, responds with [`SdkError<DeleteTrustStoreError>`](crate::operation::delete_trust_store::DeleteTrustStoreError)
    pub fn delete_trust_store(&self) -> crate::operation::delete_trust_store::builders::DeleteTrustStoreFluentBuilder {
        crate::operation::delete_trust_store::builders::DeleteTrustStoreFluentBuilder::new(self.handle.clone())
    }
}