Struct rusoto_codedeploy::ListApplicationsOutput[][src]

pub struct ListApplicationsOutput {
    pub applications: Option<Vec<String>>,
    pub next_token: Option<String>,
}

Represents the output of a ListApplications operation.

Fields

A list of application names.

If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list applications call to return the next set of applications, will also be returned. in the list.

Trait Implementations

impl Default for ListApplicationsOutput
[src]

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

impl Debug for ListApplicationsOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListApplicationsOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListApplicationsOutput
[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