import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export declare class ConfigSnapshotDeliveryProperties { DeliveryFrequency?: Value; constructor(properties: ConfigSnapshotDeliveryProperties); } export interface DeliveryChannelProperties { ConfigSnapshotDeliveryProperties?: ConfigSnapshotDeliveryProperties; Name?: Value; S3BucketName: Value; S3KeyPrefix?: Value; S3KmsKeyArn?: Value; SnsTopicARN?: Value; } export default class DeliveryChannel extends ResourceBase { static ConfigSnapshotDeliveryProperties: typeof ConfigSnapshotDeliveryProperties; constructor(properties: DeliveryChannelProperties); }