pub struct CreateProvisioningTemplateVersionResponse {
pub is_default_version: Option<bool>,
pub template_arn: Option<String>,
pub template_name: Option<String>,
pub version_id: Option<i64>,
}Fields§
§is_default_version: Option<bool>True if the fleet provisioning template version is the default version, otherwise false.
template_arn: Option<String>The ARN that identifies the provisioning template.
template_name: Option<String>The name of the fleet provisioning template.
version_id: Option<i64>The version of the fleet provisioning template.
Trait Implementations§
Source§impl Clone for CreateProvisioningTemplateVersionResponse
impl Clone for CreateProvisioningTemplateVersionResponse
Source§fn clone(&self) -> CreateProvisioningTemplateVersionResponse
fn clone(&self) -> CreateProvisioningTemplateVersionResponse
Returns a duplicate 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 CreateProvisioningTemplateVersionResponse
impl Default for CreateProvisioningTemplateVersionResponse
Source§fn default() -> CreateProvisioningTemplateVersionResponse
fn default() -> CreateProvisioningTemplateVersionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateProvisioningTemplateVersionResponse
impl<'de> Deserialize<'de> for CreateProvisioningTemplateVersionResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CreateProvisioningTemplateVersionResponse
impl PartialEq for CreateProvisioningTemplateVersionResponse
Source§fn eq(&self, other: &CreateProvisioningTemplateVersionResponse) -> bool
fn eq(&self, other: &CreateProvisioningTemplateVersionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateProvisioningTemplateVersionResponse
Auto Trait Implementations§
impl Freeze for CreateProvisioningTemplateVersionResponse
impl RefUnwindSafe for CreateProvisioningTemplateVersionResponse
impl Send for CreateProvisioningTemplateVersionResponse
impl Sync for CreateProvisioningTemplateVersionResponse
impl Unpin for CreateProvisioningTemplateVersionResponse
impl UnwindSafe for CreateProvisioningTemplateVersionResponse
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