UNPKG

559 BTypeScriptView Raw
1/** @module build */
2import { Factory } from 'pip-services3-components-node';
3import { Descriptor } from 'pip-services3-commons-node';
4/**
5 * Creates AWS components by their descriptors.
6 *
7 * @see [[CloudWatchLogger]]
8 * @see [[CloudWatchCounters]]
9 */
10export declare class DefaultAwsFactory extends Factory {
11 static readonly Descriptor: Descriptor;
12 static readonly CloudWatchLoggerDescriptor: Descriptor;
13 static readonly CloudWatchCountersDescriptor: Descriptor;
14 /**
15 * Create a new instance of the factory.
16 */
17 constructor();
18}