Struct aws_sdk_workdocs::model::DocumentMetadata [−][src]
#[non_exhaustive]pub struct DocumentMetadata {
pub id: Option<String>,
pub creator_id: Option<String>,
pub parent_folder_id: Option<String>,
pub created_timestamp: Option<DateTime>,
pub modified_timestamp: Option<DateTime>,
pub latest_version_metadata: Option<DocumentVersionMetadata>,
pub resource_state: Option<ResourceStateType>,
pub labels: Option<Vec<String>>,
}
Expand description
Describes the document.
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.id: Option<String>
The ID of the document.
creator_id: Option<String>
The ID of the creator.
parent_folder_id: Option<String>
The ID of the parent folder.
created_timestamp: Option<DateTime>
The time when the document was created.
modified_timestamp: Option<DateTime>
The time when the document was updated.
latest_version_metadata: Option<DocumentVersionMetadata>
The latest version of the document.
resource_state: Option<ResourceStateType>
The resource state.
labels: Option<Vec<String>>
List of labels on the document.
Implementations
The ID of the creator.
The ID of the parent folder.
The time when the document was created.
The time when the document was updated.
The latest version of the document.
The resource state.
Creates a new builder-style object to manufacture DocumentMetadata
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 DocumentMetadata
impl Send for DocumentMetadata
impl Sync for DocumentMetadata
impl Unpin for DocumentMetadata
impl UnwindSafe for DocumentMetadata
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