[][src]Struct rusoto_iotanalytics::UpdatePipelineRequest

pub struct UpdatePipelineRequest {
    pub pipeline_activities: Vec<PipelineActivity>,
    pub pipeline_name: String,
}

Fields

pipeline_activities: Vec<PipelineActivity>

A list of "PipelineActivity" objects. Activities perform transformations on your messages, such as removing, renaming or adding message attributes; filtering messages based on attribute values; invoking your Lambda functions on messages for advanced processing; or performing mathematical transformations to normalize device data.

The list can be 2-25 PipelineActivity objects and must contain both a channel and a datastore activity. Each entry in the list must contain only one activity, for example:

pipelineActivities = [ { "channel": { ... } }, { "lambda": { ... } }, ... ]

pipeline_name: String

The name of the pipeline to update.

Trait Implementations

impl PartialEq<UpdatePipelineRequest> for UpdatePipelineRequest[src]

impl Default for UpdatePipelineRequest[src]

impl Clone for UpdatePipelineRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for UpdatePipelineRequest[src]

impl Serialize for UpdatePipelineRequest[src]

Auto Trait Implementations

impl Send for UpdatePipelineRequest

impl Sync for UpdatePipelineRequest

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self