[−][src]Struct rusoto_ssm::DocumentVersionInfo
Version information about the document.
Fields
created_date: Option<f64>
The date the document was created.
document_format: Option<String>
The document format, either JSON or YAML.
document_version: Option<String>
The document version.
is_default_version: Option<bool>
An identifier for the default version of the document.
name: Option<String>
The document name.
status: Option<String>
The status of the Systems Manager document, such as Creating
, Active
, Failed
, and Deleting
.
status_information: Option<String>
A message returned by AWS Systems Manager that explains the Status
value. For example, a Failed
status might be explained by the StatusInformation
message, "The specified S3 bucket does not exist. Verify that the URL of the S3 bucket is correct."
version_name: Option<String>
The version of the artifact associated with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document, and cannot be changed.
Trait Implementations
impl PartialEq<DocumentVersionInfo> for DocumentVersionInfo
[src]
fn eq(&self, other: &DocumentVersionInfo) -> bool
[src]
fn ne(&self, other: &DocumentVersionInfo) -> bool
[src]
impl Default for DocumentVersionInfo
[src]
fn default() -> DocumentVersionInfo
[src]
impl Clone for DocumentVersionInfo
[src]
fn clone(&self) -> DocumentVersionInfo
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for DocumentVersionInfo
[src]
impl<'de> Deserialize<'de> for DocumentVersionInfo
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for DocumentVersionInfo
impl Sync for DocumentVersionInfo
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self