[][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 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, etc.

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.

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 PartialEq<GetDocumentResult> for GetDocumentResult[src]

impl Default for GetDocumentResult[src]

impl Clone for GetDocumentResult[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for GetDocumentResult[src]

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

Auto Trait Implementations

impl Send for GetDocumentResult

impl Sync for GetDocumentResult

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self