aws-sdk-bedrockagentcorecontrol 1.52.0

AWS SDK for Amazon Bedrock AgentCore Control
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteCodeInterpreter`](crate::operation::delete_code_interpreter::builders::DeleteCodeInterpreterFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`DeleteCodeInterpreterOutput`](crate::operation::delete_code_interpreter::DeleteCodeInterpreterOutput) with field(s):
    ///   - [`code_interpreter_id(String)`](crate::operation::delete_code_interpreter::DeleteCodeInterpreterOutput::code_interpreter_id): <p>The unique identifier of the deleted code interpreter.</p>
    ///   - [`status(CodeInterpreterStatus)`](crate::operation::delete_code_interpreter::DeleteCodeInterpreterOutput::status): <p>The current status of the code interpreter deletion.</p>
    ///   - [`last_updated_at(DateTime)`](crate::operation::delete_code_interpreter::DeleteCodeInterpreterOutput::last_updated_at): <p>The timestamp when the code interpreter was last updated.</p>
    /// - On failure, responds with [`SdkError<DeleteCodeInterpreterError>`](crate::operation::delete_code_interpreter::DeleteCodeInterpreterError)
    pub fn delete_code_interpreter(&self) -> crate::operation::delete_code_interpreter::builders::DeleteCodeInterpreterFluentBuilder {
        crate::operation::delete_code_interpreter::builders::DeleteCodeInterpreterFluentBuilder::new(self.handle.clone())
    }
}