#[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 AWS 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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeDocumentVersions, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeDocumentVersions, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeDocumentVersions
>
Creates a new builder-style object to manufacture DescribeDocumentVersionsInput
Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.
The ID of the document.
The marker for the next set of results. (You received this marker from a previous call.)
A comma-separated list of values. Specify "INITIALIZED" to include incomplete versions.
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 Send for DescribeDocumentVersionsInput
impl Sync for DescribeDocumentVersionsInput
impl Unpin for DescribeDocumentVersionsInput
impl UnwindSafe for DescribeDocumentVersionsInput
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