aws-cfn-constructor
Version:
Constructor for AWS CloudFormation resources using AWS CDK
19 lines (18 loc) • 444 B
TypeScript
export declare class DynamoDBSdk {
private _client;
/**
* Create a sdk object for amazon dynamodb
* @param config configuration for amazon dynamodb
*/
constructor(config: any);
/**
* Destroy a client for amazon dynamodb
*/
destroy(): void;
/**
* Get a table arn
* @param tableName table name
* @returns arn for table
*/
getTableArn(tableName: string): Promise<string>;
}