Module Values.KmsAccessSource

Configuration for Amazon Web Services Key Management Service (KMS) access from the ODB network.

Sourcetype nonrec t = {
  1. status : ManagedResourceStatus.t option;
    (*

    The current status of the Amazon Web Services Key Management Service (KMS) access configuration.

    *)
  2. ipv4Addresses : StringList.t option;
    (*

    The IPv4 addresses allowed for Amazon Web Services Key Management Service (KMS) access.

    *)
  3. domainName : String_.t option;
    (*

    The domain name for Amazon Web Services Key Management Service (KMS) access configuration.

    *)
  4. kmsPolicyDocument : String_.t option;
    (*

    The Amazon Web Services Key Management Service (KMS) policy document that defines permissions for key usage.

    *)
}
Sourceval make : ?status:??? -> ?ipv4Addresses:??? -> ?domainName:??? -> ?kmsPolicyDocument:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.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