Create Streaming Image
| nimblestudio_create_streaming_image | R Documentation |
Creates a streaming image resource in a studio¶
Description¶
Creates a streaming image resource in a studio.
Usage¶
Arguments¶
clientTokenUnique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
descriptionA human-readable description of the streaming image.
ec2ImageId[required] The ID of an EC2 machine image with which to create this streaming image.
name[required] A friendly name for a streaming image resource.
studioId[required] The studio ID.
tagsA collection of labels, in the form of key-value pairs, that apply to this resource.
Value¶
A list with the following syntax:
list(
streamingImage = 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"
)
)
)