aws_sdk_finspace/client/
delete_kx_environment.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 [`DeleteKxEnvironment`](crate::operation::delete_kx_environment::builders::DeleteKxEnvironmentFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`environment_id(impl Into<String>)`](crate::operation::delete_kx_environment::builders::DeleteKxEnvironmentFluentBuilder::environment_id) / [`set_environment_id(Option<String>)`](crate::operation::delete_kx_environment::builders::DeleteKxEnvironmentFluentBuilder::set_environment_id):<br>required: **true**<br><p>A unique identifier for the kdb environment.</p><br>
7    ///   - [`client_token(impl Into<String>)`](crate::operation::delete_kx_environment::builders::DeleteKxEnvironmentFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::delete_kx_environment::builders::DeleteKxEnvironmentFluentBuilder::set_client_token):<br>required: **false**<br><p>A token that ensures idempotency. This token expires in 10 minutes.</p><br>
8    /// - On success, responds with [`DeleteKxEnvironmentOutput`](crate::operation::delete_kx_environment::DeleteKxEnvironmentOutput)
9    /// - On failure, responds with [`SdkError<DeleteKxEnvironmentError>`](crate::operation::delete_kx_environment::DeleteKxEnvironmentError)
10    pub fn delete_kx_environment(&self) -> crate::operation::delete_kx_environment::builders::DeleteKxEnvironmentFluentBuilder {
11        crate::operation::delete_kx_environment::builders::DeleteKxEnvironmentFluentBuilder::new(self.handle.clone())
12    }
13}