Module Values.AwsRedshiftClusterHsmStatusSource

Information about whether an Amazon Redshift cluster finished applying any hardware changes to security module (HSM) settings that were specified in a modify cluster command.

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

    The name of the HSM client certificate that the Amazon Redshift cluster uses to retrieve the data encryption keys that are stored in an HSM.

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

    The name of the HSM configuration that contains the information that the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

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

    Indicates whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command. Type: String Valid values: active | applying

    *)
}
Sourceval make : ?hsmClientCertificateIdentifier:??? -> ?hsmConfigurationIdentifier:??? -> ?status:??? -> 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