Struct rusoto_appstream::DescribeImageBuildersRequest[][src]

pub struct DescribeImageBuildersRequest {
    pub max_results: Option<i64>,
    pub names: Option<Vec<String>>,
    pub next_token: Option<String>,
}

Fields

The maximum size of each page of results.

The names of the image builders to describe.

The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.

Trait Implementations

impl Default for DescribeImageBuildersRequest
[src]

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

impl Debug for DescribeImageBuildersRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeImageBuildersRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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