Class: Aws::LookoutEquipment::Types::DescribeDatasetResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LookoutEquipment::Types::DescribeDatasetResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lookoutequipment/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #created_at  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the time the dataset was created in Lookout for Equipment.
 - 
  
    
      #data_end_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates the latest timestamp corresponding to data that was successfully ingested during the most recent ingestion of this particular dataset.
 - 
  
    
      #data_quality_summary  ⇒ Types::DataQualitySummary 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Gives statistics associated with the given dataset for the latest successful associated ingestion job id.
 - 
  
    
      #data_start_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates the earliest timestamp corresponding to data that was successfully ingested during the most recent ingestion of this particular dataset.
 - 
  
    
      #dataset_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the dataset being described.
 - 
  
    
      #dataset_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the dataset being described.
 - 
  
    
      #ingested_files_summary  ⇒ Types::IngestedFilesSummary 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
IngestedFilesSummary associated with the given dataset for the latest successful associated ingestion job id.
 - 
  
    
      #ingestion_input_configuration  ⇒ Types::IngestionInputConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the S3 location configuration for the data input for the data ingestion job.
 - 
  
    
      #last_updated_at  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the time the dataset was last updated, if it was.
 - 
  
    
      #role_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the IAM role that you are using for this the data ingestion job.
 - 
  
    
      #schema  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A JSON description of the data that is in each time series dataset, including names, column names, and data types.
 - 
  
    
      #server_side_kms_key_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Provides the identifier of the KMS key used to encrypt dataset data by Amazon Lookout for Equipment.
 - 
  
    
      #source_dataset_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the source dataset from which the current data being described was imported from.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates the status of the dataset.
 
Instance Attribute Details
#created_at ⇒ Time
Specifies the time the dataset was created in Lookout for Equipment.
      1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084  | 
    
      # File 'lib/aws-sdk-lookoutequipment/types.rb', line 1067 class DescribeDatasetResponse < Struct.new( :dataset_name, :dataset_arn, :created_at, :last_updated_at, :status, :schema, :server_side_kms_key_id, :ingestion_input_configuration, :data_quality_summary, :ingested_files_summary, :role_arn, :data_start_time, :data_end_time, :source_dataset_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#data_end_time ⇒ Time
Indicates the latest timestamp corresponding to data that was successfully ingested during the most recent ingestion of this particular dataset.
      1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084  | 
    
      # File 'lib/aws-sdk-lookoutequipment/types.rb', line 1067 class DescribeDatasetResponse < Struct.new( :dataset_name, :dataset_arn, :created_at, :last_updated_at, :status, :schema, :server_side_kms_key_id, :ingestion_input_configuration, :data_quality_summary, :ingested_files_summary, :role_arn, :data_start_time, :data_end_time, :source_dataset_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#data_quality_summary ⇒ Types::DataQualitySummary
Gives statistics associated with the given dataset for the latest successful associated ingestion job id. These statistics primarily relate to quantifying incorrect data such as MissingCompleteSensorData, MissingSensorData, UnsupportedDateFormats, InsufficientSensorData, and DuplicateTimeStamps.
      1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084  | 
    
      # File 'lib/aws-sdk-lookoutequipment/types.rb', line 1067 class DescribeDatasetResponse < Struct.new( :dataset_name, :dataset_arn, :created_at, :last_updated_at, :status, :schema, :server_side_kms_key_id, :ingestion_input_configuration, :data_quality_summary, :ingested_files_summary, :role_arn, :data_start_time, :data_end_time, :source_dataset_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#data_start_time ⇒ Time
Indicates the earliest timestamp corresponding to data that was successfully ingested during the most recent ingestion of this particular dataset.
      1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084  | 
    
      # File 'lib/aws-sdk-lookoutequipment/types.rb', line 1067 class DescribeDatasetResponse < Struct.new( :dataset_name, :dataset_arn, :created_at, :last_updated_at, :status, :schema, :server_side_kms_key_id, :ingestion_input_configuration, :data_quality_summary, :ingested_files_summary, :role_arn, :data_start_time, :data_end_time, :source_dataset_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#dataset_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset being described.
      1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084  | 
    
      # File 'lib/aws-sdk-lookoutequipment/types.rb', line 1067 class DescribeDatasetResponse < Struct.new( :dataset_name, :dataset_arn, :created_at, :last_updated_at, :status, :schema, :server_side_kms_key_id, :ingestion_input_configuration, :data_quality_summary, :ingested_files_summary, :role_arn, :data_start_time, :data_end_time, :source_dataset_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#dataset_name ⇒ String
The name of the dataset being described.
      1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084  | 
    
      # File 'lib/aws-sdk-lookoutequipment/types.rb', line 1067 class DescribeDatasetResponse < Struct.new( :dataset_name, :dataset_arn, :created_at, :last_updated_at, :status, :schema, :server_side_kms_key_id, :ingestion_input_configuration, :data_quality_summary, :ingested_files_summary, :role_arn, :data_start_time, :data_end_time, :source_dataset_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#ingested_files_summary ⇒ Types::IngestedFilesSummary
IngestedFilesSummary associated with the given dataset for the latest successful associated ingestion job id.
      1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084  | 
    
      # File 'lib/aws-sdk-lookoutequipment/types.rb', line 1067 class DescribeDatasetResponse < Struct.new( :dataset_name, :dataset_arn, :created_at, :last_updated_at, :status, :schema, :server_side_kms_key_id, :ingestion_input_configuration, :data_quality_summary, :ingested_files_summary, :role_arn, :data_start_time, :data_end_time, :source_dataset_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#ingestion_input_configuration ⇒ Types::IngestionInputConfiguration
Specifies the S3 location configuration for the data input for the data ingestion job.
      1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084  | 
    
      # File 'lib/aws-sdk-lookoutequipment/types.rb', line 1067 class DescribeDatasetResponse < Struct.new( :dataset_name, :dataset_arn, :created_at, :last_updated_at, :status, :schema, :server_side_kms_key_id, :ingestion_input_configuration, :data_quality_summary, :ingested_files_summary, :role_arn, :data_start_time, :data_end_time, :source_dataset_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#last_updated_at ⇒ Time
Specifies the time the dataset was last updated, if it was.
      1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084  | 
    
      # File 'lib/aws-sdk-lookoutequipment/types.rb', line 1067 class DescribeDatasetResponse < Struct.new( :dataset_name, :dataset_arn, :created_at, :last_updated_at, :status, :schema, :server_side_kms_key_id, :ingestion_input_configuration, :data_quality_summary, :ingested_files_summary, :role_arn, :data_start_time, :data_end_time, :source_dataset_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role that you are using for this the data ingestion job.
      1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084  | 
    
      # File 'lib/aws-sdk-lookoutequipment/types.rb', line 1067 class DescribeDatasetResponse < Struct.new( :dataset_name, :dataset_arn, :created_at, :last_updated_at, :status, :schema, :server_side_kms_key_id, :ingestion_input_configuration, :data_quality_summary, :ingested_files_summary, :role_arn, :data_start_time, :data_end_time, :source_dataset_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#schema ⇒ String
A JSON description of the data that is in each time series dataset, including names, column names, and data types.
      1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084  | 
    
      # File 'lib/aws-sdk-lookoutequipment/types.rb', line 1067 class DescribeDatasetResponse < Struct.new( :dataset_name, :dataset_arn, :created_at, :last_updated_at, :status, :schema, :server_side_kms_key_id, :ingestion_input_configuration, :data_quality_summary, :ingested_files_summary, :role_arn, :data_start_time, :data_end_time, :source_dataset_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#server_side_kms_key_id ⇒ String
Provides the identifier of the KMS key used to encrypt dataset data by Amazon Lookout for Equipment.
      1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084  | 
    
      # File 'lib/aws-sdk-lookoutequipment/types.rb', line 1067 class DescribeDatasetResponse < Struct.new( :dataset_name, :dataset_arn, :created_at, :last_updated_at, :status, :schema, :server_side_kms_key_id, :ingestion_input_configuration, :data_quality_summary, :ingested_files_summary, :role_arn, :data_start_time, :data_end_time, :source_dataset_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#source_dataset_arn ⇒ String
The Amazon Resource Name (ARN) of the source dataset from which the current data being described was imported from.
      1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084  | 
    
      # File 'lib/aws-sdk-lookoutequipment/types.rb', line 1067 class DescribeDatasetResponse < Struct.new( :dataset_name, :dataset_arn, :created_at, :last_updated_at, :status, :schema, :server_side_kms_key_id, :ingestion_input_configuration, :data_quality_summary, :ingested_files_summary, :role_arn, :data_start_time, :data_end_time, :source_dataset_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
Indicates the status of the dataset.
      1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084  | 
    
      # File 'lib/aws-sdk-lookoutequipment/types.rb', line 1067 class DescribeDatasetResponse < Struct.new( :dataset_name, :dataset_arn, :created_at, :last_updated_at, :status, :schema, :server_side_kms_key_id, :ingestion_input_configuration, :data_quality_summary, :ingested_files_summary, :role_arn, :data_start_time, :data_end_time, :source_dataset_arn) SENSITIVE = [] include Aws::Structure end  |