pub struct CreateDecoderManifest { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateDecoderManifest
.
Creates the decoder manifest associated with a model manifest. To create a decoder manifest, the following must be true:
-
Every signal decoder has a unique name.
-
Each signal decoder is associated with a network interface.
-
Each network interface has a unique ID.
-
The signal decoders are specified in the model manifest.
Implementations§
source§impl CreateDecoderManifest
impl CreateDecoderManifest
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateDecoderManifest, AwsResponseRetryClassifier>, SdkError<CreateDecoderManifestError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateDecoderManifest, AwsResponseRetryClassifier>, SdkError<CreateDecoderManifestError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<CreateDecoderManifestOutput, SdkError<CreateDecoderManifestError>>
pub async fn send(
self
) -> Result<CreateDecoderManifestOutput, SdkError<CreateDecoderManifestError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
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 signalDecoders
.
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 networkInterfaces
.
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.
Trait Implementations§
source§impl Clone for CreateDecoderManifest
impl Clone for CreateDecoderManifest
source§fn clone(&self) -> CreateDecoderManifest
fn clone(&self) -> CreateDecoderManifest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more