aws_sdk_bedrockagentcorecontrol/client/delete_code_interpreter.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 [`DeleteCodeInterpreter`](crate::operation::delete_code_interpreter::builders::DeleteCodeInterpreterFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`code_interpreter_id(impl Into<String>)`](crate::operation::delete_code_interpreter::builders::DeleteCodeInterpreterFluentBuilder::code_interpreter_id) / [`set_code_interpreter_id(Option<String>)`](crate::operation::delete_code_interpreter::builders::DeleteCodeInterpreterFluentBuilder::set_code_interpreter_id):<br>required: **true**<br><p>The unique identifier of the code interpreter to delete.</p><br>
7 /// - [`client_token(impl Into<String>)`](crate::operation::delete_code_interpreter::builders::DeleteCodeInterpreterFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::delete_code_interpreter::builders::DeleteCodeInterpreterFluentBuilder::set_client_token):<br>required: **false**<br><p>A unique, case-sensitive identifier to ensure idempotency of the request.</p><br>
8 /// - On success, responds with [`DeleteCodeInterpreterOutput`](crate::operation::delete_code_interpreter::DeleteCodeInterpreterOutput) with field(s):
9 /// - [`code_interpreter_id(String)`](crate::operation::delete_code_interpreter::DeleteCodeInterpreterOutput::code_interpreter_id): <p>The unique identifier of the deleted code interpreter.</p>
10 /// - [`status(CodeInterpreterStatus)`](crate::operation::delete_code_interpreter::DeleteCodeInterpreterOutput::status): <p>The current status of the code interpreter deletion.</p>
11 /// - [`last_updated_at(DateTime)`](crate::operation::delete_code_interpreter::DeleteCodeInterpreterOutput::last_updated_at): <p>The timestamp when the code interpreter was last updated.</p>
12 /// - On failure, responds with [`SdkError<DeleteCodeInterpreterError>`](crate::operation::delete_code_interpreter::DeleteCodeInterpreterError)
13 pub fn delete_code_interpreter(&self) -> crate::operation::delete_code_interpreter::builders::DeleteCodeInterpreterFluentBuilder {
14 crate::operation::delete_code_interpreter::builders::DeleteCodeInterpreterFluentBuilder::new(self.handle.clone())
15 }
16}