Module Values.CertificateSource

A certificate authority (CA) certificate for an Amazon Web Services account.

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

    The unique key that identifies a certificate. Example: rds-ca-2019

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

    The type of the certificate. Example: CA

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

    The thumbprint of the certificate.

    *)
  4. validFrom : TStamp.t option;
    (*

    The starting date-time from which the certificate is valid. Example: 2019-07-31T17:57:09Z

    *)
  5. validTill : TStamp.t option;
    (*

    The date-time after which the certificate is no longer valid. Example: 2024-07-31T17:57:09Z

    *)
  6. certificateArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) for the certificate. Example: arn:aws:rds:us-east-1::cert:rds-ca-2019

    *)
}
Sourceval make : ?certificateIdentifier:??? -> ?certificateType:??? -> ?thumbprint:??? -> ?validFrom:??? -> ?validTill:??? -> ?certificateArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Timestamp of TStamp.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