Describe Problem
| applicationinsights_describe_problem | R Documentation | 
Describes an application problem¶
Description¶
Describes an application problem.
Usage¶
applicationinsights_describe_problem(ProblemId, AccountId)
Arguments¶
| ProblemId | [required] The ID of the problem. | 
| AccountId | The Amazon Web Services 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",
    ShortName = "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"
  ),
  SNSNotificationArn = "string"
)
Request syntax¶
svc$describe_problem(
  ProblemId = "string",
  AccountId = "string"
)