interface EMRInstanceFleetStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMR.Events.EMRInstanceFleetStateChange.EMRInstanceFleetStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemr/events#EMRInstanceFleetStateChange_EMRInstanceFleetStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.emr.events.EMRInstanceFleetStateChange.EMRInstanceFleetStateChangeProps |
Python | aws_cdk.mixins_preview.aws_emr.events.EMRInstanceFleetStateChange.EMRInstanceFleetStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_emr ยป events ยป EMRInstanceFleetStateChange ยป EMRInstanceFleetStateChangeProps |
Props type for aws.emr@EMRInstanceFleetStateChange 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 eMRInstanceFleetStateChangeProps: emr_events.EMRInstanceFleetStateChange.EMRInstanceFleetStateChangeProps = {
clusterId: ['clusterId'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
instanceFleetId: ['instanceFleetId'],
instanceFleetType: ['instanceFleetType'],
message: ['message'],
provisionedOnDemandCapacity: ['provisionedOnDemandCapacity'],
provisionedSpotCapacity: ['provisionedSpotCapacity'],
severity: ['severity'],
state: ['state'],
targetOnDemandCapacity: ['targetOnDemandCapacity'],
targetSpotCapacity: ['targetSpotCapacity'],
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string[] | clusterId property. |
| event | AWSEvent | EventBridge event metadata. |
| instance | string[] | instanceFleetId property. |
| instance | string[] | instanceFleetType property. |
| message? | string[] | message property. |
| provisioned | string[] | provisionedOnDemandCapacity property. |
| provisioned | string[] | provisionedSpotCapacity property. |
| severity? | string[] | severity property. |
| state? | string[] | state property. |
| target | string[] | targetOnDemandCapacity property. |
| target | string[] | targetSpotCapacity 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.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
instanceFleetId?
Type:
string[]
(optional, default: Do not filter on this field)
instanceFleetId property.
Specify an array of string values to match this event if the actual value of instanceFleetId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
instanceFleetType?
Type:
string[]
(optional, default: Do not filter on this field)
instanceFleetType property.
Specify an array of string values to match this event if the actual value of instanceFleetType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
message?
Type:
string[]
(optional, default: Do not filter on this field)
message property.
Specify an array of string values to match this event if the actual value of message is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
provisionedOnDemandCapacity?
Type:
string[]
(optional, default: Do not filter on this field)
provisionedOnDemandCapacity property.
Specify an array of string values to match this event if the actual value of provisionedOnDemandCapacity is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
provisionedSpotCapacity?
Type:
string[]
(optional, default: Do not filter on this field)
provisionedSpotCapacity property.
Specify an array of string values to match this event if the actual value of provisionedSpotCapacity is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
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.
state?
Type:
string[]
(optional, default: Do not filter on this field)
state property.
Specify an array of string values to match this event if the actual value of state is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
targetOnDemandCapacity?
Type:
string[]
(optional, default: Do not filter on this field)
targetOnDemandCapacity property.
Specify an array of string values to match this event if the actual value of targetOnDemandCapacity is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
targetSpotCapacity?
Type:
string[]
(optional, default: Do not filter on this field)
targetSpotCapacity property.
Specify an array of string values to match this event if the actual value of targetSpotCapacity 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