Struct aws_sdk_iotanalytics::model::PipelineActivity  
source · [−]#[non_exhaustive]pub struct PipelineActivity { /* private fields */ }Expand description
An activity that performs a transformation on a message.
Implementations
sourceimpl 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.
sourceimpl PipelineActivity
 
impl PipelineActivity
sourcepub fn builder() -> Builder
 
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PipelineActivity.
Trait Implementations
sourceimpl Clone for PipelineActivity
 
impl Clone for PipelineActivity
sourcefn clone(&self) -> PipelineActivity
 
fn clone(&self) -> PipelineActivity
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for PipelineActivity
 
impl Debug for PipelineActivity
sourceimpl PartialEq<PipelineActivity> for PipelineActivity
 
impl PartialEq<PipelineActivity> for PipelineActivity
sourcefn 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 ==. Read more
sourcefn ne(&self, other: &PipelineActivity) -> bool
 
fn ne(&self, other: &PipelineActivity) -> bool
This method tests for !=.
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
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
 
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
 
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
 
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
 
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more