Module Values_0.BlueGreenDeploymentTaskSource

Details about a task for 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. name : BlueGreenDeploymentTaskName.t option;
    (*

    The name of the blue/green deployment task.

    *)
  2. status : BlueGreenDeploymentTaskStatus.t option;
    (*

    The status of the blue/green deployment task. Valid Values: PENDING - The resource is being prepared for deployment. IN_PROGRESS - The resource is being deployed. COMPLETED - The resource has been deployed. FAILED - Deployment of the resource failed.

    *)
}
Sourceval make : ?name:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BlueGreenDeploymentTaskName.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