Describe Insight
devopsguru_describe_insight | R Documentation |
Returns details about an insight that you specify using its ID¶
Description¶
Returns details about an insight that you specify using its ID.
Usage¶
devopsguru_describe_insight(Id, AccountId)
Arguments¶
Id |
[required] The ID of the insight. |
AccountId |
The ID of the member account in the organization. |
Value¶
A list with the following syntax:
list(
ProactiveInsight = list(
Id = "string",
Name = "string",
Severity = "LOW"|"MEDIUM"|"HIGH",
Status = "ONGOING"|"CLOSED",
InsightTimeRange = list(
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
)
),
PredictionTimeRange = list(
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
)
),
ResourceCollection = list(
CloudFormation = list(
StackNames = list(
"string"
)
),
Tags = list(
list(
AppBoundaryKey = "string",
TagValues = list(
"string"
)
)
)
),
SsmOpsItemId = "string",
Description = "string"
),
ReactiveInsight = list(
Id = "string",
Name = "string",
Severity = "LOW"|"MEDIUM"|"HIGH",
Status = "ONGOING"|"CLOSED",
InsightTimeRange = list(
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
)
),
ResourceCollection = list(
CloudFormation = list(
StackNames = list(
"string"
)
),
Tags = list(
list(
AppBoundaryKey = "string",
TagValues = list(
"string"
)
)
)
),
SsmOpsItemId = "string",
Description = "string"
)
)
Request syntax¶
svc$describe_insight(
Id = "string",
AccountId = "string"
)