Skip to main content

application_shader_caches

Creates, updates, deletes, gets or lists an application_shader_caches resource.

Overview

Nameapplication_shader_caches
TypeResource
Idaws.gameliftstreams.application_shader_caches

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
itemsarrayA 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:

NameAccessible byRequired ParamsOptional ParamsDescription
list_application_shader_cachesselectidentifier, regionLists 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.

NameDatatypeDescription
identifierstringAn 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.
regionstringAWS region (default: us-east-1)

SELECT examples

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
;