Skip to content

Get Configuration Bundle

bedrockagentcorecontrol_get_configuration_bundle R Documentation

Gets the latest version of a configuration bundle

Description

Gets the latest version of a configuration bundle. By default, returns the latest version on the mainline branch. Use get_configuration_bundle_version to retrieve a specific historical version.

Usage

bedrockagentcorecontrol_get_configuration_bundle(bundleId, branchName)

Arguments

bundleId

[required] The unique identifier of the configuration bundle to retrieve.

branchName

The branch name to get the latest version from. If not specified, returns the latest version on the mainline branch.

Value

A list with the following syntax:

list(
  bundleArn = "string",
  bundleId = "string",
  bundleName = "string",
  description = "string",
  versionId = "string",
  components = list(
    list(
      configuration = list()
    )
  ),
  lineageMetadata = list(
    parentVersionIds = list(
      "string"
    ),
    branchName = "string",
    createdBy = list(
      name = "string",
      arn = "string"
    ),
    commitMessage = "string"
  ),
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  updatedAt = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$get_configuration_bundle(
  bundleId = "string",
  branchName = "string"
)