-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Expand file tree
/
Copy pathtable-v2-base.ts
More file actions
571 lines (511 loc) · 19.8 KB
/
table-v2-base.ts
File metadata and controls
571 lines (511 loc) · 19.8 KB
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
import { DynamoDBMetrics } from './dynamodb-canned-metrics.generated';
import * as perms from './perms';
import type { SystemErrorsForOperationsMetricOptions, OperationsMetricOptions, ITable } from './shared';
import { Operation } from './shared';
import type { TableGrants } from './table-grants';
import type { IMetric, MetricOptions, MetricProps } from '../../aws-cloudwatch';
import { MathExpression, Metric } from '../../aws-cloudwatch';
import type { AddToResourcePolicyResult, GrantOnKeyResult, IGrantable, IResourceWithPolicy, PolicyDocument, PolicyStatement } from '../../aws-iam';
import { Grant } from '../../aws-iam';
import type { IKey } from '../../aws-kms';
import { Annotations, Resource, ValidationError } from '../../core';
import { isServicePrincipal } from './private/principal-utils';
import type { TableReference } from '../../interfaces/generated/aws-dynamodb-interfaces.generated';
/**
* Represents an instance of a DynamoDB table.
*/
export interface ITableV2 extends ITable {
/**
* The ID of the table.
*
* @attribute
*/
readonly tableId?: string;
/**
* Grants for this table
*/
readonly grants: TableGrants;
}
/**
* Base class for a DynamoDB table.
*/
export abstract class TableBaseV2 extends Resource implements ITableV2, IResourceWithPolicy {
/**
* 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;
/**
* Grants for this table.
*/
public abstract readonly grants: TableGrants;
/**
* The KMS encryption key for the table.
*/
public abstract readonly encryptionKey?: IKey;
/**
* The resource policy for the table
*/
public abstract resourcePolicy?: PolicyDocument;
protected abstract readonly region: string;
protected abstract get hasIndex(): boolean;
/**
* A reference to this table.
*/
public get tableRef(): TableReference {
return {
tableName: this.tableName,
tableArn: this.tableArn,
};
}
/**
* 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.
*
* [disable-awslint:no-grants]
*
* @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 {
if (isServicePrincipal(grantee.grantPrincipal)) {
return this.dropServicePrincipalGrant(grantee);
}
const resourceArns = [this.tableArn];
this.hasIndex && resourceArns.push(`${this.tableArn}/index/*`);
return Grant.addToPrincipalOrResource({
grantee,
actions,
resourceArns,
resource: 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.
*
* [disable-awslint:no-grants]
*
* @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 ValidationError('StreamFoundTable', `No stream ARN found on the table ${this.node.path}`, this);
}
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.
*
* [disable-awslint:no-grants]
*
* @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.
*
* [disable-awslint:no-grants]
*
* @param grantee the principal to grant access to
*/
public grantTableListStreams(grantee: IGrantable): Grant {
if (!this.tableStreamArn) {
throw new ValidationError('StreamFoundTable', `No stream ARN found on the table ${this.node.path}`, this);
}
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.
*
* [disable-awslint:no-grants]
*
* @param grantee the principal to grant access to
*/
public grantReadData(grantee: IGrantable): Grant {
const tableActions = perms.RESOURCE_READ_DATA_ACTIONS.concat(perms.DESCRIBE_TABLE);
return this.combinedGrant(grantee, {
keyActions: perms.KEY_READ_ACTIONS,
tableActions,
tablePrinicipalExclusiveActions: perms.PRINCIPAL_ONLY_READ_DATA_ACTIONS,
});
}
/**
* 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.
*
* [disable-awslint:no-grants]
*
* @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.
*
* [disable-awslint:no-grants]
*
* @param grantee the principal to grant access to
*/
public grantReadWriteData(grantee: IGrantable): Grant {
const tableActions = perms.RESOURCE_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,
tablePrinicipalExclusiveActions: perms.PRINCIPAL_ONLY_READ_DATA_ACTIONS,
});
}
/**
* 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.
*
* [disable-awslint:no-grants]
*
* @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:*'] });
}
/**
* Grants permissions on the table's encryption key.
*
* @param grantee the principal to grant access to
* @param actions the KMS actions to grant
*/
public grantOnKey(grantee: IGrantable, ...actions: string[]): GrantOnKeyResult {
return {
grant: this.encryptionKey?.grant(grantee, ...actions),
};
}
/**
* 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 ValidationError('SupportedMetric', '`dimensions` is not supported for the `UserErrors` metric', this);
}
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 ValidationError('MustBeDimensionPassedMetric', '`Operation` dimension must be passed for the `SuccessfulRequestLatency` metric', this);
}
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 ValidationError('MustBeOperationDimensionPassed', "'Operation' dimension must be passed for the 'SystemErrors' metric.", this);
}
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 ValidationError('OperationDimensionSupported', 'The Operation dimension is not supported. Use the `operations` property', this);
}
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 ValidationError('InvalidPropertiesOperationDimensionSupported', 'Invalid properties. Operation dimension is not supported when calculating operational metrics', this);
}
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 ValidationError('MapperGeneratedIllegalOperationMetric', `Mapper generated an illegal operation metric name: ${operationMetricName}. Must start with a lowercase letter`, this);
}
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[];
tablePrinicipalExclusiveActions?: string[];
streamActions?: string[];
}) {
if (isServicePrincipal(grantee.grantPrincipal)) {
return this.dropServicePrincipalGrant(grantee);
}
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/*`);
const result = Grant.addToPrincipalOrResource({
grantee,
actions: options.tableActions,
resourceArns,
// Use wildcard for resource policy to avoid circular dependency when grantee is a resource principal
// (e.g., AccountRootPrincipal). This follows the same pattern as KMS (aws-kms/lib/key.ts).
// resourceArns is used for principal policies, resourceSelfArns is used for resource policies.
resourceSelfArns: ['*'],
resource: this,
});
if (options.tablePrinicipalExclusiveActions) {
return result.combine(Grant.addToPrincipal({
grantee,
actions: options.tablePrinicipalExclusiveActions,
resourceArns,
}));
}
return result;
}
if (options.streamActions) {
if (!this.tableStreamArn) {
throw new ValidationError('StreamNsFoundTable', `No stream ARNs found on the table ${this.node.path}`, this);
}
return Grant.addToPrincipal({
grantee,
actions: options.streamActions,
resourceArns: [this.tableStreamArn],
});
}
throw new ValidationError('UnexpectedAction', `Unexpected 'action', ${options.tableActions || options.streamActions}`, this);
}
private configureMetric(props: MetricProps) {
return new Metric({
...props,
region: props?.region ?? this.region,
account: props?.account ?? this.stack.account,
});
}
private dropServicePrincipalGrant(grantee: IGrantable): Grant {
Annotations.of(this).addWarningV2(
'@aws-cdk/aws-dynamodb:servicePrincipalGrantDropped',
'DynamoDB grant* methods do not support ServicePrincipal grantees. ' +
'Use table.addToResourcePolicy() for an explicit service-specific table policy ' +
'with required service principal, actions, and conditions',
);
return Grant.drop(grantee, 'DynamoDB grant* does not support ServicePrincipal grantees');
}
/**
* Adds a statement to the resource policy associated with this table.
* A resource policy will be automatically created upon the first call to `addToResourcePolicy`.
*
* Note that this does not work with imported tables.
*
* @param statement The policy statement to add
*/
public abstract addToResourcePolicy(statement: PolicyStatement): AddToResourcePolicyResult;
}