import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export declare class SSESpecification { SSEEnabled?: Value; constructor(properties: SSESpecification); } export interface ClusterProperties { SSESpecification?: SSESpecification; Description?: Value; ReplicationFactor: Value; ParameterGroupName?: Value; AvailabilityZones?: List>; IAMRoleARN: Value; SubnetGroupName?: Value; PreferredMaintenanceWindow?: Value; NotificationTopicARN?: Value; SecurityGroupIds?: List>; NodeType: Value; ClusterName?: Value; Tags?: { [key: string]: any; }; } export default class Cluster extends ResourceBase { static SSESpecification: typeof SSESpecification; constructor(properties: ClusterProperties); }