aws_sdk_xray/client/get_insight_impact_graph.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetInsightImpactGraph`](crate::operation::get_insight_impact_graph::builders::GetInsightImpactGraphFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`insight_id(impl Into<String>)`](crate::operation::get_insight_impact_graph::builders::GetInsightImpactGraphFluentBuilder::insight_id) / [`set_insight_id(Option<String>)`](crate::operation::get_insight_impact_graph::builders::GetInsightImpactGraphFluentBuilder::set_insight_id):<br>required: **true**<br><p>The insight's unique identifier. Use the GetInsightSummaries action to retrieve an InsightId.</p><br>
/// - [`start_time(DateTime)`](crate::operation::get_insight_impact_graph::builders::GetInsightImpactGraphFluentBuilder::start_time) / [`set_start_time(Option<DateTime>)`](crate::operation::get_insight_impact_graph::builders::GetInsightImpactGraphFluentBuilder::set_start_time):<br>required: **true**<br><p>The estimated start time of the insight, in Unix time seconds. The StartTime is inclusive of the value provided and can't be more than 30 days old.</p><br>
/// - [`end_time(DateTime)`](crate::operation::get_insight_impact_graph::builders::GetInsightImpactGraphFluentBuilder::end_time) / [`set_end_time(Option<DateTime>)`](crate::operation::get_insight_impact_graph::builders::GetInsightImpactGraphFluentBuilder::set_end_time):<br>required: **true**<br><p>The estimated end time of the insight, in Unix time seconds. The EndTime is exclusive of the value provided. The time range between the start time and end time can't be more than six hours.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::get_insight_impact_graph::builders::GetInsightImpactGraphFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::get_insight_impact_graph::builders::GetInsightImpactGraphFluentBuilder::set_next_token):<br>required: **false**<br><p>Specify the pagination token returned by a previous request to retrieve the next page of results.</p><br>
/// - On success, responds with [`GetInsightImpactGraphOutput`](crate::operation::get_insight_impact_graph::GetInsightImpactGraphOutput) with field(s):
/// - [`insight_id(Option<String>)`](crate::operation::get_insight_impact_graph::GetInsightImpactGraphOutput::insight_id): <p>The insight's unique identifier.</p>
/// - [`start_time(Option<DateTime>)`](crate::operation::get_insight_impact_graph::GetInsightImpactGraphOutput::start_time): <p>The provided start time.</p>
/// - [`end_time(Option<DateTime>)`](crate::operation::get_insight_impact_graph::GetInsightImpactGraphOutput::end_time): <p>The provided end time.</p>
/// - [`service_graph_start_time(Option<DateTime>)`](crate::operation::get_insight_impact_graph::GetInsightImpactGraphOutput::service_graph_start_time): <p>The time, in Unix seconds, at which the service graph started.</p>
/// - [`service_graph_end_time(Option<DateTime>)`](crate::operation::get_insight_impact_graph::GetInsightImpactGraphOutput::service_graph_end_time): <p>The time, in Unix seconds, at which the service graph ended.</p>
/// - [`services(Option<Vec::<InsightImpactGraphService>>)`](crate::operation::get_insight_impact_graph::GetInsightImpactGraphOutput::services): <p>The Amazon Web Services instrumented services related to the insight.</p>
/// - [`next_token(Option<String>)`](crate::operation::get_insight_impact_graph::GetInsightImpactGraphOutput::next_token): <p>Pagination token.</p>
/// - On failure, responds with [`SdkError<GetInsightImpactGraphError>`](crate::operation::get_insight_impact_graph::GetInsightImpactGraphError)
pub fn get_insight_impact_graph(&self) -> crate::operation::get_insight_impact_graph::builders::GetInsightImpactGraphFluentBuilder {
crate::operation::get_insight_impact_graph::builders::GetInsightImpactGraphFluentBuilder::new(self.handle.clone())
}
}