pub struct Builder { /* private fields */ }
Expand description
A builder for SageMakerPipelineParameter
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
Name of parameter to start execution of a SageMaker Model Building Pipeline.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
Name of parameter to start execution of a SageMaker Model Building Pipeline.
sourcepub fn value(self, input: impl Into<String>) -> Self
pub fn value(self, input: impl Into<String>) -> Self
Value of parameter to start execution of a SageMaker Model Building Pipeline.
sourcepub fn set_value(self, input: Option<String>) -> Self
pub fn set_value(self, input: Option<String>) -> Self
Value of parameter to start execution of a SageMaker Model Building Pipeline.
sourcepub fn build(self) -> SageMakerPipelineParameter
pub fn build(self) -> SageMakerPipelineParameter
Consumes the builder and constructs a SageMakerPipelineParameter
.