paws.compute (version 0.1.0)

elasticbeanstalk_describe_instances_health: Retrieves detailed information about the health of instances in your AWS Elastic Beanstalk

Description

Retrieves detailed information about the health of instances in your AWS Elastic Beanstalk. This operation requires enhanced health reporting.

Usage

elasticbeanstalk_describe_instances_health(EnvironmentName,
  EnvironmentId, AttributeNames, NextToken)

Arguments

EnvironmentName

Specify the AWS Elastic Beanstalk environment by name.

EnvironmentId

Specify the AWS Elastic Beanstalk environment by ID.

AttributeNames

Specifies the response elements you wish to receive. To retrieve all attributes, set to All. If no attribute names are specified, returns a list of instances.

NextToken

Specify the pagination token returned by a previous call.

Request syntax

svc$describe_instances_health(
  EnvironmentName = "string",
  EnvironmentId = "string",
  AttributeNames = list(
    "HealthStatus"|"Color"|"Causes"|"ApplicationMetrics"|"RefreshedAt"|"LaunchedAt"|"System"|"Deployment"|"AvailabilityZone"|"InstanceType"|"All"
  ),
  NextToken = "string"
)

Examples

Run this code
# NOT RUN {
# The following operation retrieves health information for instances in an
# environment named my-env:
# }
# NOT RUN {
svc$describe_instances_health(
  AttributeNames = list(
    "All"
  ),
  EnvironmentName = "my-env"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace