#[non_exhaustive]pub struct CompatibleEnvironmentTemplateInputBuilder { /* private fields */ }
Expand description
A builder for CompatibleEnvironmentTemplateInput
.
Implementations§
source§impl CompatibleEnvironmentTemplateInputBuilder
impl CompatibleEnvironmentTemplateInputBuilder
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.
This field is required.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 get_template_name(&self) -> &Option<String>
pub fn get_template_name(&self) -> &Option<String>
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.
This field is required.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 get_major_version(&self) -> &Option<String>
pub fn get_major_version(&self) -> &Option<String>
The major version of the compatible environment template.
sourcepub fn build(self) -> Result<CompatibleEnvironmentTemplateInput, BuildError>
pub fn build(self) -> Result<CompatibleEnvironmentTemplateInput, BuildError>
Consumes the builder and constructs a CompatibleEnvironmentTemplateInput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for CompatibleEnvironmentTemplateInputBuilder
impl Clone for CompatibleEnvironmentTemplateInputBuilder
source§fn clone(&self) -> CompatibleEnvironmentTemplateInputBuilder
fn clone(&self) -> CompatibleEnvironmentTemplateInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for CompatibleEnvironmentTemplateInputBuilder
impl Default for CompatibleEnvironmentTemplateInputBuilder
source§fn default() -> CompatibleEnvironmentTemplateInputBuilder
fn default() -> CompatibleEnvironmentTemplateInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CompatibleEnvironmentTemplateInputBuilder
impl PartialEq for CompatibleEnvironmentTemplateInputBuilder
source§fn eq(&self, other: &CompatibleEnvironmentTemplateInputBuilder) -> bool
fn eq(&self, other: &CompatibleEnvironmentTemplateInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CompatibleEnvironmentTemplateInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for CompatibleEnvironmentTemplateInputBuilder
impl Send for CompatibleEnvironmentTemplateInputBuilder
impl Sync for CompatibleEnvironmentTemplateInputBuilder
impl Unpin for CompatibleEnvironmentTemplateInputBuilder
impl UnwindSafe for CompatibleEnvironmentTemplateInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.