@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
16 lines (15 loc) • 483 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value, List } from "../../data-types";
export declare class TagsEntry {
Value: Value<string>;
Key: Value<string>;
constructor(properties: TagsEntry);
}
export interface ActivityProperties {
Tags?: List<TagsEntry>;
Name: Value<string>;
}
export default class Inner_Activity extends ResourceBase<ActivityProperties> {
static TagsEntry: typeof TagsEntry;
constructor(properties: ActivityProperties);
}