Module Values.DescribeDatasetResponseSource

Provides a JSON description of the data in each time series dataset, including names, column names, and data types.

Sourcetype nonrec t = {
  1. datasetName : DatasetName.t option;
    (*

    The name of the dataset being described.

    *)
  2. datasetArn : DatasetArn.t option;
    (*

    The Amazon Resource Name (ARN) of the dataset being described.

    *)
  3. createdAt : Timestamp.t option;
    (*

    Specifies the time the dataset was created in Lookout for Equipment.

    *)
  4. lastUpdatedAt : Timestamp.t option;
    (*

    Specifies the time the dataset was last updated, if it was.

    *)
  5. status : DatasetStatus.t option;
    (*

    Indicates the status of the dataset.

    *)
  6. schema : InlineDataSchema.t option;
    (*

    A JSON description of the data that is in each time series dataset, including names, column names, and data types.

    *)
  7. serverSideKmsKeyId : KmsKeyArn.t option;
    (*

    Provides the identifier of the KMS key used to encrypt dataset data by Amazon Lookout for Equipment.

    *)
  8. ingestionInputConfiguration : IngestionInputConfiguration.t option;
    (*

    Specifies the S3 location configuration for the data input for the data ingestion job.

    *)
  9. dataQualitySummary : DataQualitySummary.t option;
    (*

    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.

    *)
  10. ingestedFilesSummary : IngestedFilesSummary.t option;
    (*

    IngestedFilesSummary associated with the given dataset for the latest successful associated ingestion job id.

    *)
  11. roleArn : IamRoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role that you are using for this the data ingestion job.

    *)
  12. dataStartTime : Timestamp.t option;
    (*

    Indicates the earliest timestamp corresponding to data that was successfully ingested during the most recent ingestion of this particular dataset.

    *)
  13. dataEndTime : Timestamp.t option;
    (*

    Indicates the latest timestamp corresponding to data that was successfully ingested during the most recent ingestion of this particular dataset.

    *)
  14. sourceDatasetArn : DatasetArn.t option;
    (*

    The Amazon Resource Name (ARN) of the source dataset from which the current data being described was imported from.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?datasetName:??? -> ?datasetArn:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?status:??? -> ?schema:??? -> ?serverSideKmsKeyId:??? -> ?ingestionInputConfiguration:??? -> ?dataQualitySummary:??? -> ?ingestedFilesSummary:??? -> ?roleArn:??? -> ?dataStartTime:??? -> ?dataEndTime:??? -> ?sourceDatasetArn:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DatasetName.t | `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `String of S3Bucket.t ]) list ] list | `Structure of (string * [> `Integer of Integer.t | `String of S3Bucket.t | `Structure of (string * [> `Integer of Integer.t ]) list ]) list ]) list | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t