pub struct Builder { /* private fields */ }
Expand description
A builder for CompatibleEnvironmentTemplate
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn template_name(self, input: impl Into<String>) -> Self
pub fn template_name(self, input: impl Into<String>) -> Self
The compatible environment template name.
sourcepub fn set_template_name(self, input: Option<String>) -> Self
pub fn set_template_name(self, input: Option<String>) -> Self
The compatible environment template name.
sourcepub fn major_version(self, input: impl Into<String>) -> Self
pub fn major_version(self, input: impl Into<String>) -> Self
The major version of the compatible environment template.
sourcepub fn set_major_version(self, input: Option<String>) -> Self
pub fn set_major_version(self, input: Option<String>) -> Self
The major version of the compatible environment template.
sourcepub fn build(self) -> CompatibleEnvironmentTemplate
pub fn build(self) -> CompatibleEnvironmentTemplate
Consumes the builder and constructs a CompatibleEnvironmentTemplate
.