interface ConfigurationOverridesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EMRContainers.CfnEndpoint.ConfigurationOverridesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsemrcontainers#CfnEndpoint_ConfigurationOverridesProperty |
Java | software.amazon.awscdk.services.emrcontainers.CfnEndpoint.ConfigurationOverridesProperty |
Python | aws_cdk.aws_emrcontainers.CfnEndpoint.ConfigurationOverridesProperty |
TypeScript | aws-cdk-lib » aws_emrcontainers » CfnEndpoint » ConfigurationOverridesProperty |
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';
declare const eMREKSConfigurationProperty_: emrcontainers.CfnEndpoint.EMREKSConfigurationProperty;
const configurationOverridesProperty: emrcontainers.CfnEndpoint.ConfigurationOverridesProperty = {
applicationConfiguration: [{
classification: 'classification',
// the properties below are optional
configurations: [eMREKSConfigurationProperty_],
properties: {
propertiesKey: 'properties',
},
}],
monitoringConfiguration: {
cloudWatchMonitoringConfiguration: {
logGroupName: 'logGroupName',
// the properties below are optional
logStreamNamePrefix: 'logStreamNamePrefix',
},
containerLogRotationConfiguration: {
maxFilesToKeep: 123,
rotationSize: 'rotationSize',
},
persistentAppUi: 'persistentAppUi',
s3MonitoringConfiguration: {
logUri: 'logUri',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| application | IResolvable | (IResolvable | EMREKSConfiguration)[] | |
| monitoring | IResolvable | Monitoring |
applicationConfiguration?
Type:
IResolvable | (IResolvable | EMREKSConfiguration)[]
(optional)
monitoringConfiguration?
Type:
IResolvable | Monitoring
(optional)

.NET
Go
Java
Python
TypeScript