Struct aws_sdk_datapipeline::operation::validate_pipeline_definition::builders::ValidatePipelineDefinitionOutputBuilder
source · #[non_exhaustive]pub struct ValidatePipelineDefinitionOutputBuilder { /* private fields */ }
Expand description
A builder for ValidatePipelineDefinitionOutput
.
Implementations§
source§impl ValidatePipelineDefinitionOutputBuilder
impl ValidatePipelineDefinitionOutputBuilder
sourcepub fn validation_errors(self, input: ValidationError) -> Self
pub fn validation_errors(self, input: ValidationError) -> Self
Appends an item to validation_errors
.
To override the contents of this collection use set_validation_errors
.
Any validation errors that were found.
sourcepub fn set_validation_errors(self, input: Option<Vec<ValidationError>>) -> Self
pub fn set_validation_errors(self, input: Option<Vec<ValidationError>>) -> Self
Any validation errors that were found.
sourcepub fn get_validation_errors(&self) -> &Option<Vec<ValidationError>>
pub fn get_validation_errors(&self) -> &Option<Vec<ValidationError>>
Any validation errors that were found.
sourcepub fn validation_warnings(self, input: ValidationWarning) -> Self
pub fn validation_warnings(self, input: ValidationWarning) -> Self
Appends an item to validation_warnings
.
To override the contents of this collection use set_validation_warnings
.
Any validation warnings that were found.
sourcepub fn set_validation_warnings(
self,
input: Option<Vec<ValidationWarning>>,
) -> Self
pub fn set_validation_warnings( self, input: Option<Vec<ValidationWarning>>, ) -> Self
Any validation warnings that were found.
sourcepub fn get_validation_warnings(&self) -> &Option<Vec<ValidationWarning>>
pub fn get_validation_warnings(&self) -> &Option<Vec<ValidationWarning>>
Any validation warnings that were found.
sourcepub fn errored(self, input: bool) -> Self
pub fn errored(self, input: bool) -> Self
Indicates whether there were validation errors.
This field is required.sourcepub fn set_errored(self, input: Option<bool>) -> Self
pub fn set_errored(self, input: Option<bool>) -> Self
Indicates whether there were validation errors.
sourcepub fn get_errored(&self) -> &Option<bool>
pub fn get_errored(&self) -> &Option<bool>
Indicates whether there were validation errors.
sourcepub fn build(self) -> ValidatePipelineDefinitionOutput
pub fn build(self) -> ValidatePipelineDefinitionOutput
Consumes the builder and constructs a ValidatePipelineDefinitionOutput
.
Trait Implementations§
source§impl Clone for ValidatePipelineDefinitionOutputBuilder
impl Clone for ValidatePipelineDefinitionOutputBuilder
source§fn clone(&self) -> ValidatePipelineDefinitionOutputBuilder
fn clone(&self) -> ValidatePipelineDefinitionOutputBuilder
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 Default for ValidatePipelineDefinitionOutputBuilder
impl Default for ValidatePipelineDefinitionOutputBuilder
source§fn default() -> ValidatePipelineDefinitionOutputBuilder
fn default() -> ValidatePipelineDefinitionOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ValidatePipelineDefinitionOutputBuilder
impl PartialEq for ValidatePipelineDefinitionOutputBuilder
source§fn eq(&self, other: &ValidatePipelineDefinitionOutputBuilder) -> bool
fn eq(&self, other: &ValidatePipelineDefinitionOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ValidatePipelineDefinitionOutputBuilder
Auto Trait Implementations§
impl Freeze for ValidatePipelineDefinitionOutputBuilder
impl RefUnwindSafe for ValidatePipelineDefinitionOutputBuilder
impl Send for ValidatePipelineDefinitionOutputBuilder
impl Sync for ValidatePipelineDefinitionOutputBuilder
impl Unpin for ValidatePipelineDefinitionOutputBuilder
impl UnwindSafe for ValidatePipelineDefinitionOutputBuilder
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
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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.