Struct aws_sdk_workdocs::operation::describe_document_versions::DescribeDocumentVersionsInput
source · #[non_exhaustive]pub struct DescribeDocumentVersionsInput {
pub authentication_token: Option<String>,
pub document_id: Option<String>,
pub marker: Option<String>,
pub limit: Option<i32>,
pub include: Option<String>,
pub fields: 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.authentication_token: Option<String>
Amazon WorkDocs authentication token. Not required when using Amazon Web Services administrator credentials to access the API.
document_id: Option<String>
The ID of the document.
marker: Option<String>
The marker for the next set of results. (You received this marker from a previous call.)
limit: Option<i32>
The maximum number of versions to return with this call.
include: Option<String>
A comma-separated list of values. Specify "INITIALIZED" to include incomplete versions.
fields: Option<String>
Specify "SOURCE" to include initialized versions and a URL for the source document.
Implementations§
source§impl DescribeDocumentVersionsInput
impl DescribeDocumentVersionsInput
sourcepub fn authentication_token(&self) -> Option<&str>
pub fn authentication_token(&self) -> Option<&str>
Amazon WorkDocs authentication token. Not required when using Amazon Web Services administrator credentials to access the API.
sourcepub fn document_id(&self) -> Option<&str>
pub fn document_id(&self) -> Option<&str>
The ID of the document.
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
The marker for the next set of results. (You received this marker from a previous call.)
source§impl DescribeDocumentVersionsInput
impl DescribeDocumentVersionsInput
sourcepub fn builder() -> DescribeDocumentVersionsInputBuilder
pub fn builder() -> DescribeDocumentVersionsInputBuilder
Creates a new builder-style object to manufacture DescribeDocumentVersionsInput
.
Trait Implementations§
source§impl Clone for DescribeDocumentVersionsInput
impl Clone for DescribeDocumentVersionsInput
source§fn clone(&self) -> DescribeDocumentVersionsInput
fn clone(&self) -> DescribeDocumentVersionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeDocumentVersionsInput
impl PartialEq for DescribeDocumentVersionsInput
source§fn eq(&self, other: &DescribeDocumentVersionsInput) -> bool
fn eq(&self, other: &DescribeDocumentVersionsInput) -> bool
self
and other
values to be equal, and is used
by ==
.