UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

23 lines (22 loc) 800 B
import { ResourceBase } from "../../resource"; import { Value, List, MapOf } from "../../data-types"; export interface DevEndpointProperties { EndpointName?: Value<string>; GlueVersion?: Value<string>; RoleArn: Value<string>; ExtraJarsS3Path?: Value<string>; NumberOfNodes?: Value<number>; NumberOfWorkers?: Value<number>; Arguments?: MapOf<any>; SecurityConfiguration?: Value<string>; PublicKey?: Value<string>; SubnetId?: Value<string>; WorkerType?: Value<string>; Tags?: MapOf<any>; SecurityGroupIds?: List<Value<string>>; PublicKeys?: List<Value<string>>; ExtraPythonLibsS3Path?: Value<string>; } export default class Inner_DevEndpoint extends ResourceBase<DevEndpointProperties> { constructor(properties: DevEndpointProperties); }