interface BatchProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppTest.CfnTestCasePropsMixin.BatchProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapptest#CfnTestCasePropsMixin_BatchProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.apptest.CfnTestCasePropsMixin.BatchProperty |
Python | aws_cdk.cfn_property_mixins.aws_apptest.CfnTestCasePropsMixin.BatchProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apptest » 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 { aws_apptest as apptest } from '@aws-cdk/cfn-property-mixins';
const batchProperty: apptest.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