Skip to main content

resource_set_resources

Creates, updates, deletes, gets or lists a resource_set_resources resource.

Overview

Nameresource_set_resources
TypeResource
Idaws.fms.resource_set_resources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
itemsarrayAn array of the associated resources' uniform resource identifiers (URI).
next_tokenstringWhen you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Firewall Manager returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. (pattern: <code>^([\p{L}\p{Z}\p{N}_.:/=+-@]*)$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_resource_set_resourcesselectregionReturns an array of resources that are currently associated to a resource set.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns an array of resources that are currently associated to a resource set.

SELECT
items,
next_token
FROM aws.fms.resource_set_resources
WHERE region = '{{ region }}' -- required
;