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
sourceimpl UpdateDocumentInput
impl UpdateDocumentInput
sourcepub 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
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateDocumentInput
sourceimpl UpdateDocumentInput
impl UpdateDocumentInput
sourcepub fn attachments(&self) -> Option<&[AttachmentsSource]>
pub fn attachments(&self) -> Option<&[AttachmentsSource]>
A list of key-value pairs that describe attachments to a version of a document.
sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
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.
sourcepub fn version_name(&self) -> Option<&str>
pub fn version_name(&self) -> Option<&str>
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.
sourcepub fn document_version(&self) -> Option<&str>
pub fn document_version(&self) -> Option<&str>
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.
sourcepub fn document_format(&self) -> Option<&DocumentFormat>
pub fn document_format(&self) -> Option<&DocumentFormat>
Specify the document format for the new document version. Systems Manager supports JSON and YAML documents. JSON is the default format.
sourcepub fn target_type(&self) -> Option<&str>
pub fn target_type(&self) -> Option<&str>
Specify a new target type for the document.
Trait Implementations
sourceimpl Clone for UpdateDocumentInput
impl Clone for UpdateDocumentInput
sourcefn clone(&self) -> UpdateDocumentInput
fn clone(&self) -> UpdateDocumentInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for UpdateDocumentInput
impl Debug for UpdateDocumentInput
sourceimpl PartialEq<UpdateDocumentInput> for UpdateDocumentInput
impl PartialEq<UpdateDocumentInput> for UpdateDocumentInput
sourcefn eq(&self, other: &UpdateDocumentInput) -> bool
fn eq(&self, other: &UpdateDocumentInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &UpdateDocumentInput) -> bool
fn ne(&self, other: &UpdateDocumentInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for UpdateDocumentInput
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more