Module Values.CreateHsmConfigurationMessageSource

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

    The identifier to be assigned to the new Amazon Redshift HSM configuration.

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

    A text description of the HSM configuration to be created.

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

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

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

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

    *)
  5. hsmPartitionPassword : String_.t;
    (*

    The password required to access the HSM partition.

    *)
  6. hsmServerPublicCertificate : String_.t;
    (*

    The HSMs public certificate file. When using Cloud HSM, the file name is server.pem.

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

    A list of tag instances.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> hsmConfigurationIdentifier:String_.t -> description:String_.t -> hsmIpAddress:String_.t -> hsmPartitionName:String_.t -> hsmPartitionPassword:String_.t -> hsmServerPublicCertificate:String_.t -> 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