Struct rusoto_discovery::DescribeExportConfigurationsResponse[][src]

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

Fields

Returns export details. When the status is complete, the response includes a URL for an Amazon S3 bucket where you can view the data in a CSV file.

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 DescribeExportConfigurationsResponse
[src]

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

impl Debug for DescribeExportConfigurationsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeExportConfigurationsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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