Module Values.EncryptionStateSource

A structure that contains the encryption configuration for the policy store and child resources. This data type is used as a response parameter field for the GetPolicyStore operation.

Sourcetype nonrec t = {
  1. kmsEncryptionState : KmsEncryptionState.t option;
    (*

    The KMS encryption settings currently configured for this policy store to encrypt data with. It contains the customer-managed KMS key, and a user-defined encryption context.

    *)
  2. default : Unit.t option;
    (*

    This is the default encryption state. The policy store is encrypted using an Amazon Web Services owned key.

    *)
}
Sourceval make : ?kmsEncryptionState:??? -> ?default:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Map of ([> `String of EncryptionContextKey.t ] * [> `String of EncryptionContextValue.t ]) list | `String of KmsKey.t ]) list ]) 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