Module Values.PendingModifiedValuesSource

One or more modified settings for an instance. These modified settings have been requested, but haven't been applied yet.

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

    Contains the new DBInstanceClass for the instance that will be applied or is currently being applied.

    *)
  2. allocatedStorage : IntegerOptional.t option;
    (*

    Contains the new AllocatedStorage size for then instance that will be applied or is currently being applied.

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

    Contains the pending or currently in-progress change of the master credentials for the instance.

    *)
  4. port : IntegerOptional.t option;
    (*

    Specifies the pending port for the instance.

    *)
  5. backupRetentionPeriod : IntegerOptional.t option;
    (*

    Specifies the pending number of days for which automated backups are retained.

    *)
  6. multiAZ : BooleanOptional.t option;
    (*

    Indicates that the Single-AZ instance is to change to a Multi-AZ deployment.

    *)
  7. engineVersion : String_.t option;
    (*

    Indicates the database engine version.

    *)
  8. licenseModel : String_.t option;
    (*

    The license model for the instance. Valid values: license-included, bring-your-own-license, general-public-license

    *)
  9. iops : IntegerOptional.t option;
    (*

    Specifies the new Provisioned IOPS value for the instance that will be applied or is currently being applied.

    *)
  10. dBInstanceIdentifier : String_.t option;
    (*

    Contains the new DBInstanceIdentifier for the instance that will be applied or is currently being applied.

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

    Specifies the storage type to be associated with the instance.

    *)
  12. cACertificateIdentifier : String_.t option;
    (*

    Specifies the identifier of the certificate authority (CA) certificate for the DB instance.

    *)
  13. dBSubnetGroupName : String_.t option;
    (*

    The new subnet group for the instance.

    *)
  14. pendingCloudwatchLogsExports : PendingCloudwatchLogsExports.t option;
    (*

    A list of the log types whose configuration is still pending. These log types are in the process of being activated or deactivated.

    *)
}
Sourceval make : ?dBInstanceClass:??? -> ?allocatedStorage:??? -> ?masterUserPassword:??? -> ?port:??? -> ?backupRetentionPeriod:??? -> ?multiAZ:??? -> ?engineVersion:??? -> ?licenseModel:??? -> ?iops:??? -> ?dBInstanceIdentifier:??? -> ?storageType:??? -> ?cACertificateIdentifier:??? -> ?dBSubnetGroupName:??? -> ?pendingCloudwatchLogsExports:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `Integer of IntegerOptional.t | `String of String_.t | `Structure of (string * [> `List of [> `String of String_.t ] list ]) list ]) 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