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 ==
.impl StructuralPartialEq for DescribeDocumentVersionsInput
Auto Trait Implementations§
impl Freeze for DescribeDocumentVersionsInput
impl RefUnwindSafe for DescribeDocumentVersionsInput
impl Send for DescribeDocumentVersionsInput
impl Sync for DescribeDocumentVersionsInput
impl Unpin for DescribeDocumentVersionsInput
impl UnwindSafe for DescribeDocumentVersionsInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more