Values.CreateResiliencyPolicyRequestSourceCreates a resiliency policy for an application. Resilience Hub allows you to provide a value of zero for rtoInSecs and rpoInSecs of your resiliency policy. But, while assessing your application, the lowest possible assessment result is near zero. Hence, if you provide value zero for rtoInSecs and rpoInSecs, the estimated workload RTO and estimated workload RPO result will be near zero and the Compliance status for your application will be set to Policy breached.
type nonrec t = {clientToken : ClientToken.t option;Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. You should not reuse the same client token for other API requests.
*)dataLocationConstraint : DataLocationConstraint.t option;Specifies a high-level geographical location constraint for where your resilience policy data can be stored.
*)policy : DisruptionPolicy.t;The type of resiliency policy to be created, including the recovery time objective (RTO) and recovery point objective (RPO) in seconds.
*)policyDescription : EntityDescription.t option;Description of the resiliency policy.
*)policyName : EntityName.t;Name of the resiliency policy.
*)tier : ResiliencyPolicyTier.t;The tier for this resiliency policy, ranging from the highest severity (MissionCritical) to lowest (NonCritical).
*)}val make :
?clientToken:??? ->
?dataLocationConstraint:??? ->
?policyDescription:??? ->
?tags:??? ->
policy:DisruptionPolicy.t ->
policyName:EntityName.t ->
tier:ResiliencyPolicyTier.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Map of
([> `Enum of string | `String of TagKey.t ]
* [> `String of TagValue.t
| `Structure of (string * [> `Integer of Seconds.t ]) list ])
list
| `String of ClientToken.t ])
list ]