#[non_exhaustive]pub struct PutPipelineDefinitionInput {
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 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.pipeline_id: Option<String>The ID of the pipeline.
pipeline_objects: Option<Vec<PipelineObject>>The objects that define the pipeline. These objects overwrite the existing pipeline definition.
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 PutPipelineDefinitionInput
impl PutPipelineDefinitionInput
sourcepub fn pipeline_id(&self) -> Option<&str>
pub fn pipeline_id(&self) -> Option<&str>
The ID of the pipeline.
sourcepub fn pipeline_objects(&self) -> &[PipelineObject]
pub fn pipeline_objects(&self) -> &[PipelineObject]
The objects that define the pipeline. These objects overwrite the existing pipeline definition.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .pipeline_objects.is_none().
sourcepub fn parameter_objects(&self) -> &[ParameterObject]
pub fn parameter_objects(&self) -> &[ParameterObject]
The parameter objects used with the pipeline.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .parameter_objects.is_none().
sourcepub fn parameter_values(&self) -> &[ParameterValue]
pub fn parameter_values(&self) -> &[ParameterValue]
The parameter values used with the pipeline.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .parameter_values.is_none().
source§impl PutPipelineDefinitionInput
impl PutPipelineDefinitionInput
sourcepub fn builder() -> PutPipelineDefinitionInputBuilder
pub fn builder() -> PutPipelineDefinitionInputBuilder
Creates a new builder-style object to manufacture PutPipelineDefinitionInput.
Trait Implementations§
source§impl Clone for PutPipelineDefinitionInput
impl Clone for PutPipelineDefinitionInput
source§fn clone(&self) -> PutPipelineDefinitionInput
fn clone(&self) -> PutPipelineDefinitionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for PutPipelineDefinitionInput
impl Debug for PutPipelineDefinitionInput
source§impl PartialEq for PutPipelineDefinitionInput
impl PartialEq for PutPipelineDefinitionInput
source§fn eq(&self, other: &PutPipelineDefinitionInput) -> bool
fn eq(&self, other: &PutPipelineDefinitionInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PutPipelineDefinitionInput
Auto Trait Implementations§
impl Freeze for PutPipelineDefinitionInput
impl RefUnwindSafe for PutPipelineDefinitionInput
impl Send for PutPipelineDefinitionInput
impl Sync for PutPipelineDefinitionInput
impl Unpin for PutPipelineDefinitionInput
impl UnwindSafe for PutPipelineDefinitionInput
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> 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