Struct rusoto_datapipeline::GetPipelineDefinitionOutput[][src]

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

Contains the output of GetPipelineDefinition.

Fields

The parameter objects used in the pipeline definition.

The parameter values used in the pipeline definition.

The objects defined in the pipeline.

Trait Implementations

impl Default for GetPipelineDefinitionOutput
[src]

Returns the "default value" for a type. Read more

impl Debug for GetPipelineDefinitionOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for GetPipelineDefinitionOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetPipelineDefinitionOutput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations