interface EMRConfigurationErrorProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMR.Events.EMRConfigurationError.EMRConfigurationErrorProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemr/events#EMRConfigurationError_EMRConfigurationErrorProps |
Java | software.amazon.awscdk.mixins.preview.services.emr.events.EMRConfigurationError.EMRConfigurationErrorProps |
Python | aws_cdk.mixins_preview.aws_emr.events.EMRConfigurationError.EMRConfigurationErrorProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_emr ยป events ยป EMRConfigurationError ยป EMRConfigurationErrorProps |
Props type for aws.emr@EMRConfigurationError event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as emr_events } from '@aws-cdk/mixins-preview/aws-emr';
const eMRConfigurationErrorProps: emr_events.EMRConfigurationError.EMRConfigurationErrorProps = {
clusterId: ['clusterId'],
description: ['description'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
severity: ['severity'],
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string[] | clusterId property. |
| description? | string[] | description property. |
| event | AWSEvent | EventBridge event metadata. |
| severity? | string[] | severity property. |
clusterId?
Type:
string[]
(optional, default: Do not filter on this field)
clusterId property.
Specify an array of string values to match this event if the actual value of clusterId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
description?
Type:
string[]
(optional, default: Do not filter on this field)
description property.
Specify an array of string values to match this event if the actual value of description is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
severity?
Type:
string[]
(optional, default: Do not filter on this field)
severity property.
Specify an array of string values to match this event if the actual value of severity is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript