Struct rusoto_datapipeline::QueryObjectsOutput [] [src]

pub struct QueryObjectsOutput {
    pub has_more_results: Option<bool>,
    pub ids: Option<Vec<String>>,
    pub marker: Option<String>,
}

Contains the output of QueryObjects.

Fields

Indicates whether there are more results that can be obtained by a subsequent call.

The identifiers that match the query selectors.

The starting point for the next page of results. To view the next page of results, call QueryObjects again with this marker value. If the value is null, there are no more results.

Trait Implementations

impl Default for QueryObjectsOutput
[src]

[src]

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

impl Debug for QueryObjectsOutput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for QueryObjectsOutput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations