aws_sdk_neptunegraph/client/
stop_graph.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 [`StopGraph`](crate::operation::stop_graph::builders::StopGraphFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`graph_identifier(impl Into<String>)`](crate::operation::stop_graph::builders::StopGraphFluentBuilder::graph_identifier) / [`set_graph_identifier(Option<String>)`](crate::operation::stop_graph::builders::StopGraphFluentBuilder::set_graph_identifier):<br>required: **true**<br><p>The unique identifier of the Neptune Analytics graph.</p><br>
7    /// - On success, responds with [`StopGraphOutput`](crate::operation::stop_graph::StopGraphOutput) with field(s):
8    ///   - [`id(String)`](crate::operation::stop_graph::StopGraphOutput::id): <p>The unique identifier of the graph.</p>
9    ///   - [`name(String)`](crate::operation::stop_graph::StopGraphOutput::name): <p>The name of the graph.</p>
10    ///   - [`arn(String)`](crate::operation::stop_graph::StopGraphOutput::arn): <p>The ARN associated with the graph.</p>
11    ///   - [`status(Option<GraphStatus>)`](crate::operation::stop_graph::StopGraphOutput::status): <p>The status of the graph.</p>
12    ///   - [`status_reason(Option<String>)`](crate::operation::stop_graph::StopGraphOutput::status_reason): <p>The reason that the graph has this status.</p>
13    ///   - [`create_time(Option<DateTime>)`](crate::operation::stop_graph::StopGraphOutput::create_time): <p>The time at which the graph was created.</p>
14    ///   - [`provisioned_memory(Option<i32>)`](crate::operation::stop_graph::StopGraphOutput::provisioned_memory): <p>The number of memory-optimized Neptune Capacity Units (m-NCUs) allocated to the graph.</p>
15    ///   - [`endpoint(Option<String>)`](crate::operation::stop_graph::StopGraphOutput::endpoint): <p>The graph endpoint.</p>
16    ///   - [`public_connectivity(Option<bool>)`](crate::operation::stop_graph::StopGraphOutput::public_connectivity): <p>If true, the graph has a public endpoint, otherwise not.</p>
17    ///   - [`vector_search_configuration(Option<VectorSearchConfiguration>)`](crate::operation::stop_graph::StopGraphOutput::vector_search_configuration): <p>Specifies the number of dimensions for vector embeddings loaded into the graph. Max = 65535</p>
18    ///   - [`replica_count(Option<i32>)`](crate::operation::stop_graph::StopGraphOutput::replica_count): <p>The number of replicas for the graph.</p>
19    ///   - [`kms_key_identifier(Option<String>)`](crate::operation::stop_graph::StopGraphOutput::kms_key_identifier): <p>The ID of the KMS key used to encrypt and decrypt graph data.</p>
20    ///   - [`source_snapshot_id(Option<String>)`](crate::operation::stop_graph::StopGraphOutput::source_snapshot_id): <p>The ID of the snapshot from which the graph was created, if it was created from a snapshot.</p>
21    ///   - [`deletion_protection(Option<bool>)`](crate::operation::stop_graph::StopGraphOutput::deletion_protection): <p>If <code>true</code>, deletion protection is enabled for the graph.</p>
22    ///   - [`build_number(Option<String>)`](crate::operation::stop_graph::StopGraphOutput::build_number): <p>The build number of the graph.</p>
23    /// - On failure, responds with [`SdkError<StopGraphError>`](crate::operation::stop_graph::StopGraphError)
24    pub fn stop_graph(&self) -> crate::operation::stop_graph::builders::StopGraphFluentBuilder {
25        crate::operation::stop_graph::builders::StopGraphFluentBuilder::new(self.handle.clone())
26    }
27}