interface FleetSizeRecommendationChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Deadline.Events.FleetSizeRecommendationChange.FleetSizeRecommendationChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdeadline/events#FleetSizeRecommendationChange_FleetSizeRecommendationChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.deadline.events.FleetSizeRecommendationChange.FleetSizeRecommendationChangeProps |
Python | aws_cdk.mixins_preview.aws_deadline.events.FleetSizeRecommendationChange.FleetSizeRecommendationChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_deadline ยป events ยป FleetSizeRecommendationChange ยป FleetSizeRecommendationChangeProps |
Props type for aws.deadline@FleetSizeRecommendationChange event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as deadline_events } from '@aws-cdk/mixins-preview/aws-deadline';
const fleetSizeRecommendationChangeProps: deadline_events.FleetSizeRecommendationChange.FleetSizeRecommendationChangeProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
farmId: ['farmId'],
fleetId: ['fleetId'],
newFleetSize: ['newFleetSize'],
oldFleetSize: ['oldFleetSize'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| farm | string[] | farmId property. |
| fleet | string[] | fleetId property. |
| new | string[] | newFleetSize property. |
| old | string[] | oldFleetSize property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
farmId?
Type:
string[]
(optional, default: Do not filter on this field)
farmId property.
Specify an array of string values to match this event if the actual value of farmId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
fleetId?
Type:
string[]
(optional, default: Do not filter on this field)
fleetId property.
Specify an array of string values to match this event if the actual value of fleetId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
newFleetSize?
Type:
string[]
(optional, default: Do not filter on this field)
newFleetSize property.
Specify an array of string values to match this event if the actual value of newFleetSize is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
oldFleetSize?
Type:
string[]
(optional, default: Do not filter on this field)
oldFleetSize property.
Specify an array of string values to match this event if the actual value of oldFleetSize 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