interface ULimit
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Batch.Events.BatchJobStateChange.ULimit |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbatch/events#BatchJobStateChange_ULimit |
Java | software.amazon.awscdk.mixins.preview.services.batch.events.BatchJobStateChange.ULimit |
Python | aws_cdk.mixins_preview.aws_batch.events.BatchJobStateChange.ULimit |
TypeScript | @aws-cdk/mixins-preview ยป aws_batch ยป events ยป BatchJobStateChange ยป ULimit |
Type definition for ULimit.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as batch_events } from '@aws-cdk/mixins-preview/aws-batch';
const uLimit: batch_events.BatchJobStateChange.ULimit = {
hardLimit: ['hardLimit'],
name: ['name'],
softLimit: ['softLimit'],
};
Properties
| Name | Type | Description |
|---|---|---|
| hard | string[] | hardLimit property. |
| name? | string[] | name property. |
| soft | string[] | softLimit property. |
hardLimit?
Type:
string[]
(optional, default: Do not filter on this field)
hardLimit property.
Specify an array of string values to match this event if the actual value of hardLimit is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
name?
Type:
string[]
(optional, default: Do not filter on this field)
name property.
Specify an array of string values to match this event if the actual value of name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
softLimit?
Type:
string[]
(optional, default: Do not filter on this field)
softLimit property.
Specify an array of string values to match this event if the actual value of softLimit 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