Struct rusoto_glacier::DataRetrievalRule [] [src]

pub struct DataRetrievalRule {
    pub bytes_per_hour: Option<i64>,
    pub strategy: Option<String>,
}

Data retrieval policy rule.

Fields

The maximum number of bytes that can be retrieved in an hour.

This field is required only if the value of the Strategy field is BytesPerHour. Your PUT operation will be rejected if the Strategy field is not set to BytesPerHour and you set this field.

The type of data retrieval policy to set.

Valid values: BytesPerHour|FreeTier|None

Trait Implementations

impl Default for DataRetrievalRule
[src]

[src]

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

impl Debug for DataRetrievalRule
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DataRetrievalRule
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations