Module Values.CertificateSource

The SSL certificate that can be used to encrypt connections between the endpoints and the replication instance.

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

    A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.

    *)
  2. certificateCreationDate : TStamp.t option;
    (*

    The date that the certificate was created.

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

    The contents of a .pem file, which contains an X.509 certificate.

    *)
  4. certificateWallet : CertificateWallet.t option;
    (*

    The location of an imported Oracle Wallet certificate for use with SSL. Example: filebase64("${path.root}/rds-ca-2019-root.sso")

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

    The Amazon Resource Name (ARN) for the certificate.

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

    The owner of the certificate.

    *)
  7. validFromDate : TStamp.t option;
    (*

    The beginning date that the certificate is valid.

    *)
  8. validToDate : TStamp.t option;
    (*

    The final date that the certificate is valid.

    *)
  9. signingAlgorithm : String_.t option;
    (*

    The signing algorithm for the certificate.

    *)
  10. keyLength : IntegerOptional.t option;
    (*

    The key length of the cryptographic algorithm being used.

    *)
  11. kmsKeyId : String_.t option;
    (*

    An KMS key identifier that is used to encrypt the certificate. If you don't specify a value for the KmsKeyId parameter, then DMS uses your default encryption key. KMS creates the default encryption key for your Amazon Web Services account. Your Amazon Web Services account has a different default encryption key for each Amazon Web Services Region.

    *)
}
Sourceval make : ?certificateIdentifier:??? -> ?certificateCreationDate:??? -> ?certificatePem:??? -> ?certificateWallet:??? -> ?certificateArn:??? -> ?certificateOwner:??? -> ?validFromDate:??? -> ?validToDate:??? -> ?signingAlgorithm:??? -> ?keyLength:??? -> ?kmsKeyId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of CertificateWallet.t | `Integer of IntegerOptional.t | `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