paws.compute (version 0.1.0)

elasticbeanstalk_retrieve_environment_info: Retrieves the compiled information from a RequestEnvironmentInfo request

Description

Retrieves the compiled information from a RequestEnvironmentInfo request.

Usage

elasticbeanstalk_retrieve_environment_info(EnvironmentId,
  EnvironmentName, InfoType)

Arguments

EnvironmentId

The ID of the data's environment.

If no such environment is found, returns an InvalidParameterValue error.

Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter error.

EnvironmentName

The name of the data's environment.

If no such environment is found, returns an InvalidParameterValue error.

Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter error.

InfoType

[required] The type of information to retrieve.

Request syntax

svc$retrieve_environment_info(
  EnvironmentId = "string",
  EnvironmentName = "string",
  InfoType = "tail"|"bundle"
)

Details

Related Topics

  • RequestEnvironmentInfo

Examples

Run this code
# NOT RUN {
# The following operation retrieves a link to logs from an environment
# named my-env:
# }
# NOT RUN {
svc$retrieve_environment_info(
  EnvironmentName = "my-env",
  InfoType = "tail"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab