aws_sdk_workspacesweb/client/get_trust_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 [`GetTrustStore`](crate::operation::get_trust_store::builders::GetTrustStoreFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - On success, responds with [`GetTrustStoreOutput`](crate::operation::get_trust_store::GetTrustStoreOutput) with field(s):
8 /// - [`trust_store(Option<TrustStore>)`](crate::operation::get_trust_store::GetTrustStoreOutput::trust_store): <p>The trust store.</p>
9 /// - On failure, responds with [`SdkError<GetTrustStoreError>`](crate::operation::get_trust_store::GetTrustStoreError)
10 pub fn get_trust_store(&self) -> crate::operation::get_trust_store::builders::GetTrustStoreFluentBuilder {
11 crate::operation::get_trust_store::builders::GetTrustStoreFluentBuilder::new(self.handle.clone())
12 }
13}