aws-cdk-lib.aws_events.CfnRule.BatchArrayPropertiesProperty

interface BatchArrayPropertiesProperty

LanguageType name
.NETAmazon.CDK.AWS.Events.CfnRule.BatchArrayPropertiesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsevents#CfnRule_BatchArrayPropertiesProperty
Javasoftware.amazon.awscdk.services.events.CfnRule.BatchArrayPropertiesProperty
Pythonaws_cdk.aws_events.CfnRule.BatchArrayPropertiesProperty
TypeScript aws-cdk-lib » aws_events » CfnRule » BatchArrayPropertiesProperty

The array properties for the submitted job, such as the size of the array.

The array size can be between 2 and 10,000. If you specify array properties for a job, it becomes an array job. This parameter is used only if the target is an AWS Batch job.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_events as events } from 'aws-cdk-lib';
const batchArrayPropertiesProperty: events.CfnRule.BatchArrayPropertiesProperty = {
  size: 123,
};

Properties

NameTypeDescription
size?numberThe size of the array, if this is an array batch job.

size?

Type: number (optional)

The size of the array, if this is an array batch job.

Valid values are integers between 2 and 10,000.