1
2
3
4
5
6
7
8
9
10
11
12
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteScript`](crate::operation::delete_script::builders::DeleteScriptFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`script_id(impl Into<String>)`](crate::operation::delete_script::builders::DeleteScriptFluentBuilder::script_id) / [`set_script_id(Option<String>)`](crate::operation::delete_script::builders::DeleteScriptFluentBuilder::set_script_id):<br>required: **true**<br><p>A unique identifier for the Realtime script to delete. You can use either the script ID or ARN value.</p><br>
    /// - On success, responds with [`DeleteScriptOutput`](crate::operation::delete_script::DeleteScriptOutput)
    /// - On failure, responds with [`SdkError<DeleteScriptError>`](crate::operation::delete_script::DeleteScriptError)
    pub fn delete_script(&self) -> crate::operation::delete_script::builders::DeleteScriptFluentBuilder {
        crate::operation::delete_script::builders::DeleteScriptFluentBuilder::new(self.handle.clone())
    }
}