Learn R Programming

paws.storage (version 0.1.12)

storagegateway_describe_snapshot_schedule: Describes the snapshot schedule for the specified gateway volume

Description

Describes the snapshot schedule for the specified gateway volume. The snapshot schedule information includes intervals at which snapshots are automatically initiated on the volume. This operation is only supported in the cached volume and stored volume types.

Usage

storagegateway_describe_snapshot_schedule(VolumeARN)

Value

A list with the following syntax:

list(
  VolumeARN = "string",
  StartAt = 123,
  RecurrenceInHours = 123,
  Description = "string",
  Timezone = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)

Arguments

VolumeARN

[required] The Amazon Resource Name (ARN) of the volume. Use the list_volumes operation to return a list of gateway volumes.

Request syntax

svc$describe_snapshot_schedule(
  VolumeARN = "string"
)

Examples

Run this code
if (FALSE) {
# Describes the snapshot schedule for the specified gateway volume
# including intervals at which snapshots are automatically initiated.
svc$describe_snapshot_schedule(
  VolumeARN = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12..."
)
}

Run the code above in your browser using DataLab