@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
11 lines (10 loc) • 404 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface SecretTargetAttachmentProperties {
SecretId: Value<string>;
TargetType: Value<string>;
TargetId: Value<string>;
}
export default class Inner_SecretTargetAttachment extends ResourceBase<SecretTargetAttachmentProperties> {
constructor(properties: SecretTargetAttachmentProperties);
}