Struct AssetConversionOutputOptions

Parameters for specifying the output location of a converted asset.

struct Microsoft::Azure::RemoteRendering::AssetConversionOutputOptions

Fields

StorageContainerUri

The URI of the Azure Blob Storage container where the result of the conversion should be written to. Example: "https://contosostorage01.blob.core.windows.net/arrOutput"

std::string StorageContainerUri{};

StorageContainerWriteSas

Optional. An Azure Blob Storage container shared access signature (SAS) giving write access to the storage container. If not provided, the Azure Remote Rendering account needs to be linked with the storage account containing the blob container.

std::string StorageContainerWriteSas{};

BlobPrefix

A prefix which gets prepended in front of all files produced by the conversion process. Will be treated as a virtual folder.

std::string BlobPrefix{};

OutputAssetFilename

The file name of the output asset. Must end in '.arrAsset'. Example: "house.arrAsset"

std::string OutputAssetFilename{};

See also