aws_sdk_eks/client/start_insights_refresh.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 [`StartInsightsRefresh`](crate::operation::start_insights_refresh::builders::StartInsightsRefreshFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`cluster_name(impl Into<String>)`](crate::operation::start_insights_refresh::builders::StartInsightsRefreshFluentBuilder::cluster_name) / [`set_cluster_name(Option<String>)`](crate::operation::start_insights_refresh::builders::StartInsightsRefreshFluentBuilder::set_cluster_name):<br>required: **true**<br><p>The name of the cluster for the refresh insights operation.</p><br>
7 /// - On success, responds with [`StartInsightsRefreshOutput`](crate::operation::start_insights_refresh::StartInsightsRefreshOutput) with field(s):
8 /// - [`message(Option<String>)`](crate::operation::start_insights_refresh::StartInsightsRefreshOutput::message): <p>The message associated with the insights refresh operation.</p>
9 /// - [`status(Option<InsightsRefreshStatus>)`](crate::operation::start_insights_refresh::StartInsightsRefreshOutput::status): <p>The current status of the insights refresh operation.</p>
10 /// - On failure, responds with [`SdkError<StartInsightsRefreshError>`](crate::operation::start_insights_refresh::StartInsightsRefreshError)
11 pub fn start_insights_refresh(&self) -> crate::operation::start_insights_refresh::builders::StartInsightsRefreshFluentBuilder {
12 crate::operation::start_insights_refresh::builders::StartInsightsRefreshFluentBuilder::new(self.handle.clone())
13 }
14}