{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-sitewise/refs/heads/main/json-schema/iot-sitewise-describe-storage-configuration-response-schema.json", "title": "DescribeStorageConfigurationResponse", "description": "DescribeStorageConfigurationResponse schema", "type": "object", "properties": { "storageType": { "allOf": [ { "$ref": "#/components/schemas/StorageType" }, { "description": "
The storage tier that you specified for your data. The storageType parameter can be one of the following values:
SITEWISE_DEFAULT_STORAGE \u2013 IoT SiteWise saves your data into the hot tier. The hot tier is a service-managed database.
MULTI_LAYER_STORAGE \u2013 IoT SiteWise saves your data in both the cold tier and the hot tier. The cold tier is a customer-managed Amazon S3 bucket.
Contains the storage configuration for time series (data streams) that aren't associated with asset properties. The disassociatedDataStorage can be one of the following values:
ENABLED \u2013 IoT SiteWise accepts time series that aren't associated with asset properties.
After the disassociatedDataStorage is enabled, you can't disable it.
DISABLED \u2013 IoT SiteWise doesn't accept time series (data streams) that aren't associated with asset properties.
For more information, see Data streams in the IoT SiteWise User Guide.
" } ] }, "retentionPeriod": { "allOf": [ { "$ref": "#/components/schemas/RetentionPeriod" }, { "description": "How many days your data is kept in the hot tier. By default, your data is kept indefinitely in the hot tier." } ] }, "configurationStatus": { "type": "object", "required": [ "state" ], "properties": { "state": { "allOf": [ { "$ref": "#/components/schemas/ConfigurationState" }, { "description": "The current state of the configuration." } ] }, "error": { "allOf": [ { "$ref": "#/components/schemas/ConfigurationErrorDetails" }, { "description": "Contains associated error information, if any." } ] } }, "description": "Contains current status information for the configuration." }, "lastUpdateDate": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The date the storage configuration was last updated, in Unix epoch time." } ] } }, "required": [ "storageType", "configurationStatus" ] }