import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export interface LaunchNotificationConstraintProperties { Description?: Value; NotificationArns: List>; AcceptLanguage?: Value; PortfolioId: Value; ProductId: Value; } export default class LaunchNotificationConstraint extends ResourceBase { constructor(properties: LaunchNotificationConstraintProperties); }