Skip to content

Describe Agent Versions

opsworks_describe_agent_versions R Documentation

Describes the available OpsWorks Stacks agent versions

Description

Describes the available OpsWorks Stacks agent versions. You must specify a stack ID or a configuration manager. describe_agent_versions returns a list of available agent versions for the specified stack or configuration manager.

Usage

opsworks_describe_agent_versions(StackId, ConfigurationManager)

Arguments

StackId

The stack ID.

ConfigurationManager

The configuration manager.

Value

A list with the following syntax:

list(
  AgentVersions = list(
    list(
      Version = "string",
      ConfigurationManager = list(
        Name = "string",
        Version = "string"
      )
    )
  )
)

Request syntax

svc$describe_agent_versions(
  StackId = "string",
  ConfigurationManager = list(
    Name = "string",
    Version = "string"
  )
)