1234567891011121314151617181920212223242526272829303132 |
- {
- "Amazon":
- {
- "AzCore":
- {
- "Streamer":
- {
- // Whether to use all available hardware or restrict to known paths.
- "UseAllHardware": true,
- // Whether to report hardware information
- "ReportHardware": true,
- "Profiles":
- {
- "Generic":
- {
- "Stack":
- {
- "Drive":
- {
- "$type": "AZ::IO::StorageDriveConfig",
- // The maximum number of file handles that the drive will cache.
- // The Streamer will not close handles until it has at least this many handles open
- "MaxFileHandles": 128
- }
- }
- }
- }
- }
- }
- }
- }
|