application_shader_caches
Creates, updates, deletes, gets or lists an application_shader_caches resource.
Overview
| Name | application_shader_caches |
| Type | Resource |
| Id | aws.gameliftstreams.application_shader_caches |
Fields
The following fields are returned by SELECT queries:
- list_application_shader_caches
| Name | Datatype | Description |
|---|---|---|
items | array | A collection of shader cache metadata for the specified Amazon GameLift Streams application. Each item includes the shader cache status, associated stream groups, and storage size. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_application_shader_caches | select | identifier, region | Lists the shader caches associated with an Amazon GameLift Streams application. Each shader cache entry includes its status, associated stream groups, and size in bytes. Returns shader caches associated with the specified Amazon GameLift Streams application in all statuses. |
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.
| Name | Datatype | Description |
|---|---|---|
identifier | string | An Amazon Resource Name (ARN) or ID that uniquely identifies the application resource. Example ARN: arn:aws:gameliftstreams:us-west-2:111122223333:application/a-9ZY8X7Wv6. Example ID: a-9ZY8X7Wv6. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_application_shader_caches
Lists the shader caches associated with an Amazon GameLift Streams application. Each shader cache entry includes its status, associated stream groups, and size in bytes. Returns shader caches associated with the specified Amazon GameLift Streams application in all statuses.
SELECT
items
FROM aws.gameliftstreams.application_shader_caches
WHERE identifier = '{{ identifier }}' -- required
AND region = '{{ region }}' -- required
;