Skip to content

Describe Resiliency Policy

resiliencehub_describe_resiliency_policy R Documentation

Describes a specified resiliency policy for an Resilience Hub application

Description

Describes a specified resiliency policy for an Resilience Hub application. The returned policy object includes creation time, data location constraints, the Amazon Resource Name (ARN) for the policy, tags, tier, and more.

Usage

resiliencehub_describe_resiliency_policy(policyArn)

Arguments

policyArn

[required] 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.

Value

A list with the following syntax:

list(
  policy = list(
    creationTime = as.POSIXct(
      "2015-01-01"
    ),
    dataLocationConstraint = "AnyLocation"|"SameContinent"|"SameCountry",
    estimatedCostTier = "L1"|"L2"|"L3"|"L4",
    policy = list(
      list(
        rpoInSecs = 123,
        rtoInSecs = 123
      )
    ),
    policyArn = "string",
    policyDescription = "string",
    policyName = "string",
    tags = list(
      "string"
    ),
    tier = "MissionCritical"|"Critical"|"Important"|"CoreServices"|"NonCritical"|"NotApplicable"
  )
)

Request syntax

svc$describe_resiliency_policy(
  policyArn = "string"
)