Module Values.FleetDeploymentSource

Describes a container fleet deployment with updates to the fleet.

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

    A unique identifier for the deployment.

    *)
  2. fleetId : FleetId.t option;
    (*

    A unique identifier for the container fleet.

    *)
  3. gameServerBinaryArn : FleetBinaryArn.t option;
    (*

    The unique identifier for the version of the game server container group definition that is being deployed.

    *)
  4. rollbackGameServerBinaryArn : FleetBinaryArn.t option;
    (*

    The unique identifier for the version of the game server container group definition to roll back to if deployment fails. Amazon GameLift Servers sets this property to the container group definition version that the fleet used when it was last active.

    *)
  5. perInstanceBinaryArn : FleetBinaryArn.t option;
    (*

    The unique identifier for the version of the per-instance container group definition that is being deployed.

    *)
  6. rollbackPerInstanceBinaryArn : FleetBinaryArn.t option;
    (*

    The unique identifier for the version of the per-instance container group definition to roll back to if deployment fails. Amazon GameLift Servers sets this property to the container group definition version that the fleet used when it was last active.

    *)
  7. deploymentStatus : DeploymentStatus.t option;
    (*

    The status of fleet deployment activity in the location. IN_PROGRESS -- The deployment is in progress. IMPAIRED -- The deployment failed and the fleet has some impaired containers. COMPLETE -- The deployment has completed successfully. ROLLBACK_IN_PROGRESS -- The deployment failed and rollback has been initiated. ROLLBACK_IN_COMPLETE -- The deployment failed and rollback has been completed. CANCELLED -- The deployment was cancelled.

    *)
  8. deploymentConfiguration : DeploymentConfiguration.t option;
    (*

    Instructions for how to deploy updates to a container fleet and what actions to take if the deployment fails.

    *)
  9. creationTime : Timestamp.t option;
    (*

    A time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (for example "1469498468.057").

    *)
}
Sourceval make : ?deploymentId:??? -> ?fleetId:??? -> ?gameServerBinaryArn:??? -> ?rollbackGameServerBinaryArn:??? -> ?perInstanceBinaryArn:??? -> ?rollbackPerInstanceBinaryArn:??? -> ?deploymentStatus:??? -> ?deploymentConfiguration:??? -> ?creationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DeploymentId.t | `Structure of (string * [> `Enum of string | `Integer of MinimumHealthyPercentage.t ]) 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