Struct rusoto_storagegateway::DescribeWorkingStorageOutput[][src]

pub struct DescribeWorkingStorageOutput {
    pub disk_ids: Option<Vec<String>>,
    pub gateway_arn: Option<String>,
    pub working_storage_allocated_in_bytes: Option<i64>,
    pub working_storage_used_in_bytes: Option<i64>,
}

A JSON object containing the following fields:

Fields

An array of the gateway's local disk IDs that are configured as working storage. Each local disk ID is specified as a string (minimum length of 1 and maximum length of 300). If no local disks are configured as working storage, then the DiskIds array is empty.

The total working storage in bytes allocated for the gateway. If no working storage is configured for the gateway, this field returns 0.

The total working storage in bytes in use by the gateway. If no working storage is configured for the gateway, this field returns 0.

Trait Implementations

impl Default for DescribeWorkingStorageOutput
[src]

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

impl Debug for DescribeWorkingStorageOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeWorkingStorageOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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