1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdatePodIdentityAssociation`](crate::operation::update_pod_identity_association::builders::UpdatePodIdentityAssociationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`cluster_name(impl Into<String>)`](crate::operation::update_pod_identity_association::builders::UpdatePodIdentityAssociationFluentBuilder::cluster_name) / [`set_cluster_name(Option<String>)`](crate::operation::update_pod_identity_association::builders::UpdatePodIdentityAssociationFluentBuilder::set_cluster_name):<br>required: **true**<br><p>The name of the cluster that you want to update the association in.</p><br>
    ///   - [`association_id(impl Into<String>)`](crate::operation::update_pod_identity_association::builders::UpdatePodIdentityAssociationFluentBuilder::association_id) / [`set_association_id(Option<String>)`](crate::operation::update_pod_identity_association::builders::UpdatePodIdentityAssociationFluentBuilder::set_association_id):<br>required: **true**<br><p>The ID of the association to be updated.</p><br>
    ///   - [`role_arn(impl Into<String>)`](crate::operation::update_pod_identity_association::builders::UpdatePodIdentityAssociationFluentBuilder::role_arn) / [`set_role_arn(Option<String>)`](crate::operation::update_pod_identity_association::builders::UpdatePodIdentityAssociationFluentBuilder::set_role_arn):<br>required: **false**<br><p>The new IAM role to change the</p><br>
    ///   - [`client_request_token(impl Into<String>)`](crate::operation::update_pod_identity_association::builders::UpdatePodIdentityAssociationFluentBuilder::client_request_token) / [`set_client_request_token(Option<String>)`](crate::operation::update_pod_identity_association::builders::UpdatePodIdentityAssociationFluentBuilder::set_client_request_token):<br>required: **false**<br><p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p><br>
    /// - On success, responds with [`UpdatePodIdentityAssociationOutput`](crate::operation::update_pod_identity_association::UpdatePodIdentityAssociationOutput) with field(s):
    ///   - [`association(Option<PodIdentityAssociation>)`](crate::operation::update_pod_identity_association::UpdatePodIdentityAssociationOutput::association): <p>The full description of the EKS Pod Identity association that was updated.</p>
    /// - On failure, responds with [`SdkError<UpdatePodIdentityAssociationError>`](crate::operation::update_pod_identity_association::UpdatePodIdentityAssociationError)
    pub fn update_pod_identity_association(
        &self,
    ) -> crate::operation::update_pod_identity_association::builders::UpdatePodIdentityAssociationFluentBuilder {
        crate::operation::update_pod_identity_association::builders::UpdatePodIdentityAssociationFluentBuilder::new(self.handle.clone())
    }
}