Module Values.UpdateResiliencyPolicyRequestSource

Updates a resiliency policy. 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.

Sourcetype nonrec t = {
  1. dataLocationConstraint : DataLocationConstraint.t option;
    (*

    Specifies a high-level geographical location constraint for where your resilience policy data can be stored.

    *)
  2. policy : DisruptionPolicy.t option;
    (*

    Resiliency policy to be created, including the recovery time objective (RTO) and recovery point objective (RPO) in seconds.

    *)
  3. policyArn : Arn.t;
    (*

    Amazon Resource Name (ARN) of the resiliency policy. The format for this ARN is: arn:partition:resiliencehub:region:account:resiliency-policy/policy-id. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.

    *)
  4. policyDescription : EntityDescription.t option;
    (*

    Description of the resiliency policy.

    *)
  5. policyName : EntityName.t option;
    (*

    Name of the resiliency policy.

    *)
  6. tier : ResiliencyPolicyTier.t option;
    (*

    The tier for this resiliency policy, ranging from the highest severity (MissionCritical) to lowest (NonCritical).

    *)
}
Sourceval context_ : string
Sourceval make : ?dataLocationConstraint:??? -> ?policy:??? -> ?policyDescription:??? -> ?policyName:??? -> ?tier:??? -> policyArn:Arn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `Enum of string ] * [> `Structure of (string * [> `Integer of Seconds.t ]) list ]) list | `String of Arn.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