NewDataReference
No overview available.
def NewDataReference(
scheme: string,
container: string,
key: string
) - > DataReference
Constructs a new DataReference string by combining a scheme, container, and key into a formatted URI. This function is used to create a standardized identifier for data locations.
Parameters
| Name | Type | Description |
|---|---|---|
| scheme | string | The protocol or scheme for the data reference (e.g., "s3", "file", "http"). |
| container | string | The container or bucket name where the data is located. |
| key | string | The specific identifier or path within the container for the data. |
Returns
| Type | Description |
|---|---|
DataReference | The formatted DataReference string in the format "scheme://container/key". |