interface BatchProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppTest.Mixins.CfnTestCasePropsMixin.BatchProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapptest/mixins#CfnTestCasePropsMixin_BatchProperty |
Java | software.amazon.awscdk.mixins.preview.services.apptest.mixins.CfnTestCasePropsMixin.BatchProperty |
Python | aws_cdk.mixins_preview.aws_apptest.mixins.CfnTestCasePropsMixin.BatchProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apptest » mixins » CfnTestCasePropsMixin » BatchProperty |
Defines a batch.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as apptest_mixins } from '@aws-cdk/mixins-preview/aws-apptest';
const batchProperty: apptest_mixins.CfnTestCasePropsMixin.BatchProperty = {
batchJobName: 'batchJobName',
batchJobParameters: {
batchJobParametersKey: 'batchJobParameters',
},
exportDataSetNames: ['exportDataSetNames'],
};
Properties
| Name | Type | Description |
|---|---|---|
| batch | string | The job name of the batch. |
| batch | { [string]: string } | IResolvable | The batch job parameters of the batch. |
| export | string[] | The export data set names of the batch. |
batchJobName?
Type:
string
(optional)
The job name of the batch.
batchJobParameters?
Type:
{ [string]: string } | IResolvable
(optional)
The batch job parameters of the batch.
exportDataSetNames?
Type:
string[]
(optional)
The export data set names of the batch.

.NET
Go
Java
Python
TypeScript