pub struct Builder { /* private fields */ }
Expand description
A builder for CreateDecoderManifestInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The unique name of the decoder manifest to create.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The unique name of the decoder manifest to create.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A brief description of the decoder manifest.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A brief description of the decoder manifest.
sourcepub fn model_manifest_arn(self, input: impl Into<String>) -> Self
pub fn model_manifest_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the vehicle model (model manifest).
sourcepub fn set_model_manifest_arn(self, input: Option<String>) -> Self
pub fn set_model_manifest_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the vehicle model (model manifest).
sourcepub fn signal_decoders(self, input: SignalDecoder) -> Self
pub fn signal_decoders(self, input: SignalDecoder) -> Self
Appends an item to signal_decoders
.
To override the contents of this collection use set_signal_decoders
.
A list of information about signal decoders.
sourcepub fn set_signal_decoders(self, input: Option<Vec<SignalDecoder>>) -> Self
pub fn set_signal_decoders(self, input: Option<Vec<SignalDecoder>>) -> Self
A list of information about signal decoders.
sourcepub fn network_interfaces(self, input: NetworkInterface) -> Self
pub fn network_interfaces(self, input: NetworkInterface) -> Self
Appends an item to network_interfaces
.
To override the contents of this collection use set_network_interfaces
.
A list of information about available network interfaces.
sourcepub fn set_network_interfaces(self, input: Option<Vec<NetworkInterface>>) -> Self
pub fn set_network_interfaces(self, input: Option<Vec<NetworkInterface>>) -> Self
A list of information about available network interfaces.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
Metadata that can be used to manage the decoder manifest.
Metadata that can be used to manage the decoder manifest.
sourcepub fn build(self) -> Result<CreateDecoderManifestInput, BuildError>
pub fn build(self) -> Result<CreateDecoderManifestInput, BuildError>
Consumes the builder and constructs a CreateDecoderManifestInput
.