pub struct Builder { /* private fields */ }
Expand description
A builder for DeleteRecipeVersionInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn recipe_version(self, input: impl Into<String>) -> Self
pub fn recipe_version(self, input: impl Into<String>) -> Self
The version of the recipe to be deleted. You can specify a numeric versions (X.Y
) or LATEST_WORKING
. LATEST_PUBLISHED
is not supported.
sourcepub fn set_recipe_version(self, input: Option<String>) -> Self
pub fn set_recipe_version(self, input: Option<String>) -> Self
The version of the recipe to be deleted. You can specify a numeric versions (X.Y
) or LATEST_WORKING
. LATEST_PUBLISHED
is not supported.
sourcepub fn build(self) -> Result<DeleteRecipeVersionInput, BuildError>
pub fn build(self) -> Result<DeleteRecipeVersionInput, BuildError>
Consumes the builder and constructs a DeleteRecipeVersionInput
.