Struct rusoto_cur::ReportDefinition[][src]

pub struct ReportDefinition {
    pub additional_artifacts: Option<Vec<String>>,
    pub additional_schema_elements: Vec<String>,
    pub compression: String,
    pub format: String,
    pub report_name: String,
    pub s3_bucket: String,
    pub s3_prefix: String,
    pub s3_region: String,
    pub time_unit: String,
}

The definition of AWS Cost and Usage Report. Customer can specify the report name, time unit, report format, compression format, S3 bucket and additional artifacts and schema elements in the definition.

Fields

Trait Implementations

impl Default for ReportDefinition
[src]

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

impl Debug for ReportDefinition
[src]

Formats the value using the given formatter. Read more

impl Clone for ReportDefinition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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