Struct aws_sdk_iot::operation::create_provisioning_template::CreateProvisioningTemplateOutput
source · #[non_exhaustive]pub struct CreateProvisioningTemplateOutput {
pub template_arn: Option<String>,
pub template_name: Option<String>,
pub default_version_id: Option<i32>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.template_arn: Option<String>
The ARN that identifies the provisioning template.
template_name: Option<String>
The name of the provisioning template.
default_version_id: Option<i32>
The default version of the provisioning template.
Implementations§
source§impl CreateProvisioningTemplateOutput
impl CreateProvisioningTemplateOutput
sourcepub fn template_arn(&self) -> Option<&str>
pub fn template_arn(&self) -> Option<&str>
The ARN that identifies the provisioning template.
sourcepub fn template_name(&self) -> Option<&str>
pub fn template_name(&self) -> Option<&str>
The name of the provisioning template.
sourcepub fn default_version_id(&self) -> Option<i32>
pub fn default_version_id(&self) -> Option<i32>
The default version of the provisioning template.
source§impl CreateProvisioningTemplateOutput
impl CreateProvisioningTemplateOutput
sourcepub fn builder() -> CreateProvisioningTemplateOutputBuilder
pub fn builder() -> CreateProvisioningTemplateOutputBuilder
Creates a new builder-style object to manufacture CreateProvisioningTemplateOutput
.
Trait Implementations§
source§impl Clone for CreateProvisioningTemplateOutput
impl Clone for CreateProvisioningTemplateOutput
source§fn clone(&self) -> CreateProvisioningTemplateOutput
fn clone(&self) -> CreateProvisioningTemplateOutput
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 PartialEq for CreateProvisioningTemplateOutput
impl PartialEq for CreateProvisioningTemplateOutput
source§fn eq(&self, other: &CreateProvisioningTemplateOutput) -> bool
fn eq(&self, other: &CreateProvisioningTemplateOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateProvisioningTemplateOutput
impl RequestId for CreateProvisioningTemplateOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for CreateProvisioningTemplateOutput
Auto Trait Implementations§
impl Freeze for CreateProvisioningTemplateOutput
impl RefUnwindSafe for CreateProvisioningTemplateOutput
impl Send for CreateProvisioningTemplateOutput
impl Sync for CreateProvisioningTemplateOutput
impl Unpin for CreateProvisioningTemplateOutput
impl UnwindSafe for CreateProvisioningTemplateOutput
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.