Skip to content

List Deployment Groups

codedeploy_list_deployment_groups R Documentation

Lists the deployment groups for an application registered with the Amazon Web Services user or Amazon Web Services account

Description

Lists the deployment groups for an application registered with the Amazon Web Services user or Amazon Web Services account.

Usage

codedeploy_list_deployment_groups(applicationName, nextToken)

Arguments

applicationName

[required] The name of an CodeDeploy application associated with the user or Amazon Web Services account.

nextToken

An identifier returned from the previous list deployment groups call. It can be used to return the next set of deployment groups in the list.

Value

A list with the following syntax:

list(
  applicationName = "string",
  deploymentGroups = list(
    "string"
  ),
  nextToken = "string"
)

Request syntax

svc$list_deployment_groups(
  applicationName = "string",
  nextToken = "string"
)