Skip to content

Describe Safety Rule

route53recoverycontrolconfig_describe_safety_rule R Documentation

Returns information about a safety rule

Description

Returns information about a safety rule.

Usage

route53recoverycontrolconfig_describe_safety_rule(SafetyRuleArn)

Arguments

SafetyRuleArn

[required] The ARN of the safety rule.

Value

A list with the following syntax:

list(
  AssertionRule = list(
    AssertedControls = list(
      "string"
    ),
    ControlPanelArn = "string",
    Name = "string",
    RuleConfig = list(
      Inverted = TRUE|FALSE,
      Threshold = 123,
      Type = "ATLEAST"|"AND"|"OR"
    ),
    SafetyRuleArn = "string",
    Status = "PENDING"|"DEPLOYED"|"PENDING_DELETION",
    WaitPeriodMs = 123,
    Owner = "string"
  ),
  GatingRule = list(
    ControlPanelArn = "string",
    GatingControls = list(
      "string"
    ),
    Name = "string",
    RuleConfig = list(
      Inverted = TRUE|FALSE,
      Threshold = 123,
      Type = "ATLEAST"|"AND"|"OR"
    ),
    SafetyRuleArn = "string",
    Status = "PENDING"|"DEPLOYED"|"PENDING_DELETION",
    TargetControls = list(
      "string"
    ),
    WaitPeriodMs = 123,
    Owner = "string"
  )
)

Request syntax

svc$describe_safety_rule(
  SafetyRuleArn = "string"
)