-
Notifications
You must be signed in to change notification settings - Fork 4k
/
table-v2-base.ts
460 lines (409 loc) · 15.9 KB
/
table-v2-base.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
import { DynamoDBMetrics } from './dynamodb-canned-metrics.generated';
import * as perms from './perms';
import { Operation, SystemErrorsForOperationsMetricOptions, OperationsMetricOptions, ITable } from './shared';
import { IMetric, MathExpression, Metric, MetricOptions, MetricProps } from '../../aws-cloudwatch';
import { Grant, IGrantable } from '../../aws-iam';
import { IKey } from '../../aws-kms';
import { Resource } from '../../core';
/**
* Represents an instance of a DynamoDB table.
*/
export interface ITableV2 extends ITable {
/**
* The ID of the table.
*
* @attribute
*/
readonly tableId?: string;
}
/**
* Base class for a DynamoDB table.
*/
export abstract class TableBaseV2 extends Resource implements ITableV2 {
/**
* The ARN of the table.
*
* @attribute
*/
public abstract readonly tableArn: string;
/**
* The name of the table.
*
* @attribute
*/
public abstract readonly tableName: string;
/**
* The stream ARN of the table.
*
* @attribute
*/
public abstract readonly tableStreamArn?: string;
/**
* The ID of the table.
*
* @attribute
*/
public abstract readonly tableId?: string;
/**
* The KMS encryption key for the table.
*/
public abstract readonly encryptionKey?: IKey;
protected abstract readonly region: string;
protected abstract get hasIndex(): boolean;
/**
* Adds an IAM policy statement associated with this table to an IAM principal's policy.
*
* Note: If `encryptionKey` is present, appropriate grants to the key needs to be added
* separately using the `table.encryptionKey.grant*` methods.
*
* @param grantee the principal (no-op if undefined)
* @param actions the set of actions to allow (i.e., 'dynamodb:PutItem', 'dynamodb:GetItem', etc.)
*/
public grant(grantee: IGrantable, ...actions: string[]): Grant {
const resourceArns = [this.tableArn];
this.hasIndex && resourceArns.push(`${this.tableArn}/index/*`);
return Grant.addToPrincipal({
grantee,
actions,
resourceArns,
scope: this,
});
}
/**
* Adds an IAM policy statement associated with this table to an IAM principal's policy.
*
* Note: If `encryptionKey` is present, appropriate grants to the key needs to be added
* separately using the `table.encryptionKey.grant*` methods.
*
* @param grantee the principal (no-op if undefined)
* @param actions the set of actions to allow (i.e., 'dynamodb:DescribeStream', 'dynamodb:GetRecords', etc.)
*/
public grantStream(grantee: IGrantable, ...actions: string[]): Grant {
if (!this.tableStreamArn) {
throw new Error(`No stream ARN found on the table ${this.node.path}`);
}
return Grant.addToPrincipal({
grantee,
actions,
resourceArns: [this.tableStreamArn],
});
}
/**
* Adds an IAM policy statement associated with this table to an IAM principal's policy.
*
* Actions: DescribeStream, GetRecords, GetShardIterator, ListStreams.
*
* Note: Appropriate grants will also be added to the customer-managed KMS keys associated with this
* table if one was configured.
*
* @param grantee the principal to grant access to
*/
public grantStreamRead(grantee: IGrantable): Grant {
this.grantTableListStreams(grantee);
const keyActions = perms.KEY_READ_ACTIONS;
const streamActions = perms.READ_STREAM_DATA_ACTIONS;
return this.combinedGrant(grantee, { keyActions, streamActions });
}
/**
* Permits an IAM principal to list streams attached to this table.
*
* @param grantee the principal to grant access to
*/
public grantTableListStreams(grantee: IGrantable): Grant {
if (!this.tableStreamArn) {
throw new Error(`No stream ARN found on the table ${this.node.path}`);
}
return Grant.addToPrincipal({
grantee,
actions: ['dynamodb:ListStreams'],
resourceArns: [this.tableStreamArn],
});
}
/**
* Permits an IAM principal all data read operations on this table.
*
* Actions: BatchGetItem, GetRecords, GetShardIterator, Query, GetItem, Scan, DescribeTable.
*
* Note: Appropriate grants will also be added to the customer-managed KMS keys associated with this
* table if one was configured.
*
* @param grantee the principal to grant access to
*/
public grantReadData(grantee: IGrantable): Grant {
const tableActions = perms.READ_DATA_ACTIONS.concat(perms.DESCRIBE_TABLE);
return this.combinedGrant(grantee, { keyActions: perms.KEY_READ_ACTIONS, tableActions });
}
/**
* Permits an IAM principal all data write operations on this table.
*
* Actions: BatchWriteItem, PutItem, UpdateItem, DeleteItem, DescribeTable.
*
* Note: Appropriate grants will also be added to the customer-managed KMS keys associated with this
* table if one was configured.
*
* @param grantee the principal to grant access to
*/
public grantWriteData(grantee: IGrantable): Grant {
const tableActions = perms.WRITE_DATA_ACTIONS.concat(perms.DESCRIBE_TABLE);
const keyActions = perms.KEY_READ_ACTIONS.concat(perms.KEY_WRITE_ACTIONS);
return this.combinedGrant(grantee, { keyActions, tableActions });
}
/**
* Permits an IAM principal to all data read/write operations on this table.
*
* Actions: BatchGetItem, GetRecords, GetShardIterator, Query, GetItem, Scan, BatchWriteItem, PutItem, UpdateItem,
* DeleteItem, DescribeTable.
*
* Note: Appropriate grants will also be added to the customer-managed KMS keys associated with this
* table if one was configured.
*
* @param grantee the principal to grant access to
*/
public grantReadWriteData(grantee: IGrantable): Grant {
const tableActions = perms.READ_DATA_ACTIONS.concat(perms.WRITE_DATA_ACTIONS).concat(perms.DESCRIBE_TABLE);
const keyActions = perms.KEY_READ_ACTIONS.concat(perms.KEY_WRITE_ACTIONS);
return this.combinedGrant(grantee, { keyActions, tableActions });
}
/**
* Permits an IAM principal to all DynamoDB operations ('dynamodb:*') on this table.
*
* Note: Appropriate grants will also be added to the customer-managed KMS keys associated with this
* table if one was configured.
*
* @param grantee the principal to grant access to
*/
public grantFullAccess(grantee: IGrantable): Grant {
const keyActions = perms.KEY_READ_ACTIONS.concat(perms.KEY_WRITE_ACTIONS);
return this.combinedGrant(grantee, { keyActions, tableActions: ['dynamodb:*'] });
}
/**
* Return the given named metric for this table.
*
* By default, the metric will be calculated as a sum over a period of 5 minutes.
* You can customize this by using the `statistic` and `period` properties.
*/
public metric(metricName: string, props?: MetricOptions): Metric {
const metricProps: MetricProps = {
namespace: 'AWS/DynamoDB',
metricName,
dimensionsMap: { TableName: this.tableName },
...props,
};
return this.configureMetric(metricProps);
}
/**
* Metric for the consumed read capacity units for this table.
*
* By default, the metric will be calculated as a sum over a period of 5 minutes.
* You can customize this by using the `statistic` and `period` properties.
*/
public metricConsumedReadCapacityUnits(props?: MetricOptions): Metric {
const metricProps: MetricProps = {
...DynamoDBMetrics.consumedReadCapacityUnitsSum({ TableName: this.tableName }),
...props,
};
return this.configureMetric(metricProps);
}
/**
* Metric for the consumed write capacity units for this table.
*
* By default, the metric will be calculated as a sum over a period of 5 minutes.
* You can customize this by using the `statistic` and `period` properties.
*/
public metricConsumedWriteCapacityUnits(props?: MetricOptions): Metric {
const metricProps: MetricProps = {
...DynamoDBMetrics.consumedWriteCapacityUnitsSum({ TableName: this.tableName }),
...props,
};
return this.configureMetric(metricProps);
}
/**
* Metric for the user errors for this table.
*
* Note: This metric reports user errors across all the tables in the account and region the table
* resides in.
*
* By default, the metric will be calculated as a sum over a period of 5 minutes.
* You can customize this by using the `statistic` and `period` properties.
*/
public metricUserErrors(props?: MetricOptions): Metric {
if (props?.dimensions) {
throw new Error('`dimensions` is not supported for the `UserErrors` metric');
}
return this.metric('UserErrors', { statistic: 'sum', ...props, dimensionsMap: {} });
}
/**
* Metric for the conditional check failed requests for this table.
*
* By default, the metric will be calculated as a sum over a period of 5 minutes.
* You can customize this by using the `statistic` and `period` properties.
*/
public metricConditionalCheckFailedRequests(props?: MetricOptions): Metric {
return this.metric('ConditionalCheckFailedRequests', { statistic: 'sum', ...props });
}
/**
* Metric for the successful request latency for this table.
*
* By default, the metric will be calculated as an average over a period of 5 minutes.
* You can customize this by using the `statistic` and `period` properties.
*/
public metricSuccessfulRequestLatency(props?: MetricOptions): Metric {
if (!props?.dimensions?.Operation && !props?.dimensionsMap?.Operation) {
throw new Error('`Operation` dimension must be passed for the `SuccessfulRequestLatency` metric');
}
const dimensionsMap = {
TableName: this.tableName,
Operation: props.dimensionsMap?.Operation ?? props.dimensions?.Operation,
};
const metricProps: MetricProps = {
...DynamoDBMetrics.successfulRequestLatencyAverage(dimensionsMap),
...props,
dimensionsMap,
};
return this.configureMetric(metricProps);
}
/**
* How many requests are throttled on this table for the given operation
*
* By default, the metric will be calculated as an average over a period of 5 minutes.
* You can customize this by using the `statistic` and `period` properties.
*/
public metricThrottledRequestsForOperation(operation: string, props?: OperationsMetricOptions): IMetric {
const metricProps: MetricProps = {
...DynamoDBMetrics.throttledRequestsSum({ Operation: operation, TableName: this.tableName }),
...props,
};
return this.configureMetric(metricProps);
}
/**
* How many requests are throttled on this table. This will sum errors across all possible operations.
*
* By default, each individual metric will be calculated as a sum over a period of 5 minutes.
* You can customize this by using the `statistic` and `period` properties.
*/
public metricThrottledRequestsForOperations(props?: OperationsMetricOptions): IMetric {
return this.sumMetricsForOperations('ThrottledRequests', 'Sum of throttled requests across all operations', props);
}
/**
* Metric for the system errors for this table. This will sum errors across all possible operations.
*
* By default, each individual metric will be calculated as a sum over a period of 5 minutes.
* You can customize this by using the `statistic` and `period` properties.
*/
public metricSystemErrorsForOperations(props?: SystemErrorsForOperationsMetricOptions): IMetric {
return this.sumMetricsForOperations('SystemErrors', 'Sum of errors across all operations', props);
}
/**
* How many requests are throttled on this table.
*
* By default, each individual metric will be calculated as a sum over a period of 5 minutes.
* You can customize this by using the `statistic` and `period` properties.
*
* @deprecated Do not use this function. It returns an invalid metric. Use `metricThrottledRequestsForOperation` instead.
*/
public metricThrottledRequests(props?: MetricOptions): Metric {
return this.metric('ThrottledRequests', { statistic: 'sum', ...props });
}
/**
* Metric for the system errors this table
*
* @deprecated use `metricSystemErrorsForOperations`.
*/
public metricSystemErrors(props?: MetricOptions): Metric {
if (!props?.dimensions?.Operation && !props?.dimensionsMap?.Operation) {
// 'Operation' must be passed because its an operational metric.
throw new Error("'Operation' dimension must be passed for the 'SystemErrors' metric.");
}
const dimensionsMap = {
TableName: this.tableName,
...props?.dimensions ?? {},
...props?.dimensionsMap ?? {},
};
return this.metric('SystemErrors', { statistic: 'sum', ...props, dimensionsMap });
}
/**
* Create a math expression for operations.
*/
private sumMetricsForOperations(metricName: string, expressionLabel: string, props?: OperationsMetricOptions) {
if (props?.dimensions?.Operation) {
throw new Error('The Operation dimension is not supported. Use the `operations` property');
}
const operations = props?.operations ?? Object.values(Operation);
const values = this.createMetricForOperations(metricName, operations, { statistic: 'sum', ...props });
const sum = new MathExpression({
expression: `${Object.keys(values).join(' + ')}`,
usingMetrics: { ...values },
color: props?.color,
label: expressionLabel,
period: props?.period,
});
return sum;
}
/**
* Create a map of metrics that can be used in a math expression.
*
* Using the return value of this function as the `usingMetrics` property in `cloudwatch.MathExpression` allows you to
* use the keys of this map as metric names inside you expression.
*/
private createMetricForOperations(metricName: string, operations: Operation[], props?: MetricOptions,
metricNameMapper?: (op: Operation) => string) {
const metrics: Record<string, IMetric> = {};
const mapper = metricNameMapper ?? (op => op.toLowerCase());
if (props?.dimensions?.Operation) {
throw new Error('Invalid properties. Operation dimension is not supported when calculating operational metrics');
}
for (const operation of operations) {
const metric = this.metric(metricName, {
...props,
dimensionsMap: { TableName: this.tableName, Operation: operation, ...props?.dimensions },
});
const operationMetricName = mapper(operation);
const firstChar = operationMetricName.charAt(0);
if (firstChar === firstChar.toUpperCase()) {
throw new Error(`Mapper generated an illegal operation metric name: ${operationMetricName}. Must start with a lowercase letter`);
}
metrics[operationMetricName] = metric;
}
return metrics;
}
/**
* Adds an IAM policy statement associated with this table to an IAM principal's policy.
*
* @param grantee the principal (no-op if undefined)
* @param options options for keyActions, tableActions, and streamActions
*/
private combinedGrant(grantee: IGrantable, options: { keyActions?: string[]; tableActions?: string[]; streamActions?: string[] }) {
if (options.keyActions && this.encryptionKey) {
this.encryptionKey.grant(grantee, ...options.keyActions);
}
if (options.tableActions) {
const resourceArns = [this.tableArn];
this.hasIndex && resourceArns.push(`${this.tableArn}/index/*`);
return Grant.addToPrincipal({
grantee,
actions: options.tableActions,
resourceArns,
scope: this,
});
}
if (options.streamActions) {
if (!this.tableStreamArn) {
throw new Error(`No stream ARNs found on the table ${this.node.path}`);
}
return Grant.addToPrincipal({
grantee,
actions: options.streamActions,
resourceArns: [this.tableStreamArn],
scope: this,
});
}
throw new Error(`Unexpected 'action', ${options.tableActions || options.streamActions}`);
}
private configureMetric(props: MetricProps) {
return new Metric({
...props,
region: props?.region ?? this.region,
account: props?.account ?? this.stack.account,
});
}
}