aws-sdk-bedrockagentcorecontrol 1.37.0

AWS SDK for Amazon Bedrock AgentCore Control
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteAgentRuntime`](crate::operation::delete_agent_runtime::builders::DeleteAgentRuntimeFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`agent_runtime_id(impl Into<String>)`](crate::operation::delete_agent_runtime::builders::DeleteAgentRuntimeFluentBuilder::agent_runtime_id) / [`set_agent_runtime_id(Option<String>)`](crate::operation::delete_agent_runtime::builders::DeleteAgentRuntimeFluentBuilder::set_agent_runtime_id):<br>required: **true**<br><p>The unique identifier of the AgentCore Runtime to delete.</p><br>
    ///   - [`client_token(impl Into<String>)`](crate::operation::delete_agent_runtime::builders::DeleteAgentRuntimeFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::delete_agent_runtime::builders::DeleteAgentRuntimeFluentBuilder::set_client_token):<br>required: **false**<br><p>A unique, case-sensitive identifier to ensure that the operation completes no more than one time. If this token matches a previous request, the service ignores the request but does not return an error.</p><br>
    /// - On success, responds with [`DeleteAgentRuntimeOutput`](crate::operation::delete_agent_runtime::DeleteAgentRuntimeOutput) with field(s):
    ///   - [`status(AgentRuntimeStatus)`](crate::operation::delete_agent_runtime::DeleteAgentRuntimeOutput::status): <p>The current status of the AgentCore Runtime deletion.</p>
    ///   - [`agent_runtime_id(Option<String>)`](crate::operation::delete_agent_runtime::DeleteAgentRuntimeOutput::agent_runtime_id): <p>The unique identifier of the AgentCore Runtime.</p>
    /// - On failure, responds with [`SdkError<DeleteAgentRuntimeError>`](crate::operation::delete_agent_runtime::DeleteAgentRuntimeError)
    pub fn delete_agent_runtime(&self) -> crate::operation::delete_agent_runtime::builders::DeleteAgentRuntimeFluentBuilder {
        crate::operation::delete_agent_runtime::builders::DeleteAgentRuntimeFluentBuilder::new(self.handle.clone())
    }
}