Class: Aws::IoTSiteWise::Types::DatasetSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::DatasetSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotsitewise/types.rb
Overview
The summary details for the dataset.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The [ARN] of the dataset.
-
#creation_date ⇒ Time
The dataset creation date, in Unix epoch time.
-
#description ⇒ String
A description about the dataset, and its functionality.
-
#id ⇒ String
The ID of the dataset.
-
#last_update_date ⇒ Time
The date the dataset was last updated, in Unix epoch time.
-
#name ⇒ String
The name of the dataset.
-
#status ⇒ Types::DatasetStatus
The status of the dataset.
Instance Attribute Details
#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
3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 3667 class DatasetSummary < Struct.new( :id, :arn, :name, :description, :creation_date, :last_update_date, :status) SENSITIVE = [] include Aws::Structure end |
#creation_date ⇒ Time
The dataset creation date, in Unix epoch time.
3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 3667 class DatasetSummary < Struct.new( :id, :arn, :name, :description, :creation_date, :last_update_date, :status) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description about the dataset, and its functionality.
3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 3667 class DatasetSummary < Struct.new( :id, :arn, :name, :description, :creation_date, :last_update_date, :status) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID of the dataset.
3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 3667 class DatasetSummary < Struct.new( :id, :arn, :name, :description, :creation_date, :last_update_date, :status) SENSITIVE = [] include Aws::Structure end |
#last_update_date ⇒ Time
The date the dataset was last updated, in Unix epoch time.
3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 3667 class DatasetSummary < Struct.new( :id, :arn, :name, :description, :creation_date, :last_update_date, :status) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the dataset.
3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 3667 class DatasetSummary < Struct.new( :id, :arn, :name, :description, :creation_date, :last_update_date, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ Types::DatasetStatus
The status of the dataset. This contains the state and any error messages. The state is ‘ACTIVE` when ready to use.
3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 3667 class DatasetSummary < Struct.new( :id, :arn, :name, :description, :creation_date, :last_update_date, :status) SENSITIVE = [] include Aws::Structure end |