#[non_exhaustive]pub struct DescribeDocumentInput {
pub name: Option<String>,
pub document_version: Option<String>,
pub version_name: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the SSM document.
document_version: Option<String>
The document version for which you want information. Can be a specific version or the default version.
version_name: Option<String>
An optional field specifying the version of the artifact associated with the document. For example, 12.6. This value is unique across all versions of a document, and can't be changed.
Implementations§
source§impl DescribeDocumentInput
impl DescribeDocumentInput
sourcepub fn document_version(&self) -> Option<&str>
pub fn document_version(&self) -> Option<&str>
The document version for which you want information. Can be a specific version or the default version.
sourcepub fn version_name(&self) -> Option<&str>
pub fn version_name(&self) -> Option<&str>
An optional field specifying the version of the artifact associated with the document. For example, 12.6. This value is unique across all versions of a document, and can't be changed.
source§impl DescribeDocumentInput
impl DescribeDocumentInput
sourcepub fn builder() -> DescribeDocumentInputBuilder
pub fn builder() -> DescribeDocumentInputBuilder
Creates a new builder-style object to manufacture DescribeDocumentInput
.
Trait Implementations§
source§impl Clone for DescribeDocumentInput
impl Clone for DescribeDocumentInput
source§fn clone(&self) -> DescribeDocumentInput
fn clone(&self) -> DescribeDocumentInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DescribeDocumentInput
impl Debug for DescribeDocumentInput
source§impl PartialEq for DescribeDocumentInput
impl PartialEq for DescribeDocumentInput
source§fn eq(&self, other: &DescribeDocumentInput) -> bool
fn eq(&self, other: &DescribeDocumentInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeDocumentInput
Auto Trait Implementations§
impl Freeze for DescribeDocumentInput
impl RefUnwindSafe for DescribeDocumentInput
impl Send for DescribeDocumentInput
impl Sync for DescribeDocumentInput
impl Unpin for DescribeDocumentInput
impl UnwindSafe for DescribeDocumentInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.