aws_sdk_bedrockagentruntime/client/delete_agent_memory.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteAgentMemory`](crate::operation::delete_agent_memory::builders::DeleteAgentMemoryFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`agent_id(impl Into<String>)`](crate::operation::delete_agent_memory::builders::DeleteAgentMemoryFluentBuilder::agent_id) / [`set_agent_id(Option<String>)`](crate::operation::delete_agent_memory::builders::DeleteAgentMemoryFluentBuilder::set_agent_id):<br>required: **true**<br><p>The unique identifier of the agent to which the alias belongs.</p><br>
/// - [`agent_alias_id(impl Into<String>)`](crate::operation::delete_agent_memory::builders::DeleteAgentMemoryFluentBuilder::agent_alias_id) / [`set_agent_alias_id(Option<String>)`](crate::operation::delete_agent_memory::builders::DeleteAgentMemoryFluentBuilder::set_agent_alias_id):<br>required: **true**<br><p>The unique identifier of an alias of an agent.</p><br>
/// - [`memory_id(impl Into<String>)`](crate::operation::delete_agent_memory::builders::DeleteAgentMemoryFluentBuilder::memory_id) / [`set_memory_id(Option<String>)`](crate::operation::delete_agent_memory::builders::DeleteAgentMemoryFluentBuilder::set_memory_id):<br>required: **false**<br><p>The unique identifier of the memory.</p><br>
/// - [`session_id(impl Into<String>)`](crate::operation::delete_agent_memory::builders::DeleteAgentMemoryFluentBuilder::session_id) / [`set_session_id(Option<String>)`](crate::operation::delete_agent_memory::builders::DeleteAgentMemoryFluentBuilder::set_session_id):<br>required: **false**<br><p>The unique session identifier of the memory.</p><br>
/// - On success, responds with [`DeleteAgentMemoryOutput`](crate::operation::delete_agent_memory::DeleteAgentMemoryOutput)
/// - On failure, responds with [`SdkError<DeleteAgentMemoryError>`](crate::operation::delete_agent_memory::DeleteAgentMemoryError)
pub fn delete_agent_memory(&self) -> crate::operation::delete_agent_memory::builders::DeleteAgentMemoryFluentBuilder {
crate::operation::delete_agent_memory::builders::DeleteAgentMemoryFluentBuilder::new(self.handle.clone())
}
}