@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
20 lines (19 loc) • 601 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 SchemaProperties {
Type: Value<string>;
Description?: Value<string>;
Content: Value<string>;
RegistryName: Value<string>;
SchemaName?: Value<string>;
Tags?: List<TagsEntry>;
}
export default class Inner_Schema extends ResourceBase<SchemaProperties> {
static TagsEntry: typeof TagsEntry;
constructor(properties: SchemaProperties);
}