pub struct BedrockAgentRow {Show 14 fields
pub agent_id: String,
pub agent_name: String,
pub agent_arn: String,
pub agent_status: String,
pub foundation_model: Option<String>,
pub instruction: Option<String>,
pub knowledge_bases: Vec<BedrockAgentKnowledgeBaseSummary>,
pub action_groups: Vec<Value>,
pub collaborators: Vec<BedrockAgentCollaboratorSummary>,
pub aliases: Vec<BedrockAgentAliasSummary>,
pub versions: Vec<BedrockAgentVersionSummary>,
pub prompt_overrides: Option<Value>,
pub created_at: String,
pub updated_at: String,
}Fields§
§agent_id: String§agent_name: String§agent_arn: String§agent_status: String§foundation_model: Option<String>§instruction: Option<String>§knowledge_bases: Vec<BedrockAgentKnowledgeBaseSummary>§action_groups: Vec<Value>§collaborators: Vec<BedrockAgentCollaboratorSummary>§aliases: Vec<BedrockAgentAliasSummary>§versions: Vec<BedrockAgentVersionSummary>§prompt_overrides: Option<Value>§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for BedrockAgentRow
impl Clone for BedrockAgentRow
Source§fn clone(&self) -> BedrockAgentRow
fn clone(&self) -> BedrockAgentRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BedrockAgentRow
impl Debug for BedrockAgentRow
Source§impl<'de> Deserialize<'de> for BedrockAgentRow
impl<'de> Deserialize<'de> for BedrockAgentRow
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BedrockAgentRow
impl RefUnwindSafe for BedrockAgentRow
impl Send for BedrockAgentRow
impl Sync for BedrockAgentRow
impl Unpin for BedrockAgentRow
impl UnsafeUnpin for BedrockAgentRow
impl UnwindSafe for BedrockAgentRow
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more