Skip to content

Describe Cache Report

storagegateway_describe_cache_report R Documentation

Returns information about the specified cache report, including completion status and generation progress

Description

Returns information about the specified cache report, including completion status and generation progress.

Usage

storagegateway_describe_cache_report(CacheReportARN)

Arguments

CacheReportARN

[required] The Amazon Resource Name (ARN) of the cache report you want to describe.

Value

A list with the following syntax:

list(
  CacheReportInfo = list(
    CacheReportARN = "string",
    CacheReportStatus = "IN_PROGRESS"|"COMPLETED"|"CANCELED"|"FAILED"|"ERROR",
    ReportCompletionPercent = 123,
    EndTime = as.POSIXct(
      "2015-01-01"
    ),
    Role = "string",
    FileShareARN = "string",
    LocationARN = "string",
    StartTime = as.POSIXct(
      "2015-01-01"
    ),
    InclusionFilters = list(
      list(
        Name = "UploadState"|"UploadFailureReason",
        Values = list(
          "string"
        )
      )
    ),
    ExclusionFilters = list(
      list(
        Name = "UploadState"|"UploadFailureReason",
        Values = list(
          "string"
        )
      )
    ),
    ReportName = "string",
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)

Request syntax

svc$describe_cache_report(
  CacheReportARN = "string"
)