aws_sdk_neptunedata/client/
manage_propertygraph_statistics.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 [`ManagePropertygraphStatistics`](crate::operation::manage_propertygraph_statistics::builders::ManagePropertygraphStatisticsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`mode(StatisticsAutoGenerationMode)`](crate::operation::manage_propertygraph_statistics::builders::ManagePropertygraphStatisticsFluentBuilder::mode) / [`set_mode(Option<StatisticsAutoGenerationMode>)`](crate::operation::manage_propertygraph_statistics::builders::ManagePropertygraphStatisticsFluentBuilder::set_mode):<br>required: **false**<br><p>The statistics generation mode. One of: <code>DISABLE_AUTOCOMPUTE</code>, <code>ENABLE_AUTOCOMPUTE</code>, or <code>REFRESH</code>, the last of which manually triggers DFE statistics generation.</p><br>
7    /// - On success, responds with [`ManagePropertygraphStatisticsOutput`](crate::operation::manage_propertygraph_statistics::ManagePropertygraphStatisticsOutput) with field(s):
8    ///   - [`status(String)`](crate::operation::manage_propertygraph_statistics::ManagePropertygraphStatisticsOutput::status): <p>The HTTP return code of the request. If the request succeeded, the code is 200.</p>
9    ///   - [`payload(Option<RefreshStatisticsIdMap>)`](crate::operation::manage_propertygraph_statistics::ManagePropertygraphStatisticsOutput::payload): <p>This is only returned for refresh mode.</p>
10    /// - On failure, responds with [`SdkError<ManagePropertygraphStatisticsError>`](crate::operation::manage_propertygraph_statistics::ManagePropertygraphStatisticsError)
11    pub fn manage_propertygraph_statistics(
12        &self,
13    ) -> crate::operation::manage_propertygraph_statistics::builders::ManagePropertygraphStatisticsFluentBuilder {
14        crate::operation::manage_propertygraph_statistics::builders::ManagePropertygraphStatisticsFluentBuilder::new(self.handle.clone())
15    }
16}