Struct aws_sdk_bedrock::types::CustomModelSummary
source · #[non_exhaustive]pub struct CustomModelSummary {
pub model_arn: Option<String>,
pub model_name: Option<String>,
pub creation_time: Option<DateTime>,
pub base_model_arn: Option<String>,
pub base_model_name: Option<String>,
}Expand description
Summary information for a custom model.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.model_arn: Option<String>The ARN of the custom model.
model_name: Option<String>The name of the custom model.
creation_time: Option<DateTime>Creation time of the model.
base_model_arn: Option<String>The base model ARN.
base_model_name: Option<String>The base model name.
Implementations§
source§impl CustomModelSummary
impl CustomModelSummary
sourcepub fn model_name(&self) -> Option<&str>
pub fn model_name(&self) -> Option<&str>
The name of the custom model.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
Creation time of the model.
sourcepub fn base_model_arn(&self) -> Option<&str>
pub fn base_model_arn(&self) -> Option<&str>
The base model ARN.
sourcepub fn base_model_name(&self) -> Option<&str>
pub fn base_model_name(&self) -> Option<&str>
The base model name.
source§impl CustomModelSummary
impl CustomModelSummary
sourcepub fn builder() -> CustomModelSummaryBuilder
pub fn builder() -> CustomModelSummaryBuilder
Creates a new builder-style object to manufacture CustomModelSummary.
Trait Implementations§
source§impl Clone for CustomModelSummary
impl Clone for CustomModelSummary
source§fn clone(&self) -> CustomModelSummary
fn clone(&self) -> CustomModelSummary
Returns a copy of the value. Read more
1.0.0 · 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 CustomModelSummary
impl Debug for CustomModelSummary
source§impl PartialEq for CustomModelSummary
impl PartialEq for CustomModelSummary
source§fn eq(&self, other: &CustomModelSummary) -> bool
fn eq(&self, other: &CustomModelSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CustomModelSummary
Auto Trait Implementations§
impl RefUnwindSafe for CustomModelSummary
impl Send for CustomModelSummary
impl Sync for CustomModelSummary
impl Unpin for CustomModelSummary
impl UnwindSafe for CustomModelSummary
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