Learn R Programming

paws.security.identity (version 0.1.12)

shield_list_resources_in_protection_group: Retrieves the resources that are included in the protection group

Description

Retrieves the resources that are included in the protection group.

Usage

shield_list_resources_in_protection_group(ProtectionGroupId, NextToken,
  MaxResults)

Value

A list with the following syntax:

list(
  ResourceArns = list(
    "string"
  ),
  NextToken = "string"
)

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.

NextToken

The next token value from a previous call to list_resources_in_protection_group. Pass null if this is the first call.

MaxResults

The maximum number of resource ARN objects to return. If you leave this blank, Shield Advanced returns the first 20 results.

This is a maximum value. Shield Advanced might return the results in smaller batches. That is, the number of objects returned could be less than MaxResults, even if there are still more objects yet to return. If there are more objects to return, Shield Advanced returns a value in NextToken that you can use in your next request, to get the next batch of objects.

Request syntax

svc$list_resources_in_protection_group(
  ProtectionGroupId = "string",
  NextToken = "string",
  MaxResults = 123
)