Struct aws_sdk_datapipeline::operation::validate_pipeline_definition::builders::ValidatePipelineDefinitionInputBuilder
source · #[non_exhaustive]pub struct ValidatePipelineDefinitionInputBuilder { /* private fields */ }
Expand description
A builder for ValidatePipelineDefinitionInput
.
Implementations§
source§impl ValidatePipelineDefinitionInputBuilder
impl ValidatePipelineDefinitionInputBuilder
sourcepub fn pipeline_id(self, input: impl Into<String>) -> Self
pub fn pipeline_id(self, input: impl Into<String>) -> Self
The ID of the pipeline.
This field is required.sourcepub fn set_pipeline_id(self, input: Option<String>) -> Self
pub fn set_pipeline_id(self, input: Option<String>) -> Self
The ID of the pipeline.
sourcepub fn get_pipeline_id(&self) -> &Option<String>
pub fn get_pipeline_id(&self) -> &Option<String>
The ID of the pipeline.
sourcepub fn pipeline_objects(self, input: PipelineObject) -> Self
pub fn pipeline_objects(self, input: PipelineObject) -> Self
Appends an item to pipeline_objects
.
To override the contents of this collection use set_pipeline_objects
.
The objects that define the pipeline changes to validate against the pipeline.
sourcepub fn set_pipeline_objects(self, input: Option<Vec<PipelineObject>>) -> Self
pub fn set_pipeline_objects(self, input: Option<Vec<PipelineObject>>) -> Self
The objects that define the pipeline changes to validate against the pipeline.
sourcepub fn get_pipeline_objects(&self) -> &Option<Vec<PipelineObject>>
pub fn get_pipeline_objects(&self) -> &Option<Vec<PipelineObject>>
The objects that define the pipeline changes to validate against the pipeline.
sourcepub fn parameter_objects(self, input: ParameterObject) -> Self
pub fn parameter_objects(self, input: ParameterObject) -> Self
Appends an item to parameter_objects
.
To override the contents of this collection use set_parameter_objects
.
The parameter objects used with the pipeline.
sourcepub fn set_parameter_objects(self, input: Option<Vec<ParameterObject>>) -> Self
pub fn set_parameter_objects(self, input: Option<Vec<ParameterObject>>) -> Self
The parameter objects used with the pipeline.
sourcepub fn get_parameter_objects(&self) -> &Option<Vec<ParameterObject>>
pub fn get_parameter_objects(&self) -> &Option<Vec<ParameterObject>>
The parameter objects used with the pipeline.
sourcepub fn parameter_values(self, input: ParameterValue) -> Self
pub fn parameter_values(self, input: ParameterValue) -> Self
Appends an item to parameter_values
.
To override the contents of this collection use set_parameter_values
.
The parameter values used with the pipeline.
sourcepub fn set_parameter_values(self, input: Option<Vec<ParameterValue>>) -> Self
pub fn set_parameter_values(self, input: Option<Vec<ParameterValue>>) -> Self
The parameter values used with the pipeline.
sourcepub fn get_parameter_values(&self) -> &Option<Vec<ParameterValue>>
pub fn get_parameter_values(&self) -> &Option<Vec<ParameterValue>>
The parameter values used with the pipeline.
sourcepub fn build(self) -> Result<ValidatePipelineDefinitionInput, BuildError>
pub fn build(self) -> Result<ValidatePipelineDefinitionInput, BuildError>
Consumes the builder and constructs a ValidatePipelineDefinitionInput
.
source§impl ValidatePipelineDefinitionInputBuilder
impl ValidatePipelineDefinitionInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ValidatePipelineDefinitionOutput, SdkError<ValidatePipelineDefinitionError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ValidatePipelineDefinitionOutput, SdkError<ValidatePipelineDefinitionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ValidatePipelineDefinitionInputBuilder
impl Clone for ValidatePipelineDefinitionInputBuilder
source§fn clone(&self) -> ValidatePipelineDefinitionInputBuilder
fn clone(&self) -> ValidatePipelineDefinitionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ValidatePipelineDefinitionInputBuilder
impl Default for ValidatePipelineDefinitionInputBuilder
source§fn default() -> ValidatePipelineDefinitionInputBuilder
fn default() -> ValidatePipelineDefinitionInputBuilder
source§impl PartialEq for ValidatePipelineDefinitionInputBuilder
impl PartialEq for ValidatePipelineDefinitionInputBuilder
source§fn eq(&self, other: &ValidatePipelineDefinitionInputBuilder) -> bool
fn eq(&self, other: &ValidatePipelineDefinitionInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ValidatePipelineDefinitionInputBuilder
Auto Trait Implementations§
impl Freeze for ValidatePipelineDefinitionInputBuilder
impl RefUnwindSafe for ValidatePipelineDefinitionInputBuilder
impl Send for ValidatePipelineDefinitionInputBuilder
impl Sync for ValidatePipelineDefinitionInputBuilder
impl Unpin for ValidatePipelineDefinitionInputBuilder
impl UnwindSafe for ValidatePipelineDefinitionInputBuilder
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