Module Values.AwsXrayEncryptionConfigDetailsSource

Information about the encryption configuration for X-Ray.

Sourcetype nonrec t = {
  1. keyId : NonEmptyString.t option;
    (*

    The identifier of the KMS key that is used for encryption. Provided if Type is KMS.

    *)
  2. status : NonEmptyString.t option;
    (*

    The current status of the encryption configuration. Valid values are ACTIVE or UPDATING. When Status is equal to UPDATING, X-Ray might use both the old and new encryption.

    *)
  3. type_ : NonEmptyString.t option;
    (*

    The type of encryption. KMS indicates that the encryption uses KMS keys. NONE indicates the default encryption.

    *)
}
Sourceval make : ?keyId:??? -> ?status:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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