Skip to content

Describe Protection Group

shield_describe_protection_group R Documentation

Returns the specification for the specified protection group

Description

Returns the specification for the specified protection group.

Usage

shield_describe_protection_group(ProtectionGroupId)

Arguments

ProtectionGroupId

[required] The name of the protection group. You use this to identify the protection group in lists and to manage the protection group, for example to update, delete, or describe it.

Value

A list with the following syntax:

list(
  ProtectionGroup = list(
    ProtectionGroupId = "string",
    Aggregation = "SUM"|"MEAN"|"MAX",
    Pattern = "ALL"|"ARBITRARY"|"BY_RESOURCE_TYPE",
    ResourceType = "CLOUDFRONT_DISTRIBUTION"|"ROUTE_53_HOSTED_ZONE"|"ELASTIC_IP_ALLOCATION"|"CLASSIC_LOAD_BALANCER"|"APPLICATION_LOAD_BALANCER"|"GLOBAL_ACCELERATOR",
    Members = list(
      "string"
    ),
    ProtectionGroupArn = "string"
  )
)

Request syntax

svc$describe_protection_group(
  ProtectionGroupId = "string"
)