pub struct CreateCloudFormationTemplateResponse {
pub application_id: Option<String>,
pub creation_time: Option<String>,
pub expiration_time: Option<String>,
pub semantic_version: Option<String>,
pub status: Option<String>,
pub template_id: Option<String>,
pub template_url: Option<String>,
}Fields§
§application_id: Option<String>The application Amazon Resource Name (ARN).
creation_time: Option<String>The date and time this resource was created.
expiration_time: Option<String>The date and time this template expires. Templates expire 1 hour after creation.
semantic_version: Option<String>The semantic version of the application:
status: Option<String>Status of the template creation workflow.
Possible values: PREPARING | ACTIVE | EXPIRED
template_id: Option<String>The UUID returned by CreateCloudFormationTemplate.
Pattern: [0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}
template_url: Option<String>A link to the template that can be used to deploy the application using AWS CloudFormation.
Trait Implementations§
Source§impl Clone for CreateCloudFormationTemplateResponse
impl Clone for CreateCloudFormationTemplateResponse
Source§fn clone(&self) -> CreateCloudFormationTemplateResponse
fn clone(&self) -> CreateCloudFormationTemplateResponse
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 CreateCloudFormationTemplateResponse
impl Default for CreateCloudFormationTemplateResponse
Source§fn default() -> CreateCloudFormationTemplateResponse
fn default() -> CreateCloudFormationTemplateResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateCloudFormationTemplateResponse
impl<'de> Deserialize<'de> for CreateCloudFormationTemplateResponse
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 CreateCloudFormationTemplateResponse
impl PartialEq for CreateCloudFormationTemplateResponse
Source§fn eq(&self, other: &CreateCloudFormationTemplateResponse) -> bool
fn eq(&self, other: &CreateCloudFormationTemplateResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateCloudFormationTemplateResponse
Auto Trait Implementations§
impl Freeze for CreateCloudFormationTemplateResponse
impl RefUnwindSafe for CreateCloudFormationTemplateResponse
impl Send for CreateCloudFormationTemplateResponse
impl Sync for CreateCloudFormationTemplateResponse
impl Unpin for CreateCloudFormationTemplateResponse
impl UnwindSafe for CreateCloudFormationTemplateResponse
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