Module Values.ResiliencyPolicySource

Defines 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. creationTime : TimeStamp.t option;
    (*

    Date and time when the resiliency policy was created.

    *)
  2. dataLocationConstraint : DataLocationConstraint.t option;
    (*

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

    *)
  3. estimatedCostTier : EstimatedCostTier.t option;
    (*

    Specifies the estimated cost tier of the resiliency policy.

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

    The resiliency policy.

    *)
  5. policyArn : Arn.t option;
    (*

    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.

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

    Description of the resiliency policy.

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

    The name of the policy

    *)
  8. tags : TagMap.t option;
    (*

    Tags assigned to the resource. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key/value pair.

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

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

    *)
}
Sourceval make : ?creationTime:??? -> ?dataLocationConstraint:??? -> ?estimatedCostTier:??? -> ?policy:??? -> ?policyArn:??? -> ?policyDescription:??? -> ?policyName:??? -> ?tags:??? -> ?tier:??? -> unit -> t
Sourceval 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 Arn.t | `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