pub struct DescribeDocumentVersionsRequest {
pub authentication_token: Option<String>,
pub document_id: String,
pub fields: Option<String>,
pub include: Option<String>,
pub limit: Option<i64>,
pub marker: Option<String>,
}
Fields§
§authentication_token: Option<String>
Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.
document_id: String
The ID of the document.
fields: Option<String>
Specify "SOURCE" to include initialized versions and a URL for the source document.
include: Option<String>
A comma-separated list of values. Specify "INITIALIZED" to include incomplete versions.
limit: Option<i64>
The maximum number of versions to return with this call.
marker: Option<String>
The marker for the next set of results. (You received this marker from a previous call.)
Trait Implementations§
Source§impl Clone for DescribeDocumentVersionsRequest
impl Clone for DescribeDocumentVersionsRequest
Source§fn clone(&self) -> DescribeDocumentVersionsRequest
fn clone(&self) -> DescribeDocumentVersionsRequest
Returns a duplicate 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 Default for DescribeDocumentVersionsRequest
impl Default for DescribeDocumentVersionsRequest
Source§fn default() -> DescribeDocumentVersionsRequest
fn default() -> DescribeDocumentVersionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeDocumentVersionsRequest
impl PartialEq for DescribeDocumentVersionsRequest
Source§fn eq(&self, other: &DescribeDocumentVersionsRequest) -> bool
fn eq(&self, other: &DescribeDocumentVersionsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeDocumentVersionsRequest
Auto Trait Implementations§
impl Freeze for DescribeDocumentVersionsRequest
impl RefUnwindSafe for DescribeDocumentVersionsRequest
impl Send for DescribeDocumentVersionsRequest
impl Sync for DescribeDocumentVersionsRequest
impl Unpin for DescribeDocumentVersionsRequest
impl UnwindSafe for DescribeDocumentVersionsRequest
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