1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribePodIdentityAssociation`](crate::operation::describe_pod_identity_association::builders::DescribePodIdentityAssociationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`cluster_name(impl Into<String>)`](crate::operation::describe_pod_identity_association::builders::DescribePodIdentityAssociationFluentBuilder::cluster_name) / [`set_cluster_name(Option<String>)`](crate::operation::describe_pod_identity_association::builders::DescribePodIdentityAssociationFluentBuilder::set_cluster_name):<br>required: **true**<br><p>The name of the cluster that the association is in.</p><br>
    ///   - [`association_id(impl Into<String>)`](crate::operation::describe_pod_identity_association::builders::DescribePodIdentityAssociationFluentBuilder::association_id) / [`set_association_id(Option<String>)`](crate::operation::describe_pod_identity_association::builders::DescribePodIdentityAssociationFluentBuilder::set_association_id):<br>required: **true**<br><p>The ID of the association that you want the description of.</p><br>
    /// - On success, responds with [`DescribePodIdentityAssociationOutput`](crate::operation::describe_pod_identity_association::DescribePodIdentityAssociationOutput) with field(s):
    ///   - [`association(Option<PodIdentityAssociation>)`](crate::operation::describe_pod_identity_association::DescribePodIdentityAssociationOutput::association): <p>The full description of the EKS Pod Identity association.</p>
    /// - On failure, responds with [`SdkError<DescribePodIdentityAssociationError>`](crate::operation::describe_pod_identity_association::DescribePodIdentityAssociationError)
    pub fn describe_pod_identity_association(
        &self,
    ) -> crate::operation::describe_pod_identity_association::builders::DescribePodIdentityAssociationFluentBuilder {
        crate::operation::describe_pod_identity_association::builders::DescribePodIdentityAssociationFluentBuilder::new(self.handle.clone())
    }
}