aws_sdk_elasticloadbalancingv2/client/
delete_shared_trust_store_association.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteSharedTrustStoreAssociation`](crate::operation::delete_shared_trust_store_association::builders::DeleteSharedTrustStoreAssociationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`DeleteSharedTrustStoreAssociationOutput`](crate::operation::delete_shared_trust_store_association::DeleteSharedTrustStoreAssociationOutput)
    /// - On failure, responds with [`SdkError<DeleteSharedTrustStoreAssociationError>`](crate::operation::delete_shared_trust_store_association::DeleteSharedTrustStoreAssociationError)
    pub fn delete_shared_trust_store_association(
        &self,
    ) -> crate::operation::delete_shared_trust_store_association::builders::DeleteSharedTrustStoreAssociationFluentBuilder {
        crate::operation::delete_shared_trust_store_association::builders::DeleteSharedTrustStoreAssociationFluentBuilder::new(self.handle.clone())
    }
}