Module Values.EncryptionConfigurationSource

Settings to configure server-side encryption. For additional control over security, you can encrypt your data using a customer-managed key for Step Functions state machines and activities. You can configure a symmetric KMS key and data key reuse period when creating or updating a State Machine, and when creating an Activity. The execution history and state machine definition will be encrypted with the key applied to the State Machine. Activity inputs will be encrypted with the key applied to the Activity. Step Functions automatically enables encryption at rest using Amazon Web Services owned keys at no charge. However, KMS charges apply when using a customer managed key. For more information about pricing, see Key Management Service pricing. For more information on KMS, see What is Key Management Service?

Sourcetype nonrec t = {
  1. kmsKeyId : KmsKeyId.t option;
    (*

    An alias, alias ARN, key ID, or key ARN of a symmetric encryption KMS key to encrypt data. To specify a KMS key in a different Amazon Web Services account, you must use the key ARN or alias ARN.

    *)
  2. kmsDataKeyReusePeriodSeconds : KmsDataKeyReusePeriodSeconds.t option;
    (*

    Maximum duration that Step Functions will reuse data keys. When the period expires, Step Functions will call GenerateDataKey. Only applies to customer managed keys.

    *)
  3. type_ : EncryptionType.t;
    (*

    Encryption type

    *)
}
Sourceval context_ : string
Sourceval make : ?kmsKeyId:??? -> ?kmsDataKeyReusePeriodSeconds:??? -> type_:EncryptionType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of KmsDataKeyReusePeriodSeconds.t | `String of KmsKeyId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t