@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
11 lines (10 loc) • 397 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface ServiceLinkedRoleProperties {
CustomSuffix?: Value<string>;
Description?: Value<string>;
AWSServiceName: Value<string>;
}
export default class Inner_ServiceLinkedRole extends ResourceBase<ServiceLinkedRoleProperties> {
constructor(properties: ServiceLinkedRoleProperties);
}