aws-sdk-eks 1.129.0

AWS SDK for Amazon Elastic Kubernetes Service
Documentation
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 [`DescribeInsightsRefresh`](crate::operation::describe_insights_refresh::builders::DescribeInsightsRefreshFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`cluster_name(impl Into<String>)`](crate::operation::describe_insights_refresh::builders::DescribeInsightsRefreshFluentBuilder::cluster_name) / [`set_cluster_name(Option<String>)`](crate::operation::describe_insights_refresh::builders::DescribeInsightsRefreshFluentBuilder::set_cluster_name):<br>required: **true**<br><p>The name of the cluster associated with the insights refresh operation.</p><br>
    /// - On success, responds with [`DescribeInsightsRefreshOutput`](crate::operation::describe_insights_refresh::DescribeInsightsRefreshOutput) with field(s):
    ///   - [`message(Option<String>)`](crate::operation::describe_insights_refresh::DescribeInsightsRefreshOutput::message): <p>The message associated with the insights refresh operation.</p>
    ///   - [`status(Option<InsightsRefreshStatus>)`](crate::operation::describe_insights_refresh::DescribeInsightsRefreshOutput::status): <p>The current status of the insights refresh operation.</p>
    ///   - [`started_at(Option<DateTime>)`](crate::operation::describe_insights_refresh::DescribeInsightsRefreshOutput::started_at): <p>The date and time when the insights refresh operation started.</p>
    ///   - [`ended_at(Option<DateTime>)`](crate::operation::describe_insights_refresh::DescribeInsightsRefreshOutput::ended_at): <p>The date and time when the insights refresh operation ended.</p>
    /// - On failure, responds with [`SdkError<DescribeInsightsRefreshError>`](crate::operation::describe_insights_refresh::DescribeInsightsRefreshError)
    pub fn describe_insights_refresh(&self) -> crate::operation::describe_insights_refresh::builders::DescribeInsightsRefreshFluentBuilder {
        crate::operation::describe_insights_refresh::builders::DescribeInsightsRefreshFluentBuilder::new(self.handle.clone())
    }
}