[][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 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 has 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 Clone for DescribeCacheOutput[src]

impl Debug for DescribeCacheOutput[src]

impl Default for DescribeCacheOutput[src]

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

impl PartialEq<DescribeCacheOutput> for DescribeCacheOutput[src]

impl StructuralPartialEq for DescribeCacheOutput[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.