aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
11 lines (10 loc) • 343 B
TypeScript
/**
* Base class for creating an EncryptionConfiguration for either state machines or activities.
*/
export declare abstract class EncryptionConfiguration {
/**
* Encryption option for the state machine or activity. Can be either CUSTOMER_MANAGED_KMS_KEY or AWS_OWNED_KEY.
*/
type: string;
constructor(type: string);
}