Module Values.PendingModifiedValuesSource

This data type is used as a response element in the ModifyDBInstance action.

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

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

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

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

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

    Not supported by Neptune.

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

    Specifies the pending port for the DB 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 DB instance is to change to a Multi-AZ deployment.

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

    Indicates the database engine version.

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

    Not supported by Neptune.

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

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

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

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

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

    Not applicable. In Neptune the storage type is managed at the DB Cluster level.

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

    Specifies the identifier of the CA certificate for the DB instance.

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

    The new DB subnet group for the DB instance.

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

    This PendingCloudwatchLogsExports structure specifies pending changes to which CloudWatch logs are enabled and which are disabled.

    *)
}
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