pub struct ListProblemsRequest {
pub end_time: Option<f64>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub resource_group_name: Option<String>,
pub start_time: Option<f64>,
}
Fields§
§end_time: Option<f64>
The time when the problem ended, in epoch seconds. If not specified, problems within the past seven days are returned.
max_results: Option<i64>
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.
resource_group_name: Option<String>
The name of the resource group.
start_time: Option<f64>
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.
Trait Implementations§
Source§impl Clone for ListProblemsRequest
impl Clone for ListProblemsRequest
Source§fn clone(&self) -> ListProblemsRequest
fn clone(&self) -> ListProblemsRequest
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 ListProblemsRequest
impl Debug for ListProblemsRequest
Source§impl Default for ListProblemsRequest
impl Default for ListProblemsRequest
Source§fn default() -> ListProblemsRequest
fn default() -> ListProblemsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListProblemsRequest
impl PartialEq for ListProblemsRequest
Source§impl Serialize for ListProblemsRequest
impl Serialize for ListProblemsRequest
impl StructuralPartialEq for ListProblemsRequest
Auto Trait Implementations§
impl Freeze for ListProblemsRequest
impl RefUnwindSafe for ListProblemsRequest
impl Send for ListProblemsRequest
impl Sync for ListProblemsRequest
impl Unpin for ListProblemsRequest
impl UnwindSafe for ListProblemsRequest
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