#[non_exhaustive]pub struct ListProblemsInput {
pub resource_group_name: Option<String>,
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub component_name: 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.resource_group_name: Option<String>
The name of the resource group.
start_time: 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.
end_time: Option<DateTime>
The time when the problem ended, in epoch seconds. If not specified, problems within the past seven days are returned.
max_results: 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.
next_token: Option<String>
The token to request the next page of results.
component_name: Option<String>
The name of the component.
Implementations
sourceimpl ListProblemsInput
impl ListProblemsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListProblems, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListProblems, AwsErrorRetryPolicy>, 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 more
sourceimpl 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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ListProblemsInput) -> bool
fn ne(&self, other: &ListProblemsInput) -> bool
This method tests for !=
.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more