aws_sdk_eks/client/
delete_pod_identity_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 [`DeletePodIdentityAssociation`](crate::operation::delete_pod_identity_association::builders::DeletePodIdentityAssociationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`cluster_name(impl Into<String>)`](crate::operation::delete_pod_identity_association::builders::DeletePodIdentityAssociationFluentBuilder::cluster_name) / [`set_cluster_name(Option<String>)`](crate::operation::delete_pod_identity_association::builders::DeletePodIdentityAssociationFluentBuilder::set_cluster_name):<br>required: **true**<br><p>The cluster name that</p><br>
7    ///   - [`association_id(impl Into<String>)`](crate::operation::delete_pod_identity_association::builders::DeletePodIdentityAssociationFluentBuilder::association_id) / [`set_association_id(Option<String>)`](crate::operation::delete_pod_identity_association::builders::DeletePodIdentityAssociationFluentBuilder::set_association_id):<br>required: **true**<br><p>The ID of the association to be deleted.</p><br>
8    /// - On success, responds with [`DeletePodIdentityAssociationOutput`](crate::operation::delete_pod_identity_association::DeletePodIdentityAssociationOutput) with field(s):
9    ///   - [`association(Option<PodIdentityAssociation>)`](crate::operation::delete_pod_identity_association::DeletePodIdentityAssociationOutput::association): <p>The full description of the EKS Pod Identity association that was deleted.</p>
10    /// - On failure, responds with [`SdkError<DeletePodIdentityAssociationError>`](crate::operation::delete_pod_identity_association::DeletePodIdentityAssociationError)
11    pub fn delete_pod_identity_association(
12        &self,
13    ) -> crate::operation::delete_pod_identity_association::builders::DeletePodIdentityAssociationFluentBuilder {
14        crate::operation::delete_pod_identity_association::builders::DeletePodIdentityAssociationFluentBuilder::new(self.handle.clone())
15    }
16}