Struct aws_sdk_datapipeline::operation::put_pipeline_definition::PutPipelineDefinitionOutput
source · #[non_exhaustive]pub struct PutPipelineDefinitionOutput {
pub validation_errors: Option<Vec<ValidationError>>,
pub validation_warnings: Option<Vec<ValidationWarning>>,
pub errored: bool,
/* private fields */
}
Expand description
Contains the output of PutPipelineDefinition.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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
.
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.
Implementations§
source§impl PutPipelineDefinitionOutput
impl PutPipelineDefinitionOutput
sourcepub fn validation_errors(&self) -> &[ValidationError]
pub fn validation_errors(&self) -> &[ValidationError]
The validation errors that are associated with the objects defined in pipelineObjects
.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .validation_errors.is_none()
.
sourcepub fn validation_warnings(&self) -> &[ValidationWarning]
pub fn validation_warnings(&self) -> &[ValidationWarning]
The validation warnings that are associated with the objects defined in pipelineObjects
.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .validation_warnings.is_none()
.
source§impl PutPipelineDefinitionOutput
impl PutPipelineDefinitionOutput
sourcepub fn builder() -> PutPipelineDefinitionOutputBuilder
pub fn builder() -> PutPipelineDefinitionOutputBuilder
Creates a new builder-style object to manufacture PutPipelineDefinitionOutput
.
Trait Implementations§
source§impl Clone for PutPipelineDefinitionOutput
impl Clone for PutPipelineDefinitionOutput
source§fn clone(&self) -> PutPipelineDefinitionOutput
fn clone(&self) -> PutPipelineDefinitionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PutPipelineDefinitionOutput
impl Debug for PutPipelineDefinitionOutput
source§impl PartialEq for PutPipelineDefinitionOutput
impl PartialEq for PutPipelineDefinitionOutput
source§fn eq(&self, other: &PutPipelineDefinitionOutput) -> bool
fn eq(&self, other: &PutPipelineDefinitionOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for PutPipelineDefinitionOutput
impl RequestId for PutPipelineDefinitionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.