List Discovered Resources
fms_list_discovered_resources | R Documentation |
Returns an array of resources in the organization's accounts that are available to be associated with a resource set¶
Description¶
Returns an array of resources in the organization's accounts that are available to be associated with a resource set.
Usage¶
fms_list_discovered_resources(MemberAccountIds, ResourceType,
MaxResults, NextToken)
Arguments¶
MemberAccountIds |
[required] The Amazon Web Services account IDs to discover resources in. Only one account is supported per request. The account must be a member of your organization. |
ResourceType |
[required] The type of resources to discover. |
MaxResults |
The maximum number of objects that you want Firewall Manager to
return for this request. If more objects are available, in the response,
Firewall Manager provides a |
NextToken |
When you request a list of objects with a |
Value¶
A list with the following syntax:
list(
Items = list(
list(
URI = "string",
AccountId = "string",
Type = "string",
Name = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_discovered_resources(
MemberAccountIds = list(
"string"
),
ResourceType = "string",
MaxResults = 123,
NextToken = "string"
)