[][src]Struct rusoto_workdocs::DescribeActivitiesRequest

pub struct DescribeActivitiesRequest {
    pub activity_types: Option<String>,
    pub authentication_token: Option<String>,
    pub end_time: Option<f64>,
    pub include_indirect_activities: Option<bool>,
    pub limit: Option<i64>,
    pub marker: Option<String>,
    pub organization_id: Option<String>,
    pub resource_id: Option<String>,
    pub start_time: Option<f64>,
    pub user_id: Option<String>,
}

Fields

activity_types: Option<String>

Specifies which activity types to include in the response. If this field is left empty, all activity types are returned.

authentication_token: Option<String>

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

end_time: Option<f64>

The timestamp that determines the end time of the activities. The response includes the activities performed before the specified timestamp.

include_indirect_activities: Option<bool>

Includes indirect activities. An indirect activity results from a direct activity performed on a parent resource. For example, sharing a parent folder (the direct activity) shares all of the subfolders and documents within the parent folder (the indirect activity).

limit: Option<i64>

The maximum number of items to return.

marker: Option<String>

The marker for the next set of results.

organization_id: Option<String>

The ID of the organization. This is a mandatory parameter when using administrative API (SigV4) requests.

resource_id: Option<String>

The document or folder ID for which to describe activity types.

start_time: Option<f64>

The timestamp that determines the starting time of the activities. The response includes the activities performed after the specified timestamp.

user_id: Option<String>

The ID of the user who performed the action. The response includes activities pertaining to this user. This is an optional parameter and is only applicable for administrative API (SigV4) requests.

Trait Implementations

impl PartialEq<DescribeActivitiesRequest> for DescribeActivitiesRequest[src]

impl Default for DescribeActivitiesRequest[src]

impl Clone for DescribeActivitiesRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DescribeActivitiesRequest[src]

impl Serialize for DescribeActivitiesRequest[src]

Auto Trait Implementations

impl Send for DescribeActivitiesRequest

impl Sync for DescribeActivitiesRequest

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self