interface ManagedPersistenceMonitoringConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMRServerless.Mixins.CfnApplicationPropsMixin.ManagedPersistenceMonitoringConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemrserverless/mixins#CfnApplicationPropsMixin_ManagedPersistenceMonitoringConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.emrserverless.mixins.CfnApplicationPropsMixin.ManagedPersistenceMonitoringConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_emrserverless.mixins.CfnApplicationPropsMixin.ManagedPersistenceMonitoringConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_emrserverless » mixins » CfnApplicationPropsMixin » ManagedPersistenceMonitoringConfigurationProperty |
The managed log persistence configuration for a job run.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as emrserverless_mixins } from '@aws-cdk/mixins-preview/aws-emrserverless';
const managedPersistenceMonitoringConfigurationProperty: emrserverless_mixins.CfnApplicationPropsMixin.ManagedPersistenceMonitoringConfigurationProperty = {
enabled: false,
encryptionKeyArn: 'encryptionKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | Enables managed logging and defaults to true. |
| encryption | string | The KMS key ARN to encrypt the logs stored in managed log persistence. |
enabled?
Type:
boolean | IResolvable
(optional, default: true)
Enables managed logging and defaults to true.
If set to false, managed logging will be turned off.
encryptionKeyArn?
Type:
string
(optional)
The KMS key ARN to encrypt the logs stored in managed log persistence.

.NET
Go
Java
Python
TypeScript