Learn R Programming

paws.compute (version 0.1.12)

lightsail_get_disk_snapshots: Returns information about all block storage disk snapshots in your AWS account and region

Description

Returns information about all block storage disk snapshots in your AWS account and region.

Usage

lightsail_get_disk_snapshots(pageToken)

Value

A list with the following syntax:

list(
  diskSnapshots = list(
    list(
      name = "string",
      arn = "string",
      supportCode = "string",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      location = list(
        availabilityZone = "string",
        regionName = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"ca-central-1"|"ap-south-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-northeast-1"|"ap-northeast-2"
      ),
      resourceType = "ContainerService"|"Instance"|"StaticIp"|"KeyPair"|"InstanceSnapshot"|"Domain"|"PeeredVpc"|"LoadBalancer"|"LoadBalancerTlsCertificate"|"Disk"|"DiskSnapshot"|"RelationalDatabase"|"RelationalDatabaseSnapshot"|"ExportSnapshotRecord"|"CloudFormationStackRecord"|"Alarm"|"ContactMethod"|"Distribution"|"Certificate",
      tags = list(
        list(
          key = "string",
          value = "string"
        )
      ),
      sizeInGb = 123,
      state = "pending"|"completed"|"error"|"unknown",
      progress = "string",
      fromDiskName = "string",
      fromDiskArn = "string",
      fromInstanceName = "string",
      fromInstanceArn = "string",
      isFromAutoSnapshot = TRUE|FALSE
    )
  ),
  nextPageToken = "string"
)

Arguments

pageToken

The token to advance to the next page of results from your request.

To get a page token, perform an initial get_disk_snapshots request. If your results are paginated, the response will return a next page token that you can specify as the page token in a subsequent request.

Request syntax

svc$get_disk_snapshots(
  pageToken = "string"
)