UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

32 lines (31 loc) 1.08 kB
import { ResourceBase } from "../../resource"; import { Value, MapOf } from "../../data-types"; export declare class SkillPackage { S3BucketRole?: Value<string>; S3ObjectVersion?: Value<string>; S3Bucket: Value<string>; S3Key: Value<string>; Overrides?: Overrides; constructor(properties: SkillPackage); } export declare class AuthenticationConfiguration { RefreshToken: Value<string>; ClientSecret: Value<string>; ClientId: Value<string>; constructor(properties: AuthenticationConfiguration); } export declare class Overrides { Manifest?: MapOf<any>; constructor(properties: Overrides); } export interface SkillProperties { AuthenticationConfiguration: AuthenticationConfiguration; VendorId: Value<string>; SkillPackage: SkillPackage; } export default class Inner_Skill extends ResourceBase<SkillProperties> { static SkillPackage: typeof SkillPackage; static AuthenticationConfiguration: typeof AuthenticationConfiguration; static Overrides: typeof Overrides; constructor(properties: SkillProperties); }