pub struct ListProfileTimesRequest {
pub end_time: f64,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub order_by: Option<String>,
pub period: String,
pub profiling_group_name: String,
pub start_time: f64,
}Expand description
The structure representing the listProfileTimesRequest.
Fields§
§end_time: f64The end time of the time range from which to list the profiles.
max_results: Option<i64>The maximum number of profile time results returned by ListProfileTimes in paginated output. When this parameter is used, ListProfileTimes only returns maxResults results in a single page with a nextToken response element. The remaining results of the initial request can be seen by sending another ListProfileTimes request with the returned nextToken value.
next_token: Option<String>The nextToken value returned from a previous paginated ListProfileTimes 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 token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.
order_by: Option<String>The order (ascending or descending by start time of the profile) to use when listing profiles. Defaults to TIMESTAMP_DESCENDING.
period: StringThe aggregation period. This specifies the period during which an aggregation profile collects posted agent profiles for a profiling group. There are 3 valid values.
-
P1D— 1 day -
PT1H— 1 hour -
PT5M— 5 minutes
profiling_group_name: StringThe name of the profiling group.
start_time: f64The start time of the time range from which to list the profiles.
Trait Implementations§
Source§impl Clone for ListProfileTimesRequest
impl Clone for ListProfileTimesRequest
Source§fn clone(&self) -> ListProfileTimesRequest
fn clone(&self) -> ListProfileTimesRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more