Struct aws_sdk_iot::operation::describe_provisioning_template_version::builders::DescribeProvisioningTemplateVersionOutputBuilder
source · #[non_exhaustive]pub struct DescribeProvisioningTemplateVersionOutputBuilder { /* private fields */ }Expand description
A builder for DescribeProvisioningTemplateVersionOutput.
Implementations§
source§impl DescribeProvisioningTemplateVersionOutputBuilder
impl DescribeProvisioningTemplateVersionOutputBuilder
sourcepub fn version_id(self, input: i32) -> Self
pub fn version_id(self, input: i32) -> Self
The provisioning template version ID.
sourcepub fn set_version_id(self, input: Option<i32>) -> Self
pub fn set_version_id(self, input: Option<i32>) -> Self
The provisioning template version ID.
sourcepub fn get_version_id(&self) -> &Option<i32>
pub fn get_version_id(&self) -> &Option<i32>
The provisioning template version ID.
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 template_body(self, input: impl Into<String>) -> Self
pub fn template_body(self, input: impl Into<String>) -> Self
The JSON formatted contents of the provisioning template version.
sourcepub fn set_template_body(self, input: Option<String>) -> Self
pub fn set_template_body(self, input: Option<String>) -> Self
The JSON formatted contents of the provisioning template version.
sourcepub fn get_template_body(&self) -> &Option<String>
pub fn get_template_body(&self) -> &Option<String>
The JSON formatted contents of the provisioning template version.
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.
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.
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.
sourcepub fn build(self) -> DescribeProvisioningTemplateVersionOutput
pub fn build(self) -> DescribeProvisioningTemplateVersionOutput
Consumes the builder and constructs a DescribeProvisioningTemplateVersionOutput.
Trait Implementations§
source§impl Clone for DescribeProvisioningTemplateVersionOutputBuilder
impl Clone for DescribeProvisioningTemplateVersionOutputBuilder
source§fn clone(&self) -> DescribeProvisioningTemplateVersionOutputBuilder
fn clone(&self) -> DescribeProvisioningTemplateVersionOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeProvisioningTemplateVersionOutputBuilder
impl Default for DescribeProvisioningTemplateVersionOutputBuilder
source§fn default() -> DescribeProvisioningTemplateVersionOutputBuilder
fn default() -> DescribeProvisioningTemplateVersionOutputBuilder
source§impl PartialEq for DescribeProvisioningTemplateVersionOutputBuilder
impl PartialEq for DescribeProvisioningTemplateVersionOutputBuilder
source§fn eq(&self, other: &DescribeProvisioningTemplateVersionOutputBuilder) -> bool
fn eq(&self, other: &DescribeProvisioningTemplateVersionOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeProvisioningTemplateVersionOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeProvisioningTemplateVersionOutputBuilder
impl RefUnwindSafe for DescribeProvisioningTemplateVersionOutputBuilder
impl Send for DescribeProvisioningTemplateVersionOutputBuilder
impl Sync for DescribeProvisioningTemplateVersionOutputBuilder
impl Unpin for DescribeProvisioningTemplateVersionOutputBuilder
impl UnwindSafe for DescribeProvisioningTemplateVersionOutputBuilder
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
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)
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>
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>
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 more