@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
11 lines (10 loc) • 392 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value, List } from "../../data-types";
export interface InstanceProfileProperties {
InstanceProfileName?: Value<string>;
Path?: Value<string>;
Roles: List<Value<string>>;
}
export default class Inner_InstanceProfile extends ResourceBase<InstanceProfileProperties> {
constructor(properties: InstanceProfileProperties);
}