pub struct ListRobotApplicationsRequest {
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 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, ListRobotApplications 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 ListRobotApplications request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListRobotApplications returns up to 100 results and a nextToken value if applicable.
next_token: Option<String>The nextToken value returned from a previous paginated ListRobotApplications 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 robot application.
Trait Implementations§
Source§impl Clone for ListRobotApplicationsRequest
impl Clone for ListRobotApplicationsRequest
Source§fn clone(&self) -> ListRobotApplicationsRequest
fn clone(&self) -> ListRobotApplicationsRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ListRobotApplicationsRequest
impl Debug for ListRobotApplicationsRequest
Source§impl Default for ListRobotApplicationsRequest
impl Default for ListRobotApplicationsRequest
Source§fn default() -> ListRobotApplicationsRequest
fn default() -> ListRobotApplicationsRequest
Source§impl PartialEq for ListRobotApplicationsRequest
impl PartialEq for ListRobotApplicationsRequest
Source§fn eq(&self, other: &ListRobotApplicationsRequest) -> bool
fn eq(&self, other: &ListRobotApplicationsRequest) -> bool
self and other values to be equal, and is used by ==.