@cumulus/common
Version:
Common utilities used across tasks
22 lines • 479 B
TypeScript
export declare type AwsCloudWatchEvent = {
id: string;
'detail-type': string;
source: string;
account: string;
time: string;
region: string;
resources: string[];
detail: {
status?: string;
input?: string;
output?: string;
};
};
export declare type BucketConfig = {
name: string;
type: string;
};
export declare type BucketsConfigObject = {
[key: string]: BucketConfig;
};
//# sourceMappingURL=types.d.ts.map