[][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. Not required when using AWS administrator credentials to access the API.

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 Clone for DescribeActivitiesRequest[src]

impl Debug for DescribeActivitiesRequest[src]

impl Default for DescribeActivitiesRequest[src]

impl PartialEq<DescribeActivitiesRequest> for DescribeActivitiesRequest[src]

impl Serialize for DescribeActivitiesRequest[src]

impl StructuralPartialEq for DescribeActivitiesRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.