UNPKG
cloud-report
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Collects and analyzes cloud resources
cloud-report
/
types
/
resource.d.ts
13 lines
(12 loc)
•
292 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
SeverityStatus
}
from
"./severity"
;
export
interface
IResourceAnalysisResult
{
action
?:
string
;
message
?:
string
;
resourceSummary
?: {
name
:
string
;
value
:
string
; };
resource
?:
any
;
severity
?:
SeverityStatus
;
title
?:
string
; }