interface JsonFormatDescriptorProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.LookoutMetrics.CfnAnomalyDetector.JsonFormatDescriptorProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awslookoutmetrics#CfnAnomalyDetector_JsonFormatDescriptorProperty | 
  Java | software.amazon.awscdk.services.lookoutmetrics.CfnAnomalyDetector.JsonFormatDescriptorProperty | 
  Python | aws_cdk.aws_lookoutmetrics.CfnAnomalyDetector.JsonFormatDescriptorProperty | 
  TypeScript  | aws-cdk-lib » aws_lookoutmetrics » CfnAnomalyDetector » JsonFormatDescriptorProperty | 
Contains information about how a source JSON data file should be analyzed.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lookoutmetrics as lookoutmetrics } from 'aws-cdk-lib';
const jsonFormatDescriptorProperty: lookoutmetrics.CfnAnomalyDetector.JsonFormatDescriptorProperty = {
  charset: 'charset',
  fileCompression: 'fileCompression',
};
Properties
| Name | Type | Description | 
|---|---|---|
| charset? | string | The character set in which the source JSON file is written. | 
| file | string | The level of compression of the source CSV file. | 
charset?
Type:
string
(optional)
The character set in which the source JSON file is written.
fileCompression?
Type:
string
(optional)
The level of compression of the source CSV file.

 .NET
 Go
 Java
 Python
 TypeScript