#[non_exhaustive]pub struct CreateDecoderManifestInput {
pub name: Option<String>,
pub description: Option<String>,
pub model_manifest_arn: Option<String>,
pub signal_decoders: Option<Vec<SignalDecoder>>,
pub network_interfaces: Option<Vec<NetworkInterface>>,
pub tags: Option<Vec<Tag>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The unique name of the decoder manifest to create.
description: Option<String>
A brief description of the decoder manifest.
model_manifest_arn: Option<String>
The Amazon Resource Name (ARN) of the vehicle model (model manifest).
signal_decoders: Option<Vec<SignalDecoder>>
A list of information about signal decoders.
network_interfaces: Option<Vec<NetworkInterface>>
A list of information about available network interfaces.
Metadata that can be used to manage the decoder manifest.
Implementations§
source§impl CreateDecoderManifestInput
impl CreateDecoderManifestInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A brief description of the decoder manifest.
sourcepub fn model_manifest_arn(&self) -> Option<&str>
pub fn model_manifest_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the vehicle model (model manifest).
sourcepub fn signal_decoders(&self) -> &[SignalDecoder]
pub fn signal_decoders(&self) -> &[SignalDecoder]
A list of information about signal decoders.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .signal_decoders.is_none()
.
sourcepub fn network_interfaces(&self) -> &[NetworkInterface]
pub fn network_interfaces(&self) -> &[NetworkInterface]
A list of information about available network interfaces.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .network_interfaces.is_none()
.
Metadata that can be used to manage the decoder manifest.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateDecoderManifestInput
impl CreateDecoderManifestInput
sourcepub fn builder() -> CreateDecoderManifestInputBuilder
pub fn builder() -> CreateDecoderManifestInputBuilder
Creates a new builder-style object to manufacture CreateDecoderManifestInput
.
Trait Implementations§
source§impl Clone for CreateDecoderManifestInput
impl Clone for CreateDecoderManifestInput
source§fn clone(&self) -> CreateDecoderManifestInput
fn clone(&self) -> CreateDecoderManifestInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateDecoderManifestInput
impl Debug for CreateDecoderManifestInput
source§impl PartialEq for CreateDecoderManifestInput
impl PartialEq for CreateDecoderManifestInput
source§fn eq(&self, other: &CreateDecoderManifestInput) -> bool
fn eq(&self, other: &CreateDecoderManifestInput) -> bool
self
and other
values to be equal, and is used
by ==
.