[][src]Struct rusoto_ssm::GetDocumentResult

pub struct GetDocumentResult {
    pub attachments_content: Option<Vec<AttachmentContent>>,
    pub content: Option<String>,
    pub document_format: Option<String>,
    pub document_type: Option<String>,
    pub document_version: Option<String>,
    pub name: Option<String>,
    pub requires: Option<Vec<DocumentRequires>>,
    pub status: Option<String>,
    pub status_information: Option<String>,
    pub version_name: Option<String>,
}

Fields

attachments_content: Option<Vec<AttachmentContent>>

A description of the document attachments, including names, locations, sizes, and so on.

content: Option<String>

The contents of the Systems Manager document.

document_format: Option<String>

The document format, either JSON or YAML.

document_type: Option<String>

The document type.

document_version: Option<String>

The document version.

name: Option<String>

The name of the Systems Manager document.

requires: Option<Vec<DocumentRequires>>

A list of SSM documents required by a document. For example, an ApplicationConfiguration document requires an ApplicationConfigurationSchema document.

status: Option<String>

The status of the Systems Manager document, such as Creating, Active, Updating, 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 GetDocumentResult[src]

impl Debug for GetDocumentResult[src]

impl Default for GetDocumentResult[src]

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

impl PartialEq<GetDocumentResult> for GetDocumentResult[src]

impl StructuralPartialEq for GetDocumentResult[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.