aws_sdk_elasticloadbalancingv2/client/delete_shared_trust_store_association.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 [`DeleteSharedTrustStoreAssociation`](crate::operation::delete_shared_trust_store_association::builders::DeleteSharedTrustStoreAssociationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`trust_store_arn(impl Into<String>)`](crate::operation::delete_shared_trust_store_association::builders::DeleteSharedTrustStoreAssociationFluentBuilder::trust_store_arn) / [`set_trust_store_arn(Option<String>)`](crate::operation::delete_shared_trust_store_association::builders::DeleteSharedTrustStoreAssociationFluentBuilder::set_trust_store_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the trust store.</p><br>
7 /// - [`resource_arn(impl Into<String>)`](crate::operation::delete_shared_trust_store_association::builders::DeleteSharedTrustStoreAssociationFluentBuilder::resource_arn) / [`set_resource_arn(Option<String>)`](crate::operation::delete_shared_trust_store_association::builders::DeleteSharedTrustStoreAssociationFluentBuilder::set_resource_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the resource.</p><br>
8 /// - On success, responds with [`DeleteSharedTrustStoreAssociationOutput`](crate::operation::delete_shared_trust_store_association::DeleteSharedTrustStoreAssociationOutput)
9 /// - On failure, responds with [`SdkError<DeleteSharedTrustStoreAssociationError>`](crate::operation::delete_shared_trust_store_association::DeleteSharedTrustStoreAssociationError)
10 pub fn delete_shared_trust_store_association(
11 &self,
12 ) -> crate::operation::delete_shared_trust_store_association::builders::DeleteSharedTrustStoreAssociationFluentBuilder {
13 crate::operation::delete_shared_trust_store_association::builders::DeleteSharedTrustStoreAssociationFluentBuilder::new(self.handle.clone())
14 }
15}