[][src]Struct rusoto_storagegateway::DescribeCacheOutput

pub struct DescribeCacheOutput {
    pub cache_allocated_in_bytes: Option<i64>,
    pub cache_dirty_percentage: Option<f64>,
    pub cache_hit_percentage: Option<f64>,
    pub cache_miss_percentage: Option<f64>,
    pub cache_used_percentage: Option<f64>,
    pub disk_ids: Option<Vec<String>>,
    pub gateway_arn: Option<String>,
}

Fields

cache_allocated_in_bytes: Option<i64>

The amount of cache in bytes allocated to the a gateway.

cache_dirty_percentage: Option<f64>

The file share's contribution to the overall percentage of the gateway's cache that has not been persisted to AWS. The sample is taken at the end of the reporting period.

cache_hit_percentage: Option<f64>

Percent of application read operations from the file shares that are served from cache. The sample is taken at the end of the reporting period.

cache_miss_percentage: Option<f64>

Percent of application read operations from the file shares that are not served from cache. The sample is taken at the end of the reporting period.

cache_used_percentage: Option<f64>

Percent use of the gateway's cache storage. This metric applies only to the gateway-cached volume setup. The sample is taken at the end of the reporting period.

disk_ids: Option<Vec<String>>

An array of strings that identify disks that are to be configured as working storage. Each string have a minimum length of 1 and maximum length of 300. You can get the disk IDs from the ListLocalDisks API.

gateway_arn: Option<String>

Trait Implementations

impl PartialEq<DescribeCacheOutput> for DescribeCacheOutput[src]

impl Default for DescribeCacheOutput[src]

impl Clone for DescribeCacheOutput[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DescribeCacheOutput[src]

impl<'de> Deserialize<'de> for DescribeCacheOutput[src]

Auto Trait Implementations

impl Send for DescribeCacheOutput

impl Sync for DescribeCacheOutput

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self