Skip to main content

resource_types

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

Overview

Nameresource_types
TypeResource
Idaws.ram.resource_types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringIf present, this value indicates that more output is available than is included in the current response. Use this value in the NextToken request parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until the NextToken response element comes back as null. This indicates that this is the last page of results.
resource_typesarrayAn array of objects that contain information about the resource types that can be shared using RAM.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_resource_typesselectregionLists the resource types that can be shared by RAM.

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

Lists the resource types that can be shared by RAM.

SELECT
next_token,
resource_types
FROM aws.ram.resource_types
WHERE region = '{{ region }}' -- required
;