Learn R Programming

paws.compute (version 0.1.12)

lightsail_get_blueprints: Returns the list of available instance images, or blueprints

Description

Returns the list of available instance images, or blueprints. You can use a blueprint to create a new instance already running a specific operating system, as well as a preinstalled app or development stack. The software each instance is running depends on the blueprint image you choose.

Use active blueprints when creating new instances. Inactive blueprints are listed to support customers with existing instances and are not necessarily available to create new instances. Blueprints are marked inactive when they become outdated due to operating system updates or new application releases.

Usage

lightsail_get_blueprints(includeInactive, pageToken)

Value

A list with the following syntax:

list(
  blueprints = list(
    list(
      blueprintId = "string",
      name = "string",
      group = "string",
      type = "os"|"app",
      description = "string",
      isActive = TRUE|FALSE,
      minPower = 123,
      version = "string",
      versionCode = "string",
      productUrl = "string",
      licenseUrl = "string",
      platform = "LINUX_UNIX"|"WINDOWS"
    )
  ),
  nextPageToken = "string"
)

Arguments

includeInactive

A Boolean value indicating whether to include inactive results in your request.

pageToken

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

To get a page token, perform an initial get_blueprints 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_blueprints(
  includeInactive = TRUE|FALSE,
  pageToken = "string"
)