interface MonitoringConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EMR.CfnCluster.MonitoringConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsemr#CfnCluster_MonitoringConfigurationProperty |
Java | software.amazon.awscdk.services.emr.CfnCluster.MonitoringConfigurationProperty |
Python | aws_cdk.aws_emr.CfnCluster.MonitoringConfigurationProperty |
TypeScript | aws-cdk-lib » aws_emr » CfnCluster » MonitoringConfigurationProperty |
Contains CloudWatch log configuration metadata and settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_emr as emr } from 'aws-cdk-lib';
const monitoringConfigurationProperty: emr.CfnCluster.MonitoringConfigurationProperty = {
cloudWatchLogConfiguration: {
enabled: false,
// the properties below are optional
encryptionKeyArn: 'encryptionKeyArn',
logGroupName: 'logGroupName',
logStreamNamePrefix: 'logStreamNamePrefix',
logTypes: {
logTypesKey: ['logTypes'],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | IResolvable | Cloud | Holds CloudWatch log configuration settings and metadata that specify settings like log files to monitor and where to send them. |
cloudWatchLogConfiguration?
Type:
IResolvable | Cloud
(optional)
Holds CloudWatch log configuration settings and metadata that specify settings like log files to monitor and where to send them.

.NET
Go
Java
Python
TypeScript