#[non_exhaustive]pub struct ListProblemsInput { /* private fields */ }
Implementations
sourceimpl 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
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListProblemsInput
.
sourceimpl 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.
Trait Implementations
sourceimpl Clone for ListProblemsInput
impl Clone for ListProblemsInput
sourcefn clone(&self) -> ListProblemsInput
fn clone(&self) -> ListProblemsInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ListProblemsInput
impl Debug for ListProblemsInput
sourceimpl PartialEq<ListProblemsInput> for ListProblemsInput
impl PartialEq<ListProblemsInput> for ListProblemsInput
sourcefn eq(&self, other: &ListProblemsInput) -> bool
fn eq(&self, other: &ListProblemsInput) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more