Skip to content

Get Relational Database Snapshot

lightsail_get_relational_database_snapshot R Documentation

Returns information about a specific database snapshot in Amazon Lightsail

Description

Returns information about a specific database snapshot in Amazon Lightsail.

Usage

lightsail_get_relational_database_snapshot(
  relationalDatabaseSnapshotName)

Arguments

relationalDatabaseSnapshotName

[required] The name of the database snapshot for which to get information.

Value

A list with the following syntax:

list(
  relationalDatabaseSnapshot = 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"|"eu-north-1"
    ),
    resourceType = "ContainerService"|"Instance"|"StaticIp"|"KeyPair"|"InstanceSnapshot"|"Domain"|"PeeredVpc"|"LoadBalancer"|"LoadBalancerTlsCertificate"|"Disk"|"DiskSnapshot"|"RelationalDatabase"|"RelationalDatabaseSnapshot"|"ExportSnapshotRecord"|"CloudFormationStackRecord"|"Alarm"|"ContactMethod"|"Distribution"|"Certificate"|"Bucket",
    tags = list(
      list(
        key = "string",
        value = "string"
      )
    ),
    engine = "string",
    engineVersion = "string",
    sizeInGb = 123,
    state = "string",
    fromRelationalDatabaseName = "string",
    fromRelationalDatabaseArn = "string",
    fromRelationalDatabaseBundleId = "string",
    fromRelationalDatabaseBlueprintId = "string"
  )
)

Request syntax

svc$get_relational_database_snapshot(
  relationalDatabaseSnapshotName = "string"
)