Struct rusoto_discovery::DescribeExportTasksResponse[][src]

pub struct DescribeExportTasksResponse {
    pub exports_info: Option<Vec<ExportInfo>>,
    pub next_token: Option<String>,
}

Fields

Contains one or more sets of export request details. When the status of a request is SUCCEEDED, the response includes a URL for an Amazon S3 bucket where you can view the data in a CSV file.

The nextToken value to include in a future DescribeExportTasks request. When the results of a DescribeExportTasks request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

Trait Implementations

impl Default for DescribeExportTasksResponse
[src]

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

impl Debug for DescribeExportTasksResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeExportTasksResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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