Module Values_0.SwitchoverDetailSource

Contains the 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. sourceMember : DatabaseArn.t option;
    (*

    The Amazon Resource Name (ARN) of a resource in the blue environment.

    *)
  2. targetMember : DatabaseArn.t option;
    (*

    The Amazon Resource Name (ARN) of a resource in the green environment.

    *)
  3. status : SwitchoverDetailStatus.t option;
    (*

    The switchover status of a resource in a blue/green deployment. Values: PROVISIONING - The resource is being prepared to switch over. AVAILABLE - The resource is ready to switch over. SWITCHOVER_IN_PROGRESS - The resource is being switched over. SWITCHOVER_COMPLETED - The resource has been switched over. SWITCHOVER_FAILED - The resource attempted to switch over but failed. MISSING_SOURCE - The source resource has been deleted. MISSING_TARGET - The target resource has been deleted.

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