#[non_exhaustive]pub struct CreateModelManifestInput {
pub name: Option<String>,
pub description: Option<String>,
pub nodes: Option<Vec<String>>,
pub signal_catalog_arn: Option<String>,
pub tags: Option<Vec<Tag>>,
}
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.name: Option<String>
The name of the vehicle model to create.
description: Option<String>
A brief description of the vehicle model.
nodes: Option<Vec<String>>
A list of nodes, which are a general abstraction of signals.
signal_catalog_arn: Option<String>
The Amazon Resource Name (ARN) of a signal catalog.
Metadata that can be used to manage the vehicle model.
Implementations§
source§impl CreateModelManifestInput
impl CreateModelManifestInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A brief description of the vehicle model.
sourcepub fn nodes(&self) -> Option<&[String]>
pub fn nodes(&self) -> Option<&[String]>
A list of nodes, which are a general abstraction of signals.
sourcepub fn signal_catalog_arn(&self) -> Option<&str>
pub fn signal_catalog_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of a signal catalog.
Metadata that can be used to manage the vehicle model.
source§impl CreateModelManifestInput
impl CreateModelManifestInput
sourcepub fn builder() -> CreateModelManifestInputBuilder
pub fn builder() -> CreateModelManifestInputBuilder
Creates a new builder-style object to manufacture CreateModelManifestInput
.
Trait Implementations§
source§impl Clone for CreateModelManifestInput
impl Clone for CreateModelManifestInput
source§fn clone(&self) -> CreateModelManifestInput
fn clone(&self) -> CreateModelManifestInput
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 CreateModelManifestInput
impl Debug for CreateModelManifestInput
source§impl PartialEq<CreateModelManifestInput> for CreateModelManifestInput
impl PartialEq<CreateModelManifestInput> for CreateModelManifestInput
source§fn eq(&self, other: &CreateModelManifestInput) -> bool
fn eq(&self, other: &CreateModelManifestInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateModelManifestInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateModelManifestInput
impl Send for CreateModelManifestInput
impl Sync for CreateModelManifestInput
impl Unpin for CreateModelManifestInput
impl UnwindSafe for CreateModelManifestInput
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