Returns list of event descriptions matching criteria up to the last 6 weeks.
This action returns the most recent 1,000 events from the specified
NextToken
.
elasticbeanstalk_describe_events(ApplicationName, VersionLabel,
TemplateName, EnvironmentId, EnvironmentName, PlatformArn, RequestId,
Severity, StartTime, EndTime, MaxRecords, NextToken)
A list with the following syntax:
list(
Events = list(
list(
EventDate = as.POSIXct(
"2015-01-01"
),
Message = "string",
ApplicationName = "string",
VersionLabel = "string",
TemplateName = "string",
EnvironmentName = "string",
PlatformArn = "string",
RequestId = "string",
Severity = "TRACE"|"DEBUG"|"INFO"|"WARN"|"ERROR"|"FATAL"
)
),
NextToken = "string"
)
If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those associated with this application.
If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this application version.
If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that are associated with this environment configuration.
If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this environment.
If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this environment.
The ARN of a custom platform version. If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this custom platform version.
If specified, AWS Elastic Beanstalk restricts the described events to include only those associated with this request ID.
If specified, limits the events returned from this call to include only those with the specified severity or higher.
If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that occur on or after this time.
If specified, AWS Elastic Beanstalk restricts the returned descriptions
to those that occur up to, but not including, the EndTime
.
Specifies the maximum number of events that can be returned, beginning with the most recent event.
Pagination token. If specified, the events return the next batch of results.
svc$describe_events(
ApplicationName = "string",
VersionLabel = "string",
TemplateName = "string",
EnvironmentId = "string",
EnvironmentName = "string",
PlatformArn = "string",
RequestId = "string",
Severity = "TRACE"|"DEBUG"|"INFO"|"WARN"|"ERROR"|"FATAL",
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
MaxRecords = 123,
NextToken = "string"
)
if (FALSE) {
# The following operation retrieves events for an environment named
# my-env:
svc$describe_events(
EnvironmentName = "my-env"
)
}
Run the code above in your browser using DataLab