Struct rusoto_kinesisanalytics::ListApplicationsRequest[][src]

pub struct ListApplicationsRequest {
    pub exclusive_start_application_name: Option<String>,
    pub limit: Option<i64>,
}

Fields

Name of the application to start the list with. When using pagination to retrieve the list, you don't need to specify this parameter in the first request. However, in subsequent requests, you add the last application name from the previous response to get the next page of applications.

Maximum number of applications to list.

Trait Implementations

impl Default for ListApplicationsRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for ListApplicationsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListApplicationsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListApplicationsRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations