Module Values.HsmConfigurationSource

Returns information about an HSM configuration, which is an object that describes to Amazon Redshift clusters the information they require to connect to an HSM where they can store database encryption keys.

Sourcetype nonrec t = {
  1. hsmConfigurationIdentifier : String_.t option;
    (*

    The name of the Amazon Redshift HSM configuration.

    *)
  2. description : String_.t option;
    (*

    A text description of the HSM configuration.

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

    The IP address that the Amazon Redshift cluster must use to access the HSM.

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

    The name of the partition in the HSM where the Amazon Redshift clusters will store their database encryption keys.

    *)
  5. tags : TagList.t option;
    (*

    The list of tags for the HSM configuration.

    *)
}
Sourceval make : ?hsmConfigurationIdentifier:??? -> ?description:??? -> ?hsmIpAddress:??? -> ?hsmPartitionName:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] 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