11 lines
343 B
TypeScript
11 lines
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);
|
|
}
|