aws_sdk_workspacesweb/client/
get_trust_store.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetTrustStore`](crate::operation::get_trust_store::builders::GetTrustStoreFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`trust_store_arn(impl Into<String>)`](crate::operation::get_trust_store::builders::GetTrustStoreFluentBuilder::trust_store_arn) / [`set_trust_store_arn(Option<String>)`](crate::operation::get_trust_store::builders::GetTrustStoreFluentBuilder::set_trust_store_arn):<br>required: **true**<br><p>The ARN of the trust store.</p><br>
    /// - On success, responds with [`GetTrustStoreOutput`](crate::operation::get_trust_store::GetTrustStoreOutput) with field(s):
    ///   - [`trust_store(Option<TrustStore>)`](crate::operation::get_trust_store::GetTrustStoreOutput::trust_store): <p>The trust store.</p>
    /// - On failure, responds with [`SdkError<GetTrustStoreError>`](crate::operation::get_trust_store::GetTrustStoreError)
    pub fn get_trust_store(&self) -> crate::operation::get_trust_store::builders::GetTrustStoreFluentBuilder {
        crate::operation::get_trust_store::builders::GetTrustStoreFluentBuilder::new(self.handle.clone())
    }
}