Struct aws_sdk_datapipeline::input::PutPipelineDefinitionInput [−][src]
#[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
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. 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
pub fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutPipelineDefinition, AwsErrorRetryPolicy>, BuildError>
pub fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutPipelineDefinition, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<PutPipelineDefinition
>
Creates a new builder-style object to manufacture PutPipelineDefinitionInput
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 PutPipelineDefinitionInput
impl Send for PutPipelineDefinitionInput
impl Sync for PutPipelineDefinitionInput
impl Unpin for PutPipelineDefinitionInput
impl UnwindSafe for PutPipelineDefinitionInput
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