aws_sdk_neptunedata/client/delete_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 [`DeletePropertygraphStatistics`](crate::operation::delete_propertygraph_statistics::builders::DeletePropertygraphStatisticsFluentBuilder) operation.
4 ///
5 /// - The fluent builder takes no input, just [`send`](crate::operation::delete_propertygraph_statistics::builders::DeletePropertygraphStatisticsFluentBuilder::send) it.
6 /// - On success, responds with [`DeletePropertygraphStatisticsOutput`](crate::operation::delete_propertygraph_statistics::DeletePropertygraphStatisticsOutput) with field(s):
7 /// - [`status_code(Option<i32>)`](crate::operation::delete_propertygraph_statistics::DeletePropertygraphStatisticsOutput::status_code): <p>The HTTP response code: 200 if the delete was successful, or 204 if there were no statistics to delete.</p>
8 /// - [`status(Option<String>)`](crate::operation::delete_propertygraph_statistics::DeletePropertygraphStatisticsOutput::status): <p>The cancel status.</p>
9 /// - [`payload(Option<DeleteStatisticsValueMap>)`](crate::operation::delete_propertygraph_statistics::DeletePropertygraphStatisticsOutput::payload): <p>The deletion payload.</p>
10 /// - On failure, responds with [`SdkError<DeletePropertygraphStatisticsError>`](crate::operation::delete_propertygraph_statistics::DeletePropertygraphStatisticsError)
11 pub fn delete_propertygraph_statistics(
12 &self,
13 ) -> crate::operation::delete_propertygraph_statistics::builders::DeletePropertygraphStatisticsFluentBuilder {
14 crate::operation::delete_propertygraph_statistics::builders::DeletePropertygraphStatisticsFluentBuilder::new(self.handle.clone())
15 }
16}