Retrieve Environment Info
| elasticbeanstalk_retrieve_environment_info | R Documentation |
Retrieves the compiled information from a RequestEnvironmentInfo request¶
Description¶
Retrieves the compiled information from a request_environment_info
request.
Related Topics
request_environment_info
Usage¶
Arguments¶
EnvironmentIdThe ID of the data's environment.
If no such environment is found, returns an
InvalidParameterValueerror.Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns
MissingRequiredParametererror.EnvironmentNameThe name of the data's environment.
If no such environment is found, returns an
InvalidParameterValueerror.Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns
MissingRequiredParametererror.InfoType[required] The type of information to retrieve.
Value¶
A list with the following syntax:
list(
EnvironmentInfo = list(
list(
InfoType = "tail"|"bundle",
Ec2InstanceId = "string",
SampleTimestamp = as.POSIXct(
"2015-01-01"
),
Message = "string"
)
)
)
Request syntax¶
svc$retrieve_environment_info(
EnvironmentId = "string",
EnvironmentName = "string",
InfoType = "tail"|"bundle"
)