Skip to content

Describe Workspace Bundles

workspaces_describe_workspace_bundles R Documentation

Retrieves a list that describes the available WorkSpace bundles

Description

Retrieves a list that describes the available WorkSpace bundles.

You can filter the results using either bundle ID or owner, but not both.

Usage

workspaces_describe_workspace_bundles(BundleIds, Owner, NextToken)

Arguments

BundleIds

The identifiers of the bundles. You cannot combine this parameter with any other filter.

Owner

The owner of the bundles. You cannot combine this parameter with any other filter.

To describe the bundles provided by Amazon Web Services, specify AMAZON. To describe the bundles that belong to your account, don't specify a value.

NextToken

The token for the next set of results. (You received this token from a previous call.)

Value

A list with the following syntax:

list(
  Bundles = list(
    list(
      BundleId = "string",
      Name = "string",
      Owner = "string",
      Description = "string",
      ImageId = "string",
      RootStorage = list(
        Capacity = "string"
      ),
      UserStorage = list(
        Capacity = "string"
      ),
      ComputeType = list(
        Name = "VALUE"|"STANDARD"|"PERFORMANCE"|"POWER"|"GRAPHICS"|"POWERPRO"|"GRAPHICSPRO"|"GRAPHICS_G4DN"|"GRAPHICSPRO_G4DN"
      ),
      LastUpdatedTime = as.POSIXct(
        "2015-01-01"
      ),
      CreationTime = as.POSIXct(
        "2015-01-01"
      ),
      State = "AVAILABLE"|"PENDING"|"ERROR",
      BundleType = "REGULAR"|"STANDBY"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_workspace_bundles(
  BundleIds = list(
    "string"
  ),
  Owner = "string",
  NextToken = "string"
)