Struct rusoto_workdocs::GetDocumentPathRequest [] [src]

pub struct GetDocumentPathRequest {
    pub authentication_token: Option<String>,
    pub document_id: String,
    pub fields: Option<String>,
    pub limit: Option<i64>,
    pub marker: Option<String>,
}

Fields

Amazon WorkDocs authentication token. This field should not be set when using administrative API actions, as in accessing the API using AWS credentials.

The ID of the document.

A comma-separated list of values. Specify NAME to include the names of the parent folders.

The maximum number of levels in the hierarchy to return.

This value is not supported.

Trait Implementations

impl Default for GetDocumentPathRequest
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for GetDocumentPathRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GetDocumentPathRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations