#[non_exhaustive]pub struct ProvisioningTemplateVersionSummaryBuilder { /* private fields */ }
Expand description
A builder for ProvisioningTemplateVersionSummary
.
Implementations§
source§impl ProvisioningTemplateVersionSummaryBuilder
impl ProvisioningTemplateVersionSummaryBuilder
sourcepub fn version_id(self, input: i32) -> Self
pub fn version_id(self, input: i32) -> Self
The ID of the fleet provisioning template version.
sourcepub fn set_version_id(self, input: Option<i32>) -> Self
pub fn set_version_id(self, input: Option<i32>) -> Self
The ID of the fleet provisioning template version.
sourcepub fn get_version_id(&self) -> &Option<i32>
pub fn get_version_id(&self) -> &Option<i32>
The ID of the fleet provisioning template version.
sourcepub fn creation_date(self, input: DateTime) -> Self
pub fn creation_date(self, input: DateTime) -> Self
The date when the provisioning template version was created
sourcepub fn set_creation_date(self, input: Option<DateTime>) -> Self
pub fn set_creation_date(self, input: Option<DateTime>) -> Self
The date when the provisioning template version was created
sourcepub fn get_creation_date(&self) -> &Option<DateTime>
pub fn get_creation_date(&self) -> &Option<DateTime>
The date when the provisioning template version was created
sourcepub fn is_default_version(self, input: bool) -> Self
pub fn is_default_version(self, input: bool) -> Self
True if the provisioning template version is the default version, otherwise false.
sourcepub fn set_is_default_version(self, input: Option<bool>) -> Self
pub fn set_is_default_version(self, input: Option<bool>) -> Self
True if the provisioning template version is the default version, otherwise false.
sourcepub fn get_is_default_version(&self) -> &Option<bool>
pub fn get_is_default_version(&self) -> &Option<bool>
True if the provisioning template version is the default version, otherwise false.
sourcepub fn build(self) -> ProvisioningTemplateVersionSummary
pub fn build(self) -> ProvisioningTemplateVersionSummary
Consumes the builder and constructs a ProvisioningTemplateVersionSummary
.
Trait Implementations§
source§impl Clone for ProvisioningTemplateVersionSummaryBuilder
impl Clone for ProvisioningTemplateVersionSummaryBuilder
source§fn clone(&self) -> ProvisioningTemplateVersionSummaryBuilder
fn clone(&self) -> ProvisioningTemplateVersionSummaryBuilder
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 ProvisioningTemplateVersionSummaryBuilder
impl Default for ProvisioningTemplateVersionSummaryBuilder
source§fn default() -> ProvisioningTemplateVersionSummaryBuilder
fn default() -> ProvisioningTemplateVersionSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ProvisioningTemplateVersionSummaryBuilder
impl PartialEq for ProvisioningTemplateVersionSummaryBuilder
source§fn eq(&self, other: &ProvisioningTemplateVersionSummaryBuilder) -> bool
fn eq(&self, other: &ProvisioningTemplateVersionSummaryBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ProvisioningTemplateVersionSummaryBuilder
Auto Trait Implementations§
impl Freeze for ProvisioningTemplateVersionSummaryBuilder
impl RefUnwindSafe for ProvisioningTemplateVersionSummaryBuilder
impl Send for ProvisioningTemplateVersionSummaryBuilder
impl Sync for ProvisioningTemplateVersionSummaryBuilder
impl Unpin for ProvisioningTemplateVersionSummaryBuilder
impl UnwindSafe for ProvisioningTemplateVersionSummaryBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.