aws-sdk-wickr 1.1.0

AWS SDK for AWS Wickr Admin API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteNetwork`](crate::operation::delete_network::builders::DeleteNetworkFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`network_id(impl Into<String>)`](crate::operation::delete_network::builders::DeleteNetworkFluentBuilder::network_id) / [`set_network_id(Option<String>)`](crate::operation::delete_network::builders::DeleteNetworkFluentBuilder::set_network_id):<br>required: **true**<br><p>The ID of the Wickr network to delete.</p><br>
    ///   - [`client_token(impl Into<String>)`](crate::operation::delete_network::builders::DeleteNetworkFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::delete_network::builders::DeleteNetworkFluentBuilder::set_client_token):<br>required: **false**<br><p>A unique identifier for this request to ensure idempotency. If you retry a request with the same client token, the service will return the same response without attempting to delete the network again.</p><br>
    /// - On success, responds with [`DeleteNetworkOutput`](crate::operation::delete_network::DeleteNetworkOutput) with field(s):
    ///   - [`message(Option<String>)`](crate::operation::delete_network::DeleteNetworkOutput::message): <p>A message indicating that the network deletion has been initiated successfully.</p>
    /// - On failure, responds with [`SdkError<DeleteNetworkError>`](crate::operation::delete_network::DeleteNetworkError)
    pub fn delete_network(&self) -> crate::operation::delete_network::builders::DeleteNetworkFluentBuilder {
        crate::operation::delete_network::builders::DeleteNetworkFluentBuilder::new(self.handle.clone())
    }
}