Module Values.ImportCertificateMessageSource

Uploads the specified certificate.

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

    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. certificatePem : SecretString.t option;
    (*

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

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

    The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a .sso file using the fileb:// prefix. You can't provide the certificate inline. Example: filebase64("${path.root}/rds-ca-2019-root.sso")

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

    The tags associated with the certificate.

    *)
  5. 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 context_ : string
Sourceval make : ?certificatePem:??? -> ?certificateWallet:??? -> ?tags:??? -> ?kmsKeyId:??? -> certificateIdentifier:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of CertificateWallet.t | `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