Learn R Programming

paws.security.identity (version 0.1.12)

shield_describe_protection: Lists the details of a Protection object

Description

Lists the details of a Protection object.

Usage

shield_describe_protection(ProtectionId, ResourceArn)

Value

A list with the following syntax:

list(
  Protection = list(
    Id = "string",
    Name = "string",
    ResourceArn = "string",
    HealthCheckIds = list(
      "string"
    )
  )
)

Arguments

ProtectionId

The unique identifier (ID) for the Protection object that is described. When submitting the describe_protection request you must provide either the ResourceArn or the ProtectionID, but not both.

ResourceArn

The ARN (Amazon Resource Name) of the AWS resource for the Protection object that is described. When submitting the describe_protection request you must provide either the ResourceArn or the ProtectionID, but not both.

Request syntax

svc$describe_protection(
  ProtectionId = "string",
  ResourceArn = "string"
)