Skip to content

Describe Elastic Load Balancers

opsworks_describe_elastic_load_balancers R Documentation

Describes a stack's Elastic Load Balancing instances

Description

Describes a stack's Elastic Load Balancing instances.

This call accepts only one resource-identifying parameter.

Required Permissions: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information about user permissions, see Managing User Permissions.

Usage

opsworks_describe_elastic_load_balancers(StackId, LayerIds)

Arguments

StackId

A stack ID. The action describes the stack's Elastic Load Balancing instances.

LayerIds

A list of layer IDs. The action describes the Elastic Load Balancing instances for the specified layers.

Value

A list with the following syntax:

list(
  ElasticLoadBalancers = list(
    list(
      ElasticLoadBalancerName = "string",
      Region = "string",
      DnsName = "string",
      StackId = "string",
      LayerId = "string",
      VpcId = "string",
      AvailabilityZones = list(
        "string"
      ),
      SubnetIds = list(
        "string"
      ),
      Ec2InstanceIds = list(
        "string"
      )
    )
  )
)

Request syntax

svc$describe_elastic_load_balancers(
  StackId = "string",
  LayerIds = list(
    "string"
  )
)