@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
17 lines (16 loc) • 525 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 RegistryProperties {
Description?: Value<string>;
RegistryName?: Value<string>;
Tags?: List<TagsEntry>;
}
export default class Inner_Registry extends ResourceBase<RegistryProperties> {
static TagsEntry: typeof TagsEntry;
constructor(properties: RegistryProperties);
}