Class: Aws::IoTSiteWise::Types::CreateDatasetResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::CreateDatasetResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotsitewise/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dataset_arn ⇒ String
The [ARN] of the dataset.
-
#dataset_id ⇒ String
The ID of the dataset.
-
#dataset_status ⇒ Types::DatasetStatus
The status of the dataset.
Instance Attribute Details
#dataset_arn ⇒ String
The [ARN] of the dataset. The format is ‘arn:$Partition:iotsitewise:$Region:$Account:dataset/$DatasetId`.
[1]: docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
3210 3211 3212 3213 3214 3215 3216 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 3210 class CreateDatasetResponse < Struct.new( :dataset_id, :dataset_arn, :dataset_status) SENSITIVE = [] include Aws::Structure end |
#dataset_id ⇒ String
The ID of the dataset.
3210 3211 3212 3213 3214 3215 3216 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 3210 class CreateDatasetResponse < Struct.new( :dataset_id, :dataset_arn, :dataset_status) SENSITIVE = [] include Aws::Structure end |
#dataset_status ⇒ Types::DatasetStatus
The status of the dataset. This contains the state and any error messages. State is ‘CREATING` after a successfull call to this API, and any associated error message. The state is `ACTIVE` when ready to use.
3210 3211 3212 3213 3214 3215 3216 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 3210 class CreateDatasetResponse < Struct.new( :dataset_id, :dataset_arn, :dataset_status) SENSITIVE = [] include Aws::Structure end |