agent-claw: automated task changes
This commit is contained in:
39
cdk/node_modules/aws-cdk-lib/aws-dynamodb/lib/encryption.d.ts
generated
vendored
Normal file
39
cdk/node_modules/aws-cdk-lib/aws-dynamodb/lib/encryption.d.ts
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
import type { Construct } from 'constructs';
|
||||
import { TableEncryption } from './shared';
|
||||
import type { IKey } from '../../aws-kms';
|
||||
/**
|
||||
* Represents server-side encryption for a DynamoDB table.
|
||||
*/
|
||||
export declare abstract class TableEncryptionV2 {
|
||||
readonly type: TableEncryption;
|
||||
readonly tableKey?: IKey | undefined;
|
||||
readonly replicaKeyArns?: {
|
||||
[region: string]: string;
|
||||
} | undefined;
|
||||
/**
|
||||
* Configure server-side encryption using a DynamoDB owned key.
|
||||
*/
|
||||
static dynamoOwnedKey(): TableEncryptionV2;
|
||||
/**
|
||||
* Configure server-side encryption using an AWS managed key.
|
||||
*/
|
||||
static awsManagedKey(): TableEncryptionV2;
|
||||
/**
|
||||
* Configure server-side encryption using customer managed keys.
|
||||
*
|
||||
* @param tableKey the KMS key for the primary table.
|
||||
* @param replicaKeyArns an object containing the ARN of the KMS key to use for each replica table.
|
||||
*/
|
||||
static customerManagedKey(tableKey: IKey, replicaKeyArns?: {
|
||||
[region: string]: string;
|
||||
}): TableEncryptionV2;
|
||||
private constructor();
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
abstract _renderSseSpecification(): any;
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
abstract _renderReplicaSseSpecification(scope: Construct, region: string): any;
|
||||
}
|
||||
Reference in New Issue
Block a user