Values.DeploymentStrategySourceCreates 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.
type nonrec t = {id : Id.t option;The deployment strategy ID.
*)name : Name.t option;The name of the deployment strategy.
*)description : Description.t option;The description of the deployment strategy.
*)deploymentDurationInMinutes : MinutesBetween0And24Hours.t option;Total amount of time the deployment lasted.
*)growthType : GrowthType.t option;The algorithm used to define how percentage grew over time.
*)growthFactor : Percentage.t option;The percentage of targets that received a deployed configuration during each interval.
*)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.
*)replicateTo : ReplicateTo.t option;Save the deployment strategy to a Systems Manager (SSM) document.
*)}type nonrec error = [ | `BadRequestException of BadRequestException.t| `InternalServerException of InternalServerException.t| `ServiceQuotaExceededException of ServiceQuotaExceededException.t| `Unknown_operation_error of string * string option ]val 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 ]val 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 ]val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Float of Percentage.t
| `Integer of MinutesBetween0And24Hours.t
| `String of Id.t ])
list ]