#[non_exhaustive]pub struct DescribeActivitiesInput {
pub authentication_token: Option<String>,
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub organization_id: Option<String>,
pub activity_types: Option<String>,
pub resource_id: Option<String>,
pub user_id: Option<String>,
pub include_indirect_activities: Option<bool>,
pub limit: Option<i32>,
pub marker: 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 Amazon Web Services administrator credentials to access the API.
start_time: Option<DateTime>
The timestamp that determines the starting time of the activities. The response includes the activities performed after the specified timestamp.
end_time: Option<DateTime>
The timestamp that determines the end time of the activities. The response includes the activities performed before the specified timestamp.
organization_id: Option<String>
The ID of the organization. This is a mandatory parameter when using administrative API (SigV4) requests.
activity_types: Option<String>
Specifies which activity types to include in the response. If this field is left empty, all activity types are returned.
resource_id: Option<String>
The document or folder ID for which to describe activity types.
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.
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<i32>
The maximum number of items to return.
marker: Option<String>
The marker for the next set of results.
Implementations§
source§impl DescribeActivitiesInput
impl DescribeActivitiesInput
sourcepub fn authentication_token(&self) -> Option<&str>
pub fn authentication_token(&self) -> Option<&str>
Amazon WorkDocs authentication token. Not required when using Amazon Web Services administrator credentials to access the API.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The timestamp that determines the starting time of the activities. The response includes the activities performed after the specified timestamp.
sourcepub fn end_time(&self) -> Option<&DateTime>
pub fn end_time(&self) -> Option<&DateTime>
The timestamp that determines the end time of the activities. The response includes the activities performed before the specified timestamp.
sourcepub fn organization_id(&self) -> Option<&str>
pub fn organization_id(&self) -> Option<&str>
The ID of the organization. This is a mandatory parameter when using administrative API (SigV4) requests.
sourcepub fn activity_types(&self) -> Option<&str>
pub fn activity_types(&self) -> Option<&str>
Specifies which activity types to include in the response. If this field is left empty, all activity types are returned.
sourcepub fn resource_id(&self) -> Option<&str>
pub fn resource_id(&self) -> Option<&str>
The document or folder ID for which to describe activity types.
sourcepub fn user_id(&self) -> Option<&str>
pub fn user_id(&self) -> Option<&str>
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.
sourcepub fn include_indirect_activities(&self) -> Option<bool>
pub fn include_indirect_activities(&self) -> 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).
source§impl DescribeActivitiesInput
impl DescribeActivitiesInput
sourcepub fn builder() -> DescribeActivitiesInputBuilder
pub fn builder() -> DescribeActivitiesInputBuilder
Creates a new builder-style object to manufacture DescribeActivitiesInput
.
Trait Implementations§
source§impl Clone for DescribeActivitiesInput
impl Clone for DescribeActivitiesInput
source§fn clone(&self) -> DescribeActivitiesInput
fn clone(&self) -> DescribeActivitiesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeActivitiesInput
impl Debug for DescribeActivitiesInput
source§impl PartialEq for DescribeActivitiesInput
impl PartialEq for DescribeActivitiesInput
source§fn eq(&self, other: &DescribeActivitiesInput) -> bool
fn eq(&self, other: &DescribeActivitiesInput) -> bool
self
and other
values to be equal, and is used
by ==
.