Struct aws_sdk_datapipeline::operation::validate_pipeline_definition::ValidatePipelineDefinitionInput
source · #[non_exhaustive]pub struct ValidatePipelineDefinitionInput {
pub pipeline_id: Option<String>,
pub pipeline_objects: Option<Vec<PipelineObject>>,
pub parameter_objects: Option<Vec<ParameterObject>>,
pub parameter_values: Option<Vec<ParameterValue>>,
}
Expand description
Contains the parameters for ValidatePipelineDefinition.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.pipeline_id: Option<String>
The ID of the pipeline.
pipeline_objects: Option<Vec<PipelineObject>>
The objects that define the pipeline changes to validate against the pipeline.
parameter_objects: Option<Vec<ParameterObject>>
The parameter objects used with the pipeline.
parameter_values: Option<Vec<ParameterValue>>
The parameter values used with the pipeline.
Implementations§
source§impl ValidatePipelineDefinitionInput
impl ValidatePipelineDefinitionInput
sourcepub fn pipeline_id(&self) -> Option<&str>
pub fn pipeline_id(&self) -> Option<&str>
The ID of the pipeline.
sourcepub fn pipeline_objects(&self) -> Option<&[PipelineObject]>
pub fn pipeline_objects(&self) -> Option<&[PipelineObject]>
The objects that define the pipeline changes to validate against the pipeline.
sourcepub fn parameter_objects(&self) -> Option<&[ParameterObject]>
pub fn parameter_objects(&self) -> Option<&[ParameterObject]>
The parameter objects used with the pipeline.
sourcepub fn parameter_values(&self) -> Option<&[ParameterValue]>
pub fn parameter_values(&self) -> Option<&[ParameterValue]>
The parameter values used with the pipeline.
source§impl ValidatePipelineDefinitionInput
impl ValidatePipelineDefinitionInput
sourcepub fn builder() -> ValidatePipelineDefinitionInputBuilder
pub fn builder() -> ValidatePipelineDefinitionInputBuilder
Creates a new builder-style object to manufacture ValidatePipelineDefinitionInput
.
Trait Implementations§
source§impl Clone for ValidatePipelineDefinitionInput
impl Clone for ValidatePipelineDefinitionInput
source§fn clone(&self) -> ValidatePipelineDefinitionInput
fn clone(&self) -> ValidatePipelineDefinitionInput
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 PartialEq<ValidatePipelineDefinitionInput> for ValidatePipelineDefinitionInput
impl PartialEq<ValidatePipelineDefinitionInput> for ValidatePipelineDefinitionInput
source§fn eq(&self, other: &ValidatePipelineDefinitionInput) -> bool
fn eq(&self, other: &ValidatePipelineDefinitionInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ValidatePipelineDefinitionInput
Auto Trait Implementations§
impl RefUnwindSafe for ValidatePipelineDefinitionInput
impl Send for ValidatePipelineDefinitionInput
impl Sync for ValidatePipelineDefinitionInput
impl Unpin for ValidatePipelineDefinitionInput
impl UnwindSafe for ValidatePipelineDefinitionInput
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