List Streaming Session Backups
nimblestudio_list_streaming_session_backups | R Documentation |
Lists the backups of a streaming session in a studio¶
Description¶
Lists the backups of a streaming session in a studio.
Usage¶
Arguments¶
nextToken
The token for the next set of results, or null if there are no more results.
ownedBy
The user ID of the user that owns the streaming session.
studioId
[required] The studio ID.
Value¶
A list with the following syntax:
list(
nextToken = "string",
streamingSessionBackups = list(
list(
arn = "string",
backupId = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
launchProfileId = "string",
ownedBy = "string",
sessionId = "string",
state = "CREATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"READY"|"DELETED"|"CREATE_FAILED"|"DELETE_FAILED"|"STOP_IN_PROGRESS"|"START_IN_PROGRESS"|"STOPPED"|"STOP_FAILED"|"START_FAILED",
statusCode = "STREAMING_SESSION_READY"|"STREAMING_SESSION_DELETED"|"STREAMING_SESSION_CREATE_IN_PROGRESS"|"STREAMING_SESSION_DELETE_IN_PROGRESS"|"INTERNAL_ERROR"|"INSUFFICIENT_CAPACITY"|"ACTIVE_DIRECTORY_DOMAIN_JOIN_ERROR"|"NETWORK_CONNECTION_ERROR"|"INITIALIZATION_SCRIPT_ERROR"|"DECRYPT_STREAMING_IMAGE_ERROR"|"NETWORK_INTERFACE_ERROR"|"STREAMING_SESSION_STOPPED"|"STREAMING_SESSION_STARTED"|"STREAMING_SESSION_STOP_IN_PROGRESS"|"STREAMING_SESSION_START_IN_PROGRESS"|"AMI_VALIDATION_ERROR",
statusMessage = "string",
tags = list(
"string"
)
)
)
)