interface MonitoringConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EMRContainers.CfnEndpoint.MonitoringConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsemrcontainers#CfnEndpoint_MonitoringConfigurationProperty |
Java | software.amazon.awscdk.services.emrcontainers.CfnEndpoint.MonitoringConfigurationProperty |
Python | aws_cdk.aws_emrcontainers.CfnEndpoint.MonitoringConfigurationProperty |
TypeScript | aws-cdk-lib » aws_emrcontainers » CfnEndpoint » MonitoringConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_emrcontainers as emrcontainers } from 'aws-cdk-lib';
const monitoringConfigurationProperty: emrcontainers.CfnEndpoint.MonitoringConfigurationProperty = {
cloudWatchMonitoringConfiguration: {
logGroupName: 'logGroupName',
// the properties below are optional
logStreamNamePrefix: 'logStreamNamePrefix',
},
containerLogRotationConfiguration: {
maxFilesToKeep: 123,
rotationSize: 'rotationSize',
},
persistentAppUi: 'persistentAppUi',
s3MonitoringConfiguration: {
logUri: 'logUri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | IResolvable | Cloud | |
| container | IResolvable | Container | |
| persistent | string | |
| s3 | IResolvable | S3 |
cloudWatchMonitoringConfiguration?
Type:
IResolvable | Cloud
(optional)
containerLogRotationConfiguration?
Type:
IResolvable | Container
(optional)
persistentAppUi?
Type:
string
(optional)
s3MonitoringConfiguration?
Type:
IResolvable | S3
(optional)

.NET
Go
Java
Python
TypeScript