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 [`DescribeUpdate`](crate::operation::describe_update::builders::DescribeUpdateFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::describe_update::builders::DescribeUpdateFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::describe_update::builders::DescribeUpdateFluentBuilder::set_name):<br>required: **true**<br><p>The name of the Amazon EKS cluster associated with the update.</p><br>
    ///   - [`update_id(impl Into<String>)`](crate::operation::describe_update::builders::DescribeUpdateFluentBuilder::update_id) / [`set_update_id(Option<String>)`](crate::operation::describe_update::builders::DescribeUpdateFluentBuilder::set_update_id):<br>required: **true**<br><p>The ID of the update to describe.</p><br>
    ///   - [`nodegroup_name(impl Into<String>)`](crate::operation::describe_update::builders::DescribeUpdateFluentBuilder::nodegroup_name) / [`set_nodegroup_name(Option<String>)`](crate::operation::describe_update::builders::DescribeUpdateFluentBuilder::set_nodegroup_name):<br>required: **false**<br><p>The name of the Amazon EKS node group associated with the update. This parameter is required if the update is a node group update.</p><br>
    ///   - [`addon_name(impl Into<String>)`](crate::operation::describe_update::builders::DescribeUpdateFluentBuilder::addon_name) / [`set_addon_name(Option<String>)`](crate::operation::describe_update::builders::DescribeUpdateFluentBuilder::set_addon_name):<br>required: **false**<br><p>The name of the add-on. The name must match one of the names returned by <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html"> <code>ListAddons</code> </a>. This parameter is required if the update is an add-on update.</p><br>
    /// - On success, responds with [`DescribeUpdateOutput`](crate::operation::describe_update::DescribeUpdateOutput) with field(s):
    ///   - [`update(Option<Update>)`](crate::operation::describe_update::DescribeUpdateOutput::update): <p>The full description of the specified update.</p>
    /// - On failure, responds with [`SdkError<DescribeUpdateError>`](crate::operation::describe_update::DescribeUpdateError)
    pub fn describe_update(&self) -> crate::operation::describe_update::builders::DescribeUpdateFluentBuilder {
        crate::operation::describe_update::builders::DescribeUpdateFluentBuilder::new(self.handle.clone())
    }
}