| Server IP : 167.99.254.82 / Your IP : 216.73.216.188 Web Server : Apache System : Linux host.techisquad.com 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 User : pawluxera ( 1011) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/awscli/examples/iotanalytics/ |
Upload File : |
**To retrieve information about a dataset**
The following ``describe-dataset`` example displays details for the specified dataset. ::
aws iotanalytics describe-dataset \
--dataset-name mydataset
Output::
{
"dataset": {
"status": "ACTIVE",
"contentDeliveryRules": [],
"name": "mydataset",
"lastUpdateTime": 1557859240.658,
"triggers": [],
"creationTime": 1557859240.658,
"actions": [
{
"actionName": "query_32",
"queryAction": {
"sqlQuery": "SELECT * FROM mydatastore",
"filters": []
}
}
],
"retentionPeriod": {
"numberOfDays": 90,
"unlimited": false
},
"arn": "arn:aws:iotanalytics:us-west-2:123456789012:dataset/mydataset"
}
}
For more information, see `DescribeDataset <https://docs.aws.amazon.com/iotanalytics/latest/APIReference/API_DescribeDataset.html>`__ in the *AWS IoT Analytics API Reference*.