pub struct Builder { /* private fields */ }
Expand description
A builder for DeactivatePipelineInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn pipeline_id(self, input: impl Into<String>) -> Self
pub fn pipeline_id(self, input: impl Into<String>) -> Self
The ID of the pipeline.
sourcepub fn set_pipeline_id(self, input: Option<String>) -> Self
pub fn set_pipeline_id(self, input: Option<String>) -> Self
The ID of the pipeline.
sourcepub fn cancel_active(self, input: bool) -> Self
pub fn cancel_active(self, input: bool) -> Self
Indicates whether to cancel any running objects. The default is true, which sets the state of any running objects to CANCELED
. If this value is false, the pipeline is deactivated after all running objects finish.
sourcepub fn set_cancel_active(self, input: Option<bool>) -> Self
pub fn set_cancel_active(self, input: Option<bool>) -> Self
Indicates whether to cancel any running objects. The default is true, which sets the state of any running objects to CANCELED
. If this value is false, the pipeline is deactivated after all running objects finish.
sourcepub fn build(self) -> Result<DeactivatePipelineInput, BuildError>
pub fn build(self) -> Result<DeactivatePipelineInput, BuildError>
Consumes the builder and constructs a DeactivatePipelineInput
.