pub struct GetCloudFormationTemplateResponse {
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 GetCloudFormationTemplateResponse
impl Clone for GetCloudFormationTemplateResponse
Source§fn clone(&self) -> GetCloudFormationTemplateResponse
fn clone(&self) -> GetCloudFormationTemplateResponse
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 GetCloudFormationTemplateResponse
impl Default for GetCloudFormationTemplateResponse
Source§fn default() -> GetCloudFormationTemplateResponse
fn default() -> GetCloudFormationTemplateResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetCloudFormationTemplateResponse
impl<'de> Deserialize<'de> for GetCloudFormationTemplateResponse
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 GetCloudFormationTemplateResponse
impl PartialEq for GetCloudFormationTemplateResponse
Source§fn eq(&self, other: &GetCloudFormationTemplateResponse) -> bool
fn eq(&self, other: &GetCloudFormationTemplateResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetCloudFormationTemplateResponse
Auto Trait Implementations§
impl Freeze for GetCloudFormationTemplateResponse
impl RefUnwindSafe for GetCloudFormationTemplateResponse
impl Send for GetCloudFormationTemplateResponse
impl Sync for GetCloudFormationTemplateResponse
impl Unpin for GetCloudFormationTemplateResponse
impl UnwindSafe for GetCloudFormationTemplateResponse
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