interface DataCollectionOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ODB.Mixins.CfnCloudVmClusterPropsMixin.DataCollectionOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsodb/mixins#CfnCloudVmClusterPropsMixin_DataCollectionOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.odb.mixins.CfnCloudVmClusterPropsMixin.DataCollectionOptionsProperty |
Python | aws_cdk.mixins_preview.aws_odb.mixins.CfnCloudVmClusterPropsMixin.DataCollectionOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_odb » mixins » CfnCloudVmClusterPropsMixin » DataCollectionOptionsProperty |
Information about the data collection options enabled for a VM cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as odb_mixins } from '@aws-cdk/mixins-preview/aws-odb';
const dataCollectionOptionsProperty: odb_mixins.CfnCloudVmClusterPropsMixin.DataCollectionOptionsProperty = {
isDiagnosticsEventsEnabled: false,
isHealthMonitoringEnabled: false,
isIncidentLogsEnabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| is | boolean | IResolvable | Specifies whether diagnostic collection is enabled for the VM cluster. |
| is | boolean | IResolvable | Specifies whether health monitoring is enabled for the VM cluster. |
| is | boolean | IResolvable | Specifies whether incident logs are enabled for the VM cluster. |
isDiagnosticsEventsEnabled?
Type:
boolean | IResolvable
(optional)
Specifies whether diagnostic collection is enabled for the VM cluster.
isHealthMonitoringEnabled?
Type:
boolean | IResolvable
(optional)
Specifies whether health monitoring is enabled for the VM cluster.
isIncidentLogsEnabled?
Type:
boolean | IResolvable
(optional)
Specifies whether incident logs are enabled for the VM cluster.

.NET
Go
Java
Python
TypeScript