interface MonitoringConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EMRContainers.CfnEndpointPropsMixin.MonitoringConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsemrcontainers#CfnEndpointPropsMixin_MonitoringConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.emrcontainers.CfnEndpointPropsMixin.MonitoringConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_emrcontainers.CfnEndpointPropsMixin.MonitoringConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_emrcontainers » CfnEndpointPropsMixin » 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/cfn-property-mixins';
const monitoringConfigurationProperty: emrcontainers.CfnEndpointPropsMixin.MonitoringConfigurationProperty = {
cloudWatchMonitoringConfiguration: {
logGroupName: 'logGroupName',
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