import * as __aws_sdk_types from "@aws-sdk/types"; /** * DescribeCacheOutput shape */ export interface DescribeCacheOutput extends __aws_sdk_types.MetadataBearer { /** *

The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region.

*/ GatewayARN?: 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.

*/ DiskIds?: Array; /** *

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

*/ CacheAllocatedInBytes?: number; /** *

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.

*/ CacheUsedPercentage?: number; /** *

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.

*/ CacheDirtyPercentage?: number; /** *

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.

*/ CacheHitPercentage?: number; /** *

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.

*/ CacheMissPercentage?: number; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }