pub struct ListConfigurationHistoryRequest {
pub end_time: Option<f64>,
pub event_status: Option<String>,
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 end time of the event.
event_status: Option<String>The status of the configuration update event. Possible values include INFO, WARN, and ERROR.
max_results: Option<i64> The maximum number of results returned by ListConfigurationHistory in paginated output. When this parameter is used, ListConfigurationHistory returns only MaxResults in a single page along with a NextToken response element. The remaining results of the initial request can be seen by sending another ListConfigurationHistory request with the returned NextToken value. If this parameter is not used, then ListConfigurationHistory returns all results.
next_token: Option<String>The NextToken value returned from a previous paginated ListConfigurationHistory request where MaxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the NextToken value. This value is null when there are no more results to return.
resource_group_name: Option<String>Resource group to which the application belongs.
start_time: Option<f64>The start time of the event.
Trait Implementations§
Source§impl Clone for ListConfigurationHistoryRequest
impl Clone for ListConfigurationHistoryRequest
Source§fn clone(&self) -> ListConfigurationHistoryRequest
fn clone(&self) -> ListConfigurationHistoryRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for ListConfigurationHistoryRequest
impl Default for ListConfigurationHistoryRequest
Source§fn default() -> ListConfigurationHistoryRequest
fn default() -> ListConfigurationHistoryRequest
Source§impl PartialEq for ListConfigurationHistoryRequest
impl PartialEq for ListConfigurationHistoryRequest
Source§fn eq(&self, other: &ListConfigurationHistoryRequest) -> bool
fn eq(&self, other: &ListConfigurationHistoryRequest) -> bool
self and other values to be equal, and is used by ==.