Module Values.CloudFormationTargetSource

Information about the target to be updated by an CloudFormation blue/green deployment. This target type is used for all deployments initiated by a CloudFormation stack update.

Sourcetype nonrec t = {
  1. deploymentId : DeploymentId.t option;
    (*

    The unique ID of an CloudFormation blue/green deployment.

    *)
  2. targetId : TargetId.t option;
    (*

    The unique ID of a deployment target that has a type of CloudFormationTarget.

    *)
  3. lastUpdatedAt : Time.t option;
    (*

    The date and time when the target application was updated by an CloudFormation blue/green deployment.

    *)
  4. lifecycleEvents : LifecycleEventList.t option;
    (*

    The lifecycle events of the CloudFormation blue/green deployment to this target application.

    *)
  5. status : TargetStatus.t option;
    (*

    The status of an CloudFormation blue/green deployment's target application.

    *)
  6. resourceType : CloudFormationResourceType.t option;
    (*

    The resource type for the CloudFormation blue/green deployment.

    *)
  7. targetVersionWeight : TrafficWeight.t option;
    (*

    The percentage of production traffic that the target version of an CloudFormation blue/green deployment receives.

    *)
}
Sourceval make : ?deploymentId:??? -> ?targetId:??? -> ?lastUpdatedAt:??? -> ?lifecycleEvents:??? -> ?status:??? -> ?resourceType:??? -> ?targetVersionWeight:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of TrafficWeight.t | `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of LifecycleEventName.t | `Structure of (string * [> `Enum of string | `String of ScriptName.t ]) list | `Timestamp of Timestamp.t ]) list ] list | `String of DeploymentId.t | `Timestamp of Time.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