Struct rusoto_datapipeline::ValidatePipelineDefinitionInput[][src]

pub struct ValidatePipelineDefinitionInput {
    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 ValidatePipelineDefinition.

Fields

The parameter objects used with the pipeline.

The parameter values used with the pipeline.

The ID of the pipeline.

The objects that define the pipeline changes to validate against the pipeline.

Trait Implementations

impl Default for ValidatePipelineDefinitionInput
[src]

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

impl Debug for ValidatePipelineDefinitionInput
[src]

Formats the value using the given formatter. Read more

impl Clone for ValidatePipelineDefinitionInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ValidatePipelineDefinitionInput
[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