#[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
impl StructuralPartialEq for DescribeActivitiesInput
Auto Trait Implementations§
impl Freeze for DescribeActivitiesInput
impl RefUnwindSafe for DescribeActivitiesInput
impl Send for DescribeActivitiesInput
impl Sync for DescribeActivitiesInput
impl Unpin for DescribeActivitiesInput
impl UnwindSafe for DescribeActivitiesInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more