Struct aws_sdk_iotfleetwise::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder
source · pub struct CreateDecoderManifestFluentBuilder { /* 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 CreateDecoderManifestFluentBuilder
impl CreateDecoderManifestFluentBuilder
sourcepub fn as_input(&self) -> &CreateDecoderManifestInputBuilder
pub fn as_input(&self) -> &CreateDecoderManifestInputBuilder
Access the CreateDecoderManifest as a reference.
sourcepub async fn send(
self
) -> Result<CreateDecoderManifestOutput, SdkError<CreateDecoderManifestError, HttpResponse>>
pub async fn send( self ) -> Result<CreateDecoderManifestOutput, SdkError<CreateDecoderManifestError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<CreateDecoderManifestOutput, CreateDecoderManifestError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateDecoderManifestOutput, CreateDecoderManifestError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
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 get_model_manifest_arn(&self) -> &Option<String>
pub fn get_model_manifest_arn(&self) -> &Option<String>
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 get_signal_decoders(&self) -> &Option<Vec<SignalDecoder>>
pub fn get_signal_decoders(&self) -> &Option<Vec<SignalDecoder>>
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.
sourcepub fn get_network_interfaces(&self) -> &Option<Vec<NetworkInterface>>
pub fn get_network_interfaces(&self) -> &Option<Vec<NetworkInterface>>
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.
Metadata that can be used to manage the decoder manifest.
Trait Implementations§
source§impl Clone for CreateDecoderManifestFluentBuilder
impl Clone for CreateDecoderManifestFluentBuilder
source§fn clone(&self) -> CreateDecoderManifestFluentBuilder
fn clone(&self) -> CreateDecoderManifestFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more