[][src]Struct rusoto_ssm::DocumentVersionInfo

pub struct DocumentVersionInfo {
    pub created_date: Option<f64>,
    pub document_format: Option<String>,
    pub document_version: Option<String>,
    pub is_default_version: Option<bool>,
    pub name: Option<String>,
    pub status: Option<String>,
    pub status_information: Option<String>,
    pub version_name: Option<String>,
}

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 Clone for DocumentVersionInfo[src]

impl Debug for DocumentVersionInfo[src]

impl Default for DocumentVersionInfo[src]

impl<'de> Deserialize<'de> for DocumentVersionInfo[src]

impl PartialEq<DocumentVersionInfo> for DocumentVersionInfo[src]

impl StructuralPartialEq for DocumentVersionInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.