Skip to content

Get Bucket Bundles

lightsail_get_bucket_bundles R Documentation

Returns the bundles that you can apply to a Amazon Lightsail bucket

Description

Returns the bundles that you can apply to a Amazon Lightsail bucket.

The bucket bundle specifies the monthly cost, storage quota, and data transfer quota for a bucket.

Use the update_bucket_bundle action to update the bundle for a bucket.

Usage

lightsail_get_bucket_bundles(includeInactive)

Arguments

includeInactive

A Boolean value that indicates whether to include inactive (unavailable) bundles in the response of your request.

Value

A list with the following syntax:

list(
  bundles = list(
    list(
      bundleId = "string",
      name = "string",
      price = 123.0,
      storagePerMonthInGb = 123,
      transferPerMonthInGb = 123,
      isActive = TRUE|FALSE
    )
  )
)

Request syntax

svc$get_bucket_bundles(
  includeInactive = TRUE|FALSE
)