Struct rusoto_discovery::DescribeExportConfigurationsRequest [] [src]

pub struct DescribeExportConfigurationsRequest {
    pub export_ids: Option<Vec<String>>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

A unique identifier that you can use to query the export status.

The maximum number of results that you want to display as a part of the query.

A token to get the next set of results. For example, if you specify 100 IDs for DescribeExportConfigurationsRequest$exportIds but set DescribeExportConfigurationsRequest$maxResults to 10, you get results in a set of 10. Use the token in the query to get the next set of 10.

Trait Implementations

impl Default for DescribeExportConfigurationsRequest
[src]

[src]

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

impl Debug for DescribeExportConfigurationsRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeExportConfigurationsRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations