Struct aws_sdk_ssm::input::UpdateDocumentInput
source · [−]#[non_exhaustive]pub struct UpdateDocumentInput {
pub content: Option<String>,
pub attachments: Option<Vec<AttachmentsSource>>,
pub name: Option<String>,
pub display_name: Option<String>,
pub version_name: Option<String>,
pub document_version: Option<String>,
pub document_format: Option<DocumentFormat>,
pub target_type: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.content: Option<String>
A valid JSON or YAML string.
attachments: Option<Vec<AttachmentsSource>>
A list of key-value pairs that describe attachments to a version of a document.
name: Option<String>
The name of the SSM document that you want to update.
display_name: Option<String>
The friendly name of the SSM document that you want to update. This value can differ for each version of the document. If you don't specify a value for this parameter in your request, the existing value is applied to the new document version.
version_name: Option<String>
An optional field specifying the version of the artifact you are updating with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document, and can't be changed.
document_version: Option<String>
The version of the document that you want to update. Currently, Systems Manager supports updating only the latest version of the document. You can specify the version number of the latest version or use the $LATEST
variable.
document_format: Option<DocumentFormat>
Specify the document format for the new document version. Systems Manager supports JSON and YAML documents. JSON is the default format.
target_type: Option<String>
Specify a new target type for the document.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateDocument, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateDocument, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateDocument
>
Creates a new builder-style object to manufacture UpdateDocumentInput
A list of key-value pairs that describe attachments to a version of a document.
The friendly name of the SSM document that you want to update. This value can differ for each version of the document. If you don't specify a value for this parameter in your request, the existing value is applied to the new document version.
An optional field specifying the version of the artifact you are updating with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document, and can't be changed.
The version of the document that you want to update. Currently, Systems Manager supports updating only the latest version of the document. You can specify the version number of the latest version or use the $LATEST
variable.
Specify the document format for the new document version. Systems Manager supports JSON and YAML documents. JSON is the default format.
Specify a new target type for the document.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for UpdateDocumentInput
impl Send for UpdateDocumentInput
impl Sync for UpdateDocumentInput
impl Unpin for UpdateDocumentInput
impl UnwindSafe for UpdateDocumentInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more