Struct aws_sdk_devopsguru::input::ListEventsInput
source · [−]#[non_exhaustive]pub struct ListEventsInput {
pub filters: Option<ListEventsFilters>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub account_id: 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.filters: Option<ListEventsFilters>
A ListEventsFilters
object used to specify which events to return.
max_results: Option<i32>
The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken
value.
next_token: Option<String>
The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
account_id: Option<String>
The ID of the Amazon Web Services account.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListEvents, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListEvents, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListEvents
>
Creates a new builder-style object to manufacture ListEventsInput
A ListEventsFilters
object used to specify which events to return.
The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken
value.
The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
The ID of the Amazon Web Services account.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListEventsInput
impl Send for ListEventsInput
impl Sync for ListEventsInput
impl Unpin for ListEventsInput
impl UnwindSafe for ListEventsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more