interface DataCollectionOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ODB.CfnCloudVmCluster.DataCollectionOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsodb#CfnCloudVmCluster_DataCollectionOptionsProperty |
Java | software.amazon.awscdk.services.odb.CfnCloudVmCluster.DataCollectionOptionsProperty |
Python | aws_cdk.aws_odb.CfnCloudVmCluster.DataCollectionOptionsProperty |
TypeScript | aws-cdk-lib » aws_odb » CfnCloudVmCluster » 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 { aws_odb as odb } from 'aws-cdk-lib';
const dataCollectionOptionsProperty: odb.CfnCloudVmCluster.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