aws_sdk_eks/client/describe_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 [`DescribePodIdentityAssociation`](crate::operation::describe_pod_identity_association::builders::DescribePodIdentityAssociationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - On success, responds with [`DescribePodIdentityAssociationOutput`](crate::operation::describe_pod_identity_association::DescribePodIdentityAssociationOutput) with field(s):
9 /// - [`association(Option<PodIdentityAssociation>)`](crate::operation::describe_pod_identity_association::DescribePodIdentityAssociationOutput::association): <p>The full description of the EKS Pod Identity association.</p>
10 /// - On failure, responds with [`SdkError<DescribePodIdentityAssociationError>`](crate::operation::describe_pod_identity_association::DescribePodIdentityAssociationError)
11 pub fn describe_pod_identity_association(
12 &self,
13 ) -> crate::operation::describe_pod_identity_association::builders::DescribePodIdentityAssociationFluentBuilder {
14 crate::operation::describe_pod_identity_association::builders::DescribePodIdentityAssociationFluentBuilder::new(self.handle.clone())
15 }
16}