pub struct ListSimulationApplicationsRequest {
pub filters: Option<Vec<Filter>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub version_qualifier: Option<String>,
}Fields§
§filters: Option<Vec<Filter>>Optional list of filters to limit results.
The filter name name is supported. When filtering, you must use the complete value of the filtered item. You can use up to three filters.
max_results: Option<i64>When this parameter is used, ListSimulationApplications only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListSimulationApplications request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListSimulationApplications returns up to 100 results and a nextToken value if applicable.
next_token: Option<String>The nextToken value returned from a previous paginated ListSimulationApplications 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.
version_qualifier: Option<String>The version qualifier of the simulation application.
Trait Implementations§
Source§impl Clone for ListSimulationApplicationsRequest
impl Clone for ListSimulationApplicationsRequest
Source§fn clone(&self) -> ListSimulationApplicationsRequest
fn clone(&self) -> ListSimulationApplicationsRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for ListSimulationApplicationsRequest
impl Default for ListSimulationApplicationsRequest
Source§fn default() -> ListSimulationApplicationsRequest
fn default() -> ListSimulationApplicationsRequest
Source§impl PartialEq for ListSimulationApplicationsRequest
impl PartialEq for ListSimulationApplicationsRequest
Source§fn eq(&self, other: &ListSimulationApplicationsRequest) -> bool
fn eq(&self, other: &ListSimulationApplicationsRequest) -> bool
self and other values to be equal, and is used by ==.