Module Values.DeploymentStrategySource

Creates a deployment strategy that defines important criteria for rolling out your configuration to the designated targets. A deployment strategy includes the overall duration required, a percentage of targets to receive the deployment during each interval, an algorithm that defines how percentage grows, and bake time.

Sourcetype nonrec t = {
  1. id : Id.t option;
    (*

    The deployment strategy ID.

    *)
  2. name : Name.t option;
    (*

    The name of the deployment strategy.

    *)
  3. description : Description.t option;
    (*

    The description of the deployment strategy.

    *)
  4. deploymentDurationInMinutes : MinutesBetween0And24Hours.t option;
    (*

    Total amount of time the deployment lasted.

    *)
  5. growthType : GrowthType.t option;
    (*

    The algorithm used to define how percentage grew over time.

    *)
  6. growthFactor : Percentage.t option;
    (*

    The percentage of targets that received a deployed configuration during each interval.

    *)
  7. finalBakeTimeInMinutes : MinutesBetween0And24Hours.t option;
    (*

    The amount of time that AppConfig monitored for alarms before considering the deployment to be complete and no longer eligible for automatic rollback.

    *)
  8. replicateTo : ReplicateTo.t option;
    (*

    Save the deployment strategy to a Systems Manager (SSM) document.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?id:??? -> ?name:??? -> ?description:??? -> ?deploymentDurationInMinutes:??? -> ?growthType:??? -> ?growthFactor:??? -> ?finalBakeTimeInMinutes:??? -> ?replicateTo:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `InternalServerException of InternalServerException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `InternalServerException of InternalServerException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Float of Percentage.t | `Integer of MinutesBetween0And24Hours.t | `String of Id.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