#[non_exhaustive]pub struct GetPipelineDefinitionOutput {
pub pipeline_objects: Option<Vec<PipelineObject>>,
pub parameter_objects: Option<Vec<ParameterObject>>,
pub parameter_values: Option<Vec<ParameterValue>>,
}
Expand description
Contains the output of GetPipelineDefinition.
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_objects: Option<Vec<PipelineObject>>
The objects defined in the pipeline.
parameter_objects: Option<Vec<ParameterObject>>
The parameter objects used in the pipeline definition.
parameter_values: Option<Vec<ParameterValue>>
The parameter values used in the pipeline definition.
Implementations
The objects defined in the pipeline.
The parameter objects used in the pipeline definition.
The parameter values used in the pipeline definition.
Creates a new builder-style object to manufacture GetPipelineDefinitionOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for GetPipelineDefinitionOutput
impl Send for GetPipelineDefinitionOutput
impl Sync for GetPipelineDefinitionOutput
impl Unpin for GetPipelineDefinitionOutput
impl UnwindSafe for GetPipelineDefinitionOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more