UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

25 lines (24 loc) 822 B
import { ResourceBase } from "../../resource"; import { Value, List } from "../../data-types"; export declare class MailFromAttributes { MailFromDomain?: Value<string>; BehaviorOnMxFailure?: Value<string>; constructor(properties: MailFromAttributes); } export declare class Tags { Value?: Value<string>; Key?: Value<string>; constructor(properties: Tags); } export interface IdentityProperties { FeedbackForwardingEnabled?: Value<boolean>; DkimSigningEnabled?: Value<boolean>; Tags?: List<Tags>; Name: Value<string>; MailFromAttributes?: MailFromAttributes; } export default class Inner_Identity extends ResourceBase<IdentityProperties> { static MailFromAttributes: typeof MailFromAttributes; static Tags: typeof Tags; constructor(properties: IdentityProperties); }