interface JsonFormatDescriptorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LookoutMetrics.Mixins.CfnAnomalyDetectorPropsMixin.JsonFormatDescriptorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslookoutmetrics/mixins#CfnAnomalyDetectorPropsMixin_JsonFormatDescriptorProperty |
Java | software.amazon.awscdk.mixins.preview.services.lookoutmetrics.mixins.CfnAnomalyDetectorPropsMixin.JsonFormatDescriptorProperty |
Python | aws_cdk.mixins_preview.aws_lookoutmetrics.mixins.CfnAnomalyDetectorPropsMixin.JsonFormatDescriptorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lookoutmetrics » mixins » CfnAnomalyDetectorPropsMixin » 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 { mixins as lookoutmetrics_mixins } from '@aws-cdk/mixins-preview/aws-lookoutmetrics';
const jsonFormatDescriptorProperty: lookoutmetrics_mixins.CfnAnomalyDetectorPropsMixin.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