1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetInsightResults`](crate::operation::get_insight_results::builders::GetInsightResultsFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`insight_arn(impl Into<String>)`](crate::operation::get_insight_results::builders::GetInsightResultsFluentBuilder::insight_arn) / [`set_insight_arn(Option<String>)`](crate::operation::get_insight_results::builders::GetInsightResultsFluentBuilder::set_insight_arn): <p>The ARN of the insight for which to return results.</p>
/// - On success, responds with [`GetInsightResultsOutput`](crate::operation::get_insight_results::GetInsightResultsOutput) with field(s):
/// - [`insight_results(Option<InsightResults>)`](crate::operation::get_insight_results::GetInsightResultsOutput::insight_results): <p>The insight results returned by the operation.</p>
/// - On failure, responds with [`SdkError<GetInsightResultsError>`](crate::operation::get_insight_results::GetInsightResultsError)
pub fn get_insight_results(
&self,
) -> crate::operation::get_insight_results::builders::GetInsightResultsFluentBuilder {
crate::operation::get_insight_results::builders::GetInsightResultsFluentBuilder::new(
self.handle.clone(),
)
}
}