Struct aws_sdk_iotanalytics::types::PipelineActivity  
source · #[non_exhaustive]pub struct PipelineActivity { /* private fields */ }Expand description
An activity that performs a transformation on a message.
Implementations§
source§impl PipelineActivity
 
impl PipelineActivity
sourcepub fn channel(&self) -> Option<&ChannelActivity>
 
pub fn channel(&self) -> Option<&ChannelActivity>
Determines the source of the messages to be processed.
sourcepub fn lambda(&self) -> Option<&LambdaActivity>
 
pub fn lambda(&self) -> Option<&LambdaActivity>
Runs a Lambda function to modify the message.
sourcepub fn datastore(&self) -> Option<&DatastoreActivity>
 
pub fn datastore(&self) -> Option<&DatastoreActivity>
Specifies where to store the processed message data.
sourcepub fn add_attributes(&self) -> Option<&AddAttributesActivity>
 
pub fn add_attributes(&self) -> Option<&AddAttributesActivity>
Adds other attributes based on existing attributes in the message.
sourcepub fn remove_attributes(&self) -> Option<&RemoveAttributesActivity>
 
pub fn remove_attributes(&self) -> Option<&RemoveAttributesActivity>
Removes attributes from a message.
sourcepub fn select_attributes(&self) -> Option<&SelectAttributesActivity>
 
pub fn select_attributes(&self) -> Option<&SelectAttributesActivity>
Used to create a new message using only the specified attributes from the original message.
sourcepub fn filter(&self) -> Option<&FilterActivity>
 
pub fn filter(&self) -> Option<&FilterActivity>
Filters a message based on its attributes.
sourcepub fn math(&self) -> Option<&MathActivity>
 
pub fn math(&self) -> Option<&MathActivity>
Computes an arithmetic expression using the message's attributes and adds it to the message.
sourcepub fn device_registry_enrich(&self) -> Option<&DeviceRegistryEnrichActivity>
 
pub fn device_registry_enrich(&self) -> Option<&DeviceRegistryEnrichActivity>
Adds data from the IoT device registry to your message.
sourcepub fn device_shadow_enrich(&self) -> Option<&DeviceShadowEnrichActivity>
 
pub fn device_shadow_enrich(&self) -> Option<&DeviceShadowEnrichActivity>
Adds information from the IoT Device Shadow service to a message.
source§impl PipelineActivity
 
impl PipelineActivity
sourcepub fn builder() -> PipelineActivityBuilder
 
pub fn builder() -> PipelineActivityBuilder
Creates a new builder-style object to manufacture PipelineActivity.
Trait Implementations§
source§impl Clone for PipelineActivity
 
impl Clone for PipelineActivity
source§fn clone(&self) -> PipelineActivity
 
fn clone(&self) -> PipelineActivity
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 PipelineActivity
 
impl Debug for PipelineActivity
source§impl PartialEq<PipelineActivity> for PipelineActivity
 
impl PartialEq<PipelineActivity> for PipelineActivity
source§fn eq(&self, other: &PipelineActivity) -> bool
 
fn eq(&self, other: &PipelineActivity) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PipelineActivity
Auto Trait Implementations§
impl RefUnwindSafe for PipelineActivity
impl Send for PipelineActivity
impl Sync for PipelineActivity
impl Unpin for PipelineActivity
impl UnwindSafe for PipelineActivity
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