Struct rusoto_ssm::UpdateDocumentRequest[][src]

pub struct UpdateDocumentRequest {
    pub content: String,
    pub document_format: Option<String>,
    pub document_version: Option<String>,
    pub name: String,
    pub target_type: Option<String>,
}

Fields

The content in a document that you want to update.

Specify the document format for the new document version. Systems Manager supports JSON and YAML documents. JSON is the default format.

The version of the document that you want to update.

The name of the document that you want to update.

Specify a new target type for the document.

Trait Implementations

impl Default for UpdateDocumentRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateDocumentRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateDocumentRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateDocumentRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations