Struct aws_sdk_bedrock::types::CustomModelSummary
source · #[non_exhaustive]pub struct CustomModelSummary {
pub model_arn: String,
pub model_name: String,
pub creation_time: DateTime,
pub base_model_arn: String,
pub base_model_name: 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: String
The ARN of the custom model.
model_name: String
The name of the custom model.
creation_time: DateTime
Creation time of the model.
base_model_arn: String
The base model ARN.
base_model_name: String
The base model name.
Implementations§
source§impl CustomModelSummary
impl CustomModelSummary
sourcepub fn model_name(&self) -> &str
pub fn model_name(&self) -> &str
The name of the custom model.
sourcepub fn creation_time(&self) -> &DateTime
pub fn creation_time(&self) -> &DateTime
Creation time of the model.
sourcepub fn base_model_arn(&self) -> &str
pub fn base_model_arn(&self) -> &str
The base model ARN.
sourcepub fn base_model_name(&self) -> &str
pub fn base_model_name(&self) -> &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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.