@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
13 lines (12 loc) • 426 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface ThreatIntelSetProperties {
Format: Value<string>;
Activate: Value<boolean>;
DetectorId: Value<string>;
Name?: Value<string>;
Location: Value<string>;
}
export default class Inner_ThreatIntelSet extends ResourceBase<ThreatIntelSetProperties> {
constructor(properties: ThreatIntelSetProperties);
}