#[non_exhaustive]pub struct ListProblemsInput { /* private fields */ }
Implementations§
source§impl ListProblemsInput
impl ListProblemsInput
sourcepub fn resource_group_name(&self) -> Option<&str>
pub fn resource_group_name(&self) -> Option<&str>
The name of the resource group.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The time when the problem was detected, in epoch seconds. If you don't specify a time frame for the request, problems within the past seven days are returned.
sourcepub fn end_time(&self) -> Option<&DateTime>
pub fn end_time(&self) -> Option<&DateTime>
The time when the problem ended, in epoch seconds. If not specified, problems within the past seven days are returned.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken
value.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to request the next page of results.
sourcepub fn component_name(&self) -> Option<&str>
pub fn component_name(&self) -> Option<&str>
The name of the component.
source§impl ListProblemsInput
impl ListProblemsInput
sourcepub fn builder() -> ListProblemsInputBuilder
pub fn builder() -> ListProblemsInputBuilder
Creates a new builder-style object to manufacture ListProblemsInput
.
source§impl ListProblemsInput
impl ListProblemsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListProblems, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ListProblems, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListProblems
>
Trait Implementations§
source§impl Clone for ListProblemsInput
impl Clone for ListProblemsInput
source§fn clone(&self) -> ListProblemsInput
fn clone(&self) -> ListProblemsInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ListProblemsInput
impl Debug for ListProblemsInput
source§impl PartialEq<ListProblemsInput> for ListProblemsInput
impl PartialEq<ListProblemsInput> for ListProblemsInput
source§fn eq(&self, other: &ListProblemsInput) -> bool
fn eq(&self, other: &ListProblemsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListProblemsInput
Auto Trait Implementations§
impl RefUnwindSafe for ListProblemsInput
impl Send for ListProblemsInput
impl Sync for ListProblemsInput
impl Unpin for ListProblemsInput
impl UnwindSafe for ListProblemsInput
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
Mutably borrows from an owned value. Read more