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 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.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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more