pub struct PutPipelineDefinitionOutput {
pub errored: bool,
pub validation_errors: Option<Vec<ValidationError>>,
pub validation_warnings: Option<Vec<ValidationWarning>>,
}
Expand description
Contains the output of PutPipelineDefinition.
Fields§
§errored: bool
Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and call PutPipelineDefinition
to commit the corrected pipeline.
validation_errors: Option<Vec<ValidationError>>
The validation errors that are associated with the objects defined in pipelineObjects
.
validation_warnings: Option<Vec<ValidationWarning>>
The validation warnings that are associated with the objects defined in pipelineObjects
.
Trait Implementations§
Source§impl Clone for PutPipelineDefinitionOutput
impl Clone for PutPipelineDefinitionOutput
Source§fn clone(&self) -> PutPipelineDefinitionOutput
fn clone(&self) -> PutPipelineDefinitionOutput
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PutPipelineDefinitionOutput
impl Debug for PutPipelineDefinitionOutput
Source§impl Default for PutPipelineDefinitionOutput
impl Default for PutPipelineDefinitionOutput
Source§fn default() -> PutPipelineDefinitionOutput
fn default() -> PutPipelineDefinitionOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PutPipelineDefinitionOutput
impl<'de> Deserialize<'de> for PutPipelineDefinitionOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for PutPipelineDefinitionOutput
Auto Trait Implementations§
impl Freeze for PutPipelineDefinitionOutput
impl RefUnwindSafe for PutPipelineDefinitionOutput
impl Send for PutPipelineDefinitionOutput
impl Sync for PutPipelineDefinitionOutput
impl Unpin for PutPipelineDefinitionOutput
impl UnwindSafe for PutPipelineDefinitionOutput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more