Module Values.DeploymentConfigInfoSource

Information about a deployment configuration.

Sourcetype nonrec t = {
  1. deploymentConfigId : DeploymentConfigId.t option;
    (*

    The deployment configuration ID.

    *)
  2. deploymentConfigName : DeploymentConfigName.t option;
    (*

    The deployment configuration name.

    *)
  3. minimumHealthyHosts : MinimumHealthyHosts.t option;
    (*

    Information about the number or percentage of minimum healthy instances.

    *)
  4. createTime : Timestamp.t option;
    (*

    The time at which the deployment configuration was created.

    *)
  5. computePlatform : ComputePlatform.t option;
    (*

    The destination platform type for the deployment (Lambda, Server, or ECS).

    *)
  6. trafficRoutingConfig : TrafficRoutingConfig.t option;
    (*

    The configuration that specifies how the deployment traffic is routed. Used for deployments with a Lambda or Amazon ECS compute platform only.

    *)
  7. zonalConfig : ZonalConfig.t option;
    (*

    Information about a zonal configuration.

    *)
}
Sourceval make : ?deploymentConfigId:??? -> ?deploymentConfigName:??? -> ?minimumHealthyHosts:??? -> ?createTime:??? -> ?computePlatform:??? -> ?trafficRoutingConfig:??? -> ?zonalConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DeploymentConfigId.t | `Structure of (string * [> `Enum of string | `Integer of MinimumHealthyHostsValue.t | `Long of WaitTimeInSeconds.t | `Structure of (string * [> `Enum of string | `Integer of Percentage.t ]) list ]) list | `Timestamp of Timestamp.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