Module Values_0.BlueGreenDeploymentSource

Details about a blue/green deployment. For more information, see Using Amazon RDS Blue/Green Deployments for database updates in the Amazon RDS User Guide and Using Amazon RDS Blue/Green Deployments for database updates in the Amazon Aurora User Guide.

Sourcetype nonrec t = {
  1. blueGreenDeploymentIdentifier : BlueGreenDeploymentIdentifier.t option;
    (*

    The unique identifier of the blue/green deployment.

    *)
  2. blueGreenDeploymentName : BlueGreenDeploymentName.t option;
    (*

    The user-supplied name of the blue/green deployment.

    *)
  3. source : DatabaseArn.t option;
    (*

    The source database for the blue/green deployment. Before switchover, the source database is the production database in the blue environment.

    *)
  4. target : DatabaseArn.t option;
    (*

    The target database for the blue/green deployment. Before switchover, the target database is the clone database in the green environment.

    *)
  5. switchoverDetails : SwitchoverDetailList.t option;
    (*

    The details about each source and target resource in the blue/green deployment.

    *)
  6. tasks : BlueGreenDeploymentTaskList.t option;
    (*

    Either tasks to be performed or tasks that have been completed on the target database before switchover.

    *)
  7. status : BlueGreenDeploymentStatus.t option;
    (*

    The status of the blue/green deployment. Valid Values: PROVISIONING - Resources are being created in the green environment. AVAILABLE - Resources are available in the green environment. SWITCHOVER_IN_PROGRESS - The deployment is being switched from the blue environment to the green environment. SWITCHOVER_COMPLETED - Switchover from the blue environment to the green environment is complete. INVALID_CONFIGURATION - Resources in the green environment are invalid, so switchover isn't possible. SWITCHOVER_FAILED - Switchover was attempted but failed. DELETING - The blue/green deployment is being deleted.

    *)
  8. statusDetails : BlueGreenDeploymentStatusDetails.t option;
    (*

    Additional information about the status of the blue/green deployment.

    *)
  9. createTime : TStamp.t option;
    (*

    The time when the blue/green deployment was created, in Universal Coordinated Time (UTC).

    *)
  10. deleteTime : TStamp.t option;
    (*

    The time when the blue/green deployment was deleted, in Universal Coordinated Time (UTC).

    *)
  11. tagList : TagList.t option;
}
Sourceval make : ?blueGreenDeploymentIdentifier:??? -> ?blueGreenDeploymentName:??? -> ?source:??? -> ?target:??? -> ?switchoverDetails:??? -> ?tasks:??? -> ?status:??? -> ?statusDetails:??? -> ?createTime:??? -> ?deleteTime:??? -> ?tagList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of DatabaseArn.t ]) list ] list | `String of BlueGreenDeploymentIdentifier.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