[][src]Struct rusoto_iotanalytics::RunPipelineActivityRequest

pub struct RunPipelineActivityRequest {
    pub payloads: Vec<Bytes>,
    pub pipeline_activity: PipelineActivity,
}

Fields

payloads: Vec<Bytes>

The sample message payloads on which the pipeline activity is run.

pipeline_activity: PipelineActivity

The pipeline activity that is run. This must not be a 'channel' activity or a 'datastore' activity because these activities are used in a pipeline only to load the original message and to store the (possibly) transformed message. If a 'lambda' activity is specified, only short-running Lambda functions (those with a timeout of less than 30 seconds or less) can be used.

Trait Implementations

impl Clone for RunPipelineActivityRequest[src]

impl Default for RunPipelineActivityRequest[src]

impl PartialEq<RunPipelineActivityRequest> for RunPipelineActivityRequest[src]

impl Debug for RunPipelineActivityRequest[src]

impl StructuralPartialEq for RunPipelineActivityRequest[src]

impl Serialize for RunPipelineActivityRequest[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self