#[non_exhaustive]pub struct DescribeModelCardInput {
pub model_card_name: Option<String>,
pub model_card_version: Option<i32>,
}
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_card_name: Option<String>
The name or Amazon Resource Name (ARN) of the model card to describe.
model_card_version: Option<i32>
The version of the model card to describe. If a version is not provided, then the latest version of the model card is described.
Implementations§
source§impl DescribeModelCardInput
impl DescribeModelCardInput
sourcepub fn model_card_name(&self) -> Option<&str>
pub fn model_card_name(&self) -> Option<&str>
The name or Amazon Resource Name (ARN) of the model card to describe.
sourcepub fn model_card_version(&self) -> Option<i32>
pub fn model_card_version(&self) -> Option<i32>
The version of the model card to describe. If a version is not provided, then the latest version of the model card is described.
source§impl DescribeModelCardInput
impl DescribeModelCardInput
sourcepub fn builder() -> DescribeModelCardInputBuilder
pub fn builder() -> DescribeModelCardInputBuilder
Creates a new builder-style object to manufacture DescribeModelCardInput
.
Trait Implementations§
source§impl Clone for DescribeModelCardInput
impl Clone for DescribeModelCardInput
source§fn clone(&self) -> DescribeModelCardInput
fn clone(&self) -> DescribeModelCardInput
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 DescribeModelCardInput
impl Debug for DescribeModelCardInput
source§impl PartialEq for DescribeModelCardInput
impl PartialEq for DescribeModelCardInput
source§fn eq(&self, other: &DescribeModelCardInput) -> bool
fn eq(&self, other: &DescribeModelCardInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeModelCardInput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeModelCardInput
impl Send for DescribeModelCardInput
impl Sync for DescribeModelCardInput
impl Unpin for DescribeModelCardInput
impl UnwindSafe for DescribeModelCardInput
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.