Describe Problem
applicationinsights_describe_problem | R Documentation |
Describes an application problem¶
Description¶
Describes an application problem.
Usage¶
Arguments¶
ProblemId
[required] The ID of the problem.
AccountId
The AWS account ID for the owner of the resource group affected by the problem.
Value¶
A list with the following syntax:
list(
Problem = list(
Id = "string",
Title = "string",
Insights = "string",
Status = "IGNORE"|"RESOLVED"|"PENDING"|"RECURRING"|"RECOVERING",
AffectedResource = "string",
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
SeverityLevel = "Informative"|"Low"|"Medium"|"High",
AccountId = "string",
ResourceGroupName = "string",
Feedback = list(
"NOT_SPECIFIED"|"USEFUL"|"NOT_USEFUL"
),
RecurringCount = 123,
LastRecurrenceTime = as.POSIXct(
"2015-01-01"
),
Visibility = "IGNORED"|"VISIBLE",
ResolutionMethod = "MANUAL"|"AUTOMATIC"|"UNRESOLVED"
)
)