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

.NET
Go
Java
Python
TypeScript