#[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
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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ValidatePipelineDefinition, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ValidatePipelineDefinition, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ValidatePipelineDefinition
>
Creates a new builder-style object to manufacture ValidatePipelineDefinitionInput
The ID of the pipeline.
The objects that define the pipeline changes to validate against the pipeline.
The parameter objects used with the pipeline.
The parameter values used with the pipeline.
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 Send for ValidatePipelineDefinitionInput
impl Sync for ValidatePipelineDefinitionInput
impl Unpin for ValidatePipelineDefinitionInput
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