UNPKG
@khulnasoft/cdk
Version:
latest (0.0.46)
0.0.46
Define your observability as code using the AWS CDK
github.com/khulnasoft/cdk
khulnasoft/cdk
@khulnasoft/cdk
/
dist
/
resources
/
alert.d.ts
6 lines
(5 loc)
•
214 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
CfnResource
}
from
"aws-cdk-lib"
;
import
{
AlertProps
}
from
"../types/alert"
;
export
declare
class
Alert
<
TKey
extends
string
>
extends
CfnResource
{
constructor
(
id
:
string
,
props
:
AlertProps
<
TKey
>
); }