Struct rusoto_opsworks::DescribeAppsRequest[][src]

pub struct DescribeAppsRequest {
    pub app_ids: Option<Vec<String>>,
    pub stack_id: Option<String>,
}

Fields

An array of app IDs for the apps to be described. If you use this parameter, DescribeApps returns a description of the specified apps. Otherwise, it returns a description of every app.

The app stack ID. If you use this parameter, DescribeApps returns a description of the apps in the specified stack.

Trait Implementations

impl Default for DescribeAppsRequest
[src]

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

impl Debug for DescribeAppsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeAppsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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