List Streaming Images
nimblestudio_list_streaming_images | R Documentation |
List the streaming image resources available to this studio¶
Description¶
List the streaming image resources available to this studio.
This list will contain both images provided by Amazon Web Services, as well as streaming images that you have created in your studio.
Usage¶
Arguments¶
nextToken
The token for the next set of results, or null if there are no more results.
owner
Filter this request to streaming images with the given owner
studioId
[required] The studio ID.
Value¶
A list with the following syntax:
list(
nextToken = "string",
streamingImages = list(
list(
arn = "string",
description = "string",
ec2ImageId = "string",
encryptionConfiguration = list(
keyArn = "string",
keyType = "CUSTOMER_MANAGED_KEY"
),
eulaIds = list(
"string"
),
name = "string",
owner = "string",
platform = "string",
state = "CREATE_IN_PROGRESS"|"READY"|"DELETE_IN_PROGRESS"|"DELETED"|"UPDATE_IN_PROGRESS"|"UPDATE_FAILED"|"CREATE_FAILED"|"DELETE_FAILED",
statusCode = "STREAMING_IMAGE_CREATE_IN_PROGRESS"|"STREAMING_IMAGE_READY"|"STREAMING_IMAGE_DELETE_IN_PROGRESS"|"STREAMING_IMAGE_DELETED"|"STREAMING_IMAGE_UPDATE_IN_PROGRESS"|"INTERNAL_ERROR"|"ACCESS_DENIED",
statusMessage = "string",
streamingImageId = "string",
tags = list(
"string"
)
)
)
)