Skip to content

List Cache Reports

storagegateway_list_cache_reports R Documentation

Returns a list of existing cache reports for all file shares associated with your Amazon Web Services account

Description

Returns a list of existing cache reports for all file shares associated with your Amazon Web Services account. This list includes all information provided by the describe_cache_report action, such as report name, status, completion progress, start time, end time, filters, and tags.

Usage

storagegateway_list_cache_reports(Marker)

Arguments

Marker

Opaque pagination token returned from a previous list_cache_reports operation. If present, Marker specifies where to continue the list from after a previous call to list_cache_reports. Optional.

Value

A list with the following syntax:

list(
  CacheReportList = list(
    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"
        )
      )
    )
  ),
  Marker = "string"
)

Request syntax

svc$list_cache_reports(
  Marker = "string"
)