[][src]Struct rusoto_datapipeline::PutPipelineDefinitionInput

pub struct PutPipelineDefinitionInput {
    pub parameter_objects: Option<Vec<ParameterObject>>,
    pub parameter_values: Option<Vec<ParameterValue>>,
    pub pipeline_id: String,
    pub pipeline_objects: Vec<PipelineObject>,
}

Contains the parameters for PutPipelineDefinition.

Fields

parameter_objects: Option<Vec<ParameterObject>>

The parameter objects used with the pipeline.

parameter_values: Option<Vec<ParameterValue>>

The parameter values used with the pipeline.

pipeline_id: String

The ID of the pipeline.

pipeline_objects: Vec<PipelineObject>

The objects that define the pipeline. These objects overwrite the existing pipeline definition.

Trait Implementations

impl Clone for PutPipelineDefinitionInput[src]

impl Debug for PutPipelineDefinitionInput[src]

impl Default for PutPipelineDefinitionInput[src]

impl PartialEq<PutPipelineDefinitionInput> for PutPipelineDefinitionInput[src]

impl Serialize for PutPipelineDefinitionInput[src]

impl StructuralPartialEq for PutPipelineDefinitionInput[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.